diff --git a/API.md b/API.md index de5a9a21cc..097942a415 100644 --- a/API.md +++ b/API.md @@ -319,3 +319,62 @@ var id = iD.coreContext() ``` This should be set with caution for performance reasons. The OpenStreetMap API has a limitation of 50000 nodes per request. + + +### Custom Presets + +iD supports deployments which use a custom set of presets. You can supply presets via +the `presets` accessor: + +```js +var id = iD.coreContext().presets({ + presets: { ... }, + fields: { ... }, + defaults: { ... }, + categories: { ... } +}); +``` + +All four parts (presets, fields, defaults, and categories) must be supplied. In addition, +several base presets and fields must be included. + +Basic geometric presets must be included so that every feature matches at least one preset. +For example: + +```js +"area": { + "name": "Area", + "tags": {}, + "geometry": ["area"], + "matchScore": 0.1 +}, +"line": { + "name": "Line", + "tags": {}, + "geometry": ["line"], + "matchScore": 0.1 +}, +"point": { + "name": "Point", + "tags": {}, + "geometry": ["point", "vertex"], + "matchScore": 0.1 +}, +"relation": { + "name": "Relation", + "tags": {}, + "geometry": ["relation"], + "matchScore": 0.1 +} +``` + +A "name" field must be included: + +```js +"name": { + "key": "name", + "type": "localized", + "label": "Name", + "placeholder": "Common name (if any)" +} +``` diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3ccbe5014a..8029435610 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -308,11 +308,10 @@ same format as the rest, include your new corresponding `docKey` in [/modules/ui/help.js](/modules/ui/help.js) and call `npm run build`. -## Adding or Refining Presets +## Editing Presets or Tagging -Presets save time for iD users by automatically showing them the tags they are -likely to add for a given feature. They are stored in `data/presets/presets`. If -you're going to update the presets, [review the Presets README](/data/presets/README.md). +iD's knowledge of OpenStreetMap tags is mostly handled by the [iD Tagging Schema](https://github.com/openstreetmap/id-tagging-schema) +project, which has its own opportunities to contribute. ## Contributing Code diff --git a/README.md b/README.md index 69ca17de98..5d28aa7c05 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,9 @@ iD also bundles portions of the following open source software. * [editor-layer-index (CC-BY-SA 3.0)](https://github.com/osmlab/editor-layer-index) * [Font Awesome (CC-BY 4.0)](https://fontawesome.com/license) * [Maki (CC0 1.0)](https://github.com/mapbox/maki) +* [Temaki (CC0 1.0)](https://github.com/ideditor/temaki) * [Mapillary JS (MIT)](https://github.com/mapillary/mapillary-js) +* [iD Tagging Schema (ISC)](https://github.com/openstreetmap/id-tagging-schema) * [name-suggestion-index (BSD-3-Clause)](https://github.com/osmlab/name-suggestion-index) * [osm-community-index (ISC)](https://github.com/osmlab/osm-community-index) diff --git a/data/deprecated.json b/data/deprecated.json deleted file mode 100644 index 6d6161a776..0000000000 --- a/data/deprecated.json +++ /dev/null @@ -1,1641 +0,0 @@ -[ - { - "old": {"aerialway": "canopy"}, - "replace": {"aerialway": "zip_line"} - }, - { - "old": {"aeroway": "aerobridge"}, - "replace": {"aeroway": "jet_bridge", "highway": "corridor"} - }, - { - "old": {"access": "customer"}, - "replace": {"access": "customers"} - }, - { - "old": {"access": "public"}, - "replace": {"access": "yes"} - }, - { - "old": {"aerodrome": "military"}, - "replace": {"military": "airfield"} - }, - { - "old": {"aerodrome:type": "military"}, - "replace": {"military": "airfield"} - }, - { - "old": {"agrarian": "agrcultural_machinry"}, - "replace": {"agrarian": "agricultural_machinery"} - }, - { - "old": {"amenity": "advertising"}, - "replace": {"advertising": "*"} - }, - { - "old": {"amenity": "artwork"}, - "replace": {"tourism": "artwork"} - }, - { - "old": {"amenity": "bail_bonds"}, - "replace": {"office": "bail_bond_agent"} - }, - { - "old": {"amenity": "car_repair"}, - "replace": {"shop": "car_repair"} - }, - { - "old": {"amenity": "changing_room"}, - "replace": {"amenity": "dressing_room"} - }, - { - "old": {"amenity": "citymap_post"}, - "replace": {"tourism": "information"} - }, - { - "old": {"amenity": "club"}, - "replace": {"club": "*"} - }, - { - "old": {"amenity": "community_center"}, - "replace": {"amenity": "community_centre"} - }, - { - "old": {"amenity": "dancing_school"}, - "replace": {"leisure": "dance", "dance:teaching": "yes" } - }, - { - "old": {"amenity": "dog_bin"}, - "replace": {"amenity": "waste_basket", "waste": "dog_excrement"} - }, - { - "old": {"amenity": "dog_waste_bin"}, - "replace": {"amenity": "waste_basket", "waste": "dog_excrement"} - }, - { - "old": {"amenity": "embassy"}, - "replace": {"office": "diplomatic"} - }, - { - "old": {"amenity": "ev_charging"}, - "replace": {"amenity": "charging_station"} - }, - { - "old": {"amenity": "charging_station", "car": "*"}, - "replace": {"amenity": "charging_station", "motorcar": "$1"} - }, - { - "old": {"amenity": "fire_hydrant"}, - "replace": {"emergency": "fire_hydrant"} - }, - { - "old": {"amenity": "firepit"}, - "replace": {"leisure": "firepit"} - }, - { - "old": {"amenity": "garage"}, - "replace": {"landuse": "garages"} - }, - { - "old": {"amenity": "garages"}, - "replace": {"landuse": "garages"} - }, - { - "old": {"amenity": "givebox"}, - "replace": {"amenity": "give_box"} - }, - { - "old": {"amenity": "gym"}, - "replace": {"leisure": "fitness_centre"} - }, - { - "old": {"amenity": "hotel"}, - "replace": {"tourism": "hotel"} - }, - { - "old": {"amenity": "kiosk"}, - "replace": {"shop": "kiosk"} - }, - { - "old": {"amenity": "notice_board"}, - "replace": {"advertising": "board"} - }, - { - "old": {"amenity": "nursery"}, - "replace": {"amenity": "kindergarten"} - }, - { - "old": {"amenity": "preschool"}, - "replace": {"amenity": "kindergarten", "preschool": "yes"} - }, - { - "old": {"amenity": "public_building"}, - "replace": {"building": "public"} - }, - { - "old": {"amenity": "real_estate"}, - "replace": {"office": "estate_agent"} - }, - { - "old": {"amenity": "register_office"}, - "replace": {"office": "government", "government": "register_office"} - }, - { - "old": {"amenity": "research_institution"}, - "replace": {"amenity": "research_institute"} - }, - { - "old": {"amenity": "sauna"}, - "replace": {"leisure": "sauna"} - }, - { - "old": {"amenity": "scrapyard"}, - "replace": {"landuse": "industrial", "industrial": "scrap_yard"} - }, - { - "old": {"amenity": "shop"}, - "replace": {"shop": "*"} - }, - { - "old": {"amenity": "sloped_curb"}, - "replace": {"kerb": "lowered"} - }, - { - "old": {"amenity": "swimming_pool"}, - "replace": {"leisure": "swimming_pool"} - }, - { - "old": {"amenity": "ticket_booth"}, - "replace": {"shop": "ticket"} - }, - { - "old": {"amenity": "toilet"}, - "replace": {"amenity": "toilets"} - }, - { - "old": {"amenity": "vending_machine", "vending": "news_papers"}, - "replace": {"amenity": "vending_machine", "vending": "newspapers"} - }, - { - "old": {"amenity": "weigh_bridge"}, - "replace": {"amenity": "weighbridge"} - }, - { - "old": {"amenity": "winery"}, - "replace": {"craft": "winery"} - }, - { - "old": {"amenity": "youth_center"}, - "replace": {"amenity": "community_centre", "community_centre:for": "juvenile"} - }, - { - "old": {"amenity": "youth_centre"}, - "replace": {"amenity": "community_centre", "community_centre:for": "juvenile"} - }, - { - "old": {"artwork": "*"}, - "replace": {"artwork_type": "$1"} - }, - { - "old": {"artwork:type": "*"}, - "replace": {"artwork_type": "$1"} - }, - { - "old": {"attraction": "ferris_wheel"}, - "replace": {"attraction": "big_wheel"} - }, - { - "old": {"barrier": "chicane"}, - "replace": {"barrier": "cycle_barrier"} - }, - { - "old": {"barrier": "curb"}, - "replace": {"barrier": "kerb"} - }, - { - "old": {"barrier": "embankment"}, - "replace": {"man_made": "embankment"} - }, - { - "old": {"barrier": "railing"}, - "replace": {"barrier": "fence", "fence_type": "railing"} - }, - { - "old": {"barrier": "wall", "type": "noise_barrier"}, - "replace": {"barrier": "wall", "wall": "noise_barrier"} - }, - { - "old": {"barrier": "wire_fence"}, - "replace": {"barrier": "fence", "fence_type": "wire"} - }, - { - "old": {"barrier": "wood_fence"}, - "replace": {"barrier": "fence", "fence_type": "wood"} - }, - { - "old": {"amenity": "bench", "capacity": "*"}, - "replace": {"amenity": "bench", "seats": "$1"} - }, - { - "old": {"bicycle:oneway": "*"}, - "replace": {"oneway:bicycle": "$1"} - }, - { - "old": {"bridge": "1"}, - "replace": {"bridge": "yes"} - }, - { - "old": {"bridge": "true"}, - "replace": {"bridge": "yes"} - }, - { - "old": {"building": "entrance"}, - "replace": {"entrance": "*"} - }, - { - "old": {"building": "family_house"}, - "replace": {"building": "house"} - }, - { - "old": {"building": "home"}, - "replace": {"building": "house"} - }, - { - "old": {"building": "household"}, - "replace": {"building": "house"} - }, - { - "old": {"building": "pavillion"}, - "replace": {"building": "pavilion"} - }, - { - "old": {"building:color": "*"}, - "replace": {"building:colour": "$1"} - }, - { - "old": {"building:height": "*"}, - "replace": {"height": "$1"} - }, - { - "old": {"building:material": "Brick"}, - "replace": {"building:material": "brick"} - }, - { - "old": {"building:min_height": "*"}, - "replace": {"min_height": "$1"} - }, - { - "old": {"building:roof:colour": "*"}, - "replace": {"roof:colour": "$1"} - }, - { - "old": {"building:type": "*"}, - "replace": {"building": "$1"} - }, - { - "old": {"camp_site": "camp_pitch"}, - "replace": {"tourism": "camp_pitch"} - }, - { - "old": {"shop": "clothes", "clothes": "second_hand"}, - "replace": {"shop": "clothes", "second_hand": "yes"} - }, - { - "old": {"color": "*"}, - "replace": {"colour": "$1"} - }, - { - "old": {"company": "consulting"}, - "replace": {"office": "consulting"} - }, - { - "old": {"content": "unknown"} - }, - { - "old": {"contents": "*"}, - "replace": {"content": "$1"} - }, - { - "old": {"craft": "catering"}, - "replace": {"craft": "caterer"} - }, - { - "old": {"craft": "glass"}, - "replace": {"craft": "glaziery"} - }, - { - "old": {"craft": "jeweler"}, - "replace": {"shop": "jewelry"} - }, - { - "old": {"craft": "optician"}, - "replace": {"shop": "optician"} - }, - { - "old": {"craft": "sculpter"}, - "replace": {"craft": "sculptor"} - }, - { - "old": {"crossing": "island"}, - "replace": {"crossing:island": "yes"} - }, - { - "old": {"crossing": "traffic_lights"}, - "replace": {"crossing": "traffic_signals"} - }, - { - "old": {"cuisine": "gluten-free"}, - "replace": {"diet:gluten_free": "*"} - }, - { - "old": {"cuisine": "halal"}, - "replace": {"diet:halal": "*"} - }, - { - "old": {"cuisine": "kosher"}, - "replace": {"diet:kosher": "*"} - }, - { - "old": {"cuisine": "vegan"}, - "replace": {"diet:vegan": "*"} - }, - { - "old": {"cuisine": "vegetarian"}, - "replace": {"diet:vegetarian": "*"} - }, - { - "old": {"culvert": "culvert"}, - "replace": {"tunnel": "culvert"} - }, - { - "old": {"culvert": "tunnel"}, - "replace": {"tunnel": "culvert"} - }, - { - "old": {"culvert": "yes"}, - "replace": {"tunnel": "culvert"} - }, - { - "old": {"curb": "*"}, - "replace": {"kerb": "$1"} - }, - { - "old": {"diaper": "1"}, - "replace": {"changing_table": "yes", "changing_table:count": "1"} - }, - { - "old": {"diaper": "no"}, - "replace": {"changing_table": "no"} - }, - { - "old": {"diaper": "room"}, - "replace": {"changing_table": "yes", "changing_table:location": "room"} - }, - { - "old": {"diaper": "yes"}, - "replace": {"changing_table": "yes"} - }, - { - "old": {"direction": "all"}, - "replace": {"direction": "both"} - }, - { - "old": {"direction": "down", "highway": "*"}, - "replace": {"incline": "down", "highway": "$1"} - }, - { - "old": {"direction": "downhill"}, - "replace": {"incline": "down"} - }, - { - "old": {"direction": "East"}, - "replace": {"direction": "E"} - }, - { - "old": {"direction": "forward;backward"}, - "replace": {"direction": "both"} - }, - { - "old": {"direction": "North"}, - "replace": {"direction": "N"} - }, - { - "old": {"direction": "South"}, - "replace": {"direction": "S"} - }, - { - "old": {"direction": "up", "highway": "*"}, - "replace": {"incline": "up", "highway": "$1"} - }, - { - "old": {"direction": "uphill"}, - "replace": {"incline": "up"} - }, - { - "old": {"direction": "West"}, - "replace": {"direction": "W"} - }, - { - "old": {"disabled_spaces":"*"}, - "replace": {"capacity:disabled": "$1"} - }, - { - "old": {"drinkable": "*"}, - "replace": {"drinking_water": "$1"} - }, - { - "old": {"dropped_kerb": "*"}, - "replace": {"kerb": "lowered"} - }, - { - "old": {"embankment": "1"}, - "replace": {"embankment": "yes"} - }, - { - "old": {"embankment": "false"}, - "replace": {"embankment": "no"} - }, - { - "old": {"embankment": "right", "man_made": "embankment"}, - "replace": {"man_made": "embankment"} - }, - { - "old": {"embankment": "true"}, - "replace": {"embankment": "yes"} - }, - { - "old": {"entrance": "emergency_exit"}, - "replace": {"entrance": "emergency"} - }, - { - "old": {"entrance": "fire_exit"}, - "replace": {"entrance": "emergency"} - }, - { - "old": {"entrance": "loading_dock"}, - "replace": {"amenity": "loading_dock"} - }, - { - "old": {"entrance": "main_entrance"}, - "replace": {"entrance": "main"} - }, - { - "old": {"entrance": "private"}, - "replace": {"entrance": "yes", "access": "private"} - }, - { - "old": {"escalator": "*"}, - "replace": {"highway": "steps", "conveying": "$1"} - }, - { - "old": {"fast_food": "pizza"}, - "replace": {"cuisine": "pizza"} - }, - { - "old": {"fast_food": "shawarma"}, - "replace": {"cuisine": "shawarma"} - }, - { - "old": {"fee": "0"}, - "replace": {"fee": "no"} - }, - { - "old": {"fee": "free"}, - "replace": {"fee": "no"} - }, - { - "old": {"fee": "Free"}, - "replace": {"fee": "no"} - }, - { - "old": {"fee": "No"}, - "replace": {"fee": "no"} - }, - { - "old": {"fee": "none"}, - "replace": {"fee": "no"} - }, - { - "old": {"fee": "some"}, - "replace": {"fee": "yes"} - }, - { - "old": {"fee": "Yes"}, - "replace": {"fee": "yes"} - }, - { - "old": {"fenced": "yes"}, - "replace": {"barrier": "fence"} - }, - { - "old": {"FIXME": "*"}, - "replace": {"fixme": "$1"} - }, - { - "old": {"footway": "both"}, - "replace": {"sidewalk": "both"} - }, - { - "old": {"footway": "crossing", "highway": "cycleway"}, - "replace": {"cycleway": "crossing", "highway": "cycleway"} - }, - { - "old": {"footway": "left"}, - "replace": {"sidewalk": "left"} - }, - { - "old": {"footway": "no"}, - "replace": {"sidewalk": "no"} - }, - { - "old": {"footway": "none"}, - "replace": {"sidewalk": "no"} - }, - { - "old": {"footway": "right"}, - "replace": {"sidewalk": "right"} - }, - { - "old": {"footway": "separate"}, - "replace": {"sidewalk": "separate"} - }, - { - "old": {"amenity": "gambling", "gambling": "casino"}, - "replace": {"amenity": "casino"} - }, - { - "old": {"leisure": "amusement_arcade", "gambling": "*"}, - "replace": {"leisure": "adult_gaming_centre", "gambling": "$1"} - }, - { - "old": {"gambling": "slot_machine"}, - "replace": {"gambling": "slot_machines"} - }, - { - "old": {"generator:source": "photovoltaic"}, - "replace": {"generator:source": "solar", "generator:method": "photovoltaic"} - }, - { - "old": {"golf": "faiway"}, - "replace": {"golf": "fairway", "landuse": "grass"} - }, - { - "old": {"golf": "putting_green"}, - "replace": {"golf": "green", "landuse": "grass"} - }, - { - "old": {"golf": "sand_trap"}, - "replace": {"golf": "bunker", "natural": "sand"} - }, - { - "old": {"golf": "tee_area"}, - "replace": {"golf": "tee", "landuse": "grass"} - }, - { - "old": {"golf": "tee_box"}, - "replace": {"golf": "tee", "landuse": "grass"} - }, - { - "old": {"golf": "teebox"}, - "replace": {"golf": "tee", "landuse": "grass"} - }, - { - "old": {"highway": "abandoned"}, - "replace": {"abandoned:highway": "*"} - }, - { - "old": {"highway": "bridleway", "horse": "no"}, - "replace": {"highway": "path", "horse": "no"} - }, - { - "old": {"highway": "cycleway", "bicycle": "no"}, - "replace": {"highway": "path", "bicycle": "no"} - }, - { - "old": {"highway": "cycleway", "cycleway": "track"}, - "replace": {"highway": "cycleway"} - }, - { - "old": {"highway": "footway", "foot": "no"}, - "replace": {"highway": "path", "foot": "no"} - }, - { - "old": {"highway": "ford"}, - "replace": {"ford": "*"} - }, - { - "old": {"highway": "no"} - }, - { - "old": {"highway": "platform"}, - "replace": {"highway": "platform", "public_transport": "platform"} - }, - { - "old": {"highway": "stile"}, - "replace": {"barrier": "stile"} - }, - { - "old": {"highway": "unsurfaced"}, - "replace": {"highway": "road", "surface": "unpaved"} - }, - { - "old": {"internet_access": "public"}, - "replace": {"internet_access": "yes", "internet_access:fee": "no"} - }, - { - "old": {"internet_access": "wifi"}, - "replace": {"internet_access": "wlan"} - }, - { - "old": {"internet_access:fee": "0"}, - "replace": {"internet_access:fee": "no"} - }, - { - "old": {"internet_access:fee": "free"}, - "replace": {"internet_access:fee": "no"} - }, - { - "old": {"internet_access:fee": "Free"}, - "replace": {"internet_access:fee": "no"} - }, - { - "old": {"internet_access:fee": "No"}, - "replace": {"internet_access:fee": "no"} - }, - { - "old": {"internet_access:name": "*"}, - "replace": {"internet_access:ssid": "$1"} - }, - { - "old": {"internet_access:type": "*"}, - "replace": {"internet_access": "$1"} - }, - { - "old": {"kerb": "dropped"}, - "replace": {"kerb": "lowered"} - }, - { - "old": {"kerb": "flat"}, - "replace": {"kerb": "flush"} - }, - { - "old": {"lamp_mount": "bent mast"}, - "replace": {"lamp_mount": "bent_mast"} - }, - { - "old": {"lamp_mount": "straight mast"}, - "replace": {"lamp_mount": "straight_mast"} - }, - { - "old": {"lamp_mount": "straightmast"}, - "replace": {"lamp_mount": "straight_mast"} - }, - { - "old": {"lamp_mount": "streight_mast"}, - "replace": {"lamp_mount": "straight_mast"} - }, - { - "old": {"lamp_mount": "wal"}, - "replace": {"lamp_mount": "wall"} - }, - { - "old": {"lamp_mount": "wall mounted"}, - "replace": {"lamp_mount": "wall"} - }, - { - "old": {"lamp_mount": "wall_mount"}, - "replace": {"lamp_mount": "wall"} - }, - { - "old": {"lamp_mount": "wall_mounted"}, - "replace": {"lamp_mount": "wall"} - }, - { - "old": {"landcover": "flower_bed"}, - "replace": {"landuse": "flowerbed"} - }, - { - "old": {"landcover": "flowerbed"}, - "replace": {"landuse": "flowerbed"} - }, - { - "old": {"landuse": "basin"}, - "replace": {"natural": "water", "water": "basin"} - }, - { - "old": {"landuse": "conservation"}, - "replace": {"boundary": "protected_area"} - }, - { - "old": {"landuse": "field"}, - "replace": {"landuse": "farmland"} - }, - { - "old": {"landuse": "garden"}, - "replace": {"leisure": "garden"} - }, - { - "old": {"landuse": "pond"}, - "replace": {"natural": "water", "water": "pond"} - }, - { - "old": {"landuse": "port"}, - "replace": {"landuse": "industrial", "industrial": "port"} - }, - { - "old": {"landuse": "reservoir"}, - "replace": {"natural": "water", "water": "reservoir"} - }, - { - "old": {"landuse": "wood"}, - "replace": {"natural": "wood"} - }, - { - "old": {"lawyer": "notary"}, - "replace": {"office": "notary"} - }, - { - "old": {"leisure": "beach"}, - "replace": {"natural": "beach"} - }, - { - "old": {"leisure": "bingo"}, - "replace": {"amenity": "gambling", "gambling": "bingo"} - }, - { - "old": {"leisure": "club"}, - "replace": {"club": "*"} - }, - { - "old": {"leisure": "gambling"}, - "replace": {"amenity": "gambling"} - }, - { - "old": {"leisure": "golf_pin"}, - "replace": {"golf": "pin"} - }, - { - "old": {"leisure": "ice_rink", "sport": "hockey"}, - "replace": {"leisure": "ice_rink", "sport": "ice_hockey"} - }, - { - "old": {"leisure": "ice_rink", "sport": "skating"}, - "replace": {"leisure": "ice_rink", "sport": "ice_skating"} - }, - { - "old": {"leisure": "recreation_ground"}, - "replace": {"landuse": "recreation_ground"} - }, - { - "old": {"leisure": "video_arcade"}, - "replace": {"leisure": "amusement_arcade"} - }, - { - "old": {"Level": "*"}, - "replace": {"level": "$1"} - }, - { - "old": {"LEVEL": "*"}, - "replace": {"level": "$1"} - }, - { - "old": {"levels": "*"}, - "replace": {"building:levels": "$1"} - }, - { - "old": {"LEVELS": "*"}, - "replace": {"building:levels": "$1"} - }, - { - "old": {"levels_count": "*"}, - "replace": {"building:levels": "$1"} - }, - { - "old": {"man_made": "cut_line"}, - "replace": {"man_made": "cutline"} - }, - { - "old": {"man_made": "flower_bed"}, - "replace": {"landuse": "flowerbed"} - }, - { - "old": {"man_made": "flowerbed"}, - "replace": {"landuse": "flowerbed"} - }, - { - "old": {"man_made": "fuel_storage_tank"}, - "replace": {"man_made": "storage_tank", "content": "fuel"} - }, - { - "old": {"man_made": "gas_well"}, - "replace": {"man_made": "petroleum_well", "substance": "gas"} - }, - { - "old": {"man_made": "jetty"}, - "replace": {"man_made": "pier"} - }, - { - "old": {"man_made": "mdf"}, - "replace": {"telecom": "exchange"} - }, - { - "old": {"man_made": "MDF"}, - "replace": {"telecom": "exchange"} - }, - { - "old": {"man_made": "oil_tank"}, - "replace": {"man_made": "storage_tank", "content": "oil"} - }, - { - "old": {"man_made": "oil_well"}, - "replace": {"man_made": "petroleum_well", "substance": "oil"} - }, - { - "old": {"man_made": "telephone_exchange"}, - "replace": {"telecom": "exchange"} - }, - { - "old": {"man_made": "village_pump"}, - "replace": {"man_made": "water_well"} - }, - { - "old": {"man_made": "wastewater_tank"}, - "replace": {"man_made": "storage_tank", "content": "wastewater"} - }, - { - "old": {"man_made": "water_tank"}, - "replace": {"man_made": "storage_tank", "content": "water"} - }, - { - "old": {"man_made": "weigh_bridge"}, - "replace": {"amenity": "weighbridge"} - }, - { - "old": {"man_made": "weighbridge"}, - "replace": {"amenity": "weighbridge"} - }, - { - "old": {"man_made": "weighing_machine"}, - "replace": {"amenity": "weighbridge"} - }, - { - "old": {"man_made": "weighing_scale"}, - "replace": {"amenity": "weighbridge"} - }, - { - "old": {"man_made": "weighting machine"}, - "replace": {"amenity": "weighbridge"} - }, - { - "old": {"man_made": "weighting_machine"}, - "replace": {"amenity": "weighbridge"} - }, - { - "old": {"man_made": "well"}, - "replace": {"man_made": "water_well"} - }, - { - "old": {"man_made": "winery"}, - "replace": {"craft": "winery"} - }, - { - "old": {"maxage": "*"}, - "replace": {"max_age": "$1"} - }, - { - "old": {"memorial": "plate"}, - "replace": {"memorial": "plaque"} - }, - { - "old": {"men": "*"}, - "replace": {"male": "$1"} - }, - { - "old": {"minage": "*"}, - "replace": {"min_age": "$1"} - }, - { - "old": {"mining_resource": "*"}, - "replace": {"resource": "$1"} - }, - { - "old": {"museum_type": "history"}, - "replace": {"museum": "history"} - }, - { - "old": {"museum_type": "private"}, - "replace": {"operator:type": "private"} - }, - { - "old": {"museum_type": "public"}, - "replace": {"operator:type": "public"} - }, - { - "old": {"natural": "marsh"}, - "replace": {"natural": "wetland", "wetland": "marsh"} - }, - { - "old": {"natural": "waterfall"}, - "replace": {"waterway": "waterfall"} - }, - { - "old": {"NOTE": "*"}, - "replace": {"note": "$1"} - }, - { - "old": {"nosquare": "*"}, - "replace": {"nonsquare": "$1"} - }, - { - "old": {"office": "administrative"}, - "replace": {"office": "government"} - }, - { - "old": {"office": "consultancy"}, - "replace": {"office": "consulting"} - }, - { - "old": {"office": "consultant"}, - "replace": {"office": "consulting"} - }, - { - "old": {"office": "real_estate"}, - "replace": {"office": "estate_agent"} - }, - { - "old": {"oneway": "1"}, - "replace": {"oneway": "yes"} - }, - { - "old": {"oneway": "alternate"}, - "replace": {"oneway": "alternating"} - }, - { - "old": {"oneway": "no;yes"} - }, - { - "old": {"oneway": "unknown"} - }, - { - "old": {"operator:type": "goverment"}, - "replace": {"operator:type": "government"} - }, - { - "old": {"operator:type": "Privado"}, - "replace": {"operator:type": "private"} - }, - { - "old": {"operator:type": "Private"}, - "replace": {"operator:type": "private"} - }, - { - "old": {"operator:type": "Public"}, - "replace": {"operator:type": "public"} - }, - { - "old": {"operator:type": "Publico"}, - "replace": {"operator:type": "public"} - }, - { - "old": {"operator:type": "unknown"} - }, - { - "old": {"parking": "covered"}, - "replace": {"covered": "yes"} - }, - { - "old": {"parking": "customers"}, - "replace": {"access": "customers"} - }, - { - "old": {"parking": "entrance"}, - "replace": {"amenity": "parking_entrance"} - }, - { - "old": {"parking": "park_and_ride"}, - "replace": {"park_ride": "yes"} - }, - { - "old": {"parking": "private"}, - "replace": {"access": "private"} - }, - { - "old": {"parking": "street"}, - "replace": {"parking": "lane"} - }, - { - "old": {"place_name": "*"}, - "replace": {"name": "$1"} - }, - { - "old": {"pole": "transition"}, - "replace": {"location:transition": "yes"} - }, - { - "old": {"pole:type": "branch", "branch:type": "cross"}, - "replace": {"line_management": "cross"} - }, - { - "old": {"pole:type": "branch", "branch:type": "loop"}, - "replace": {"line_management": "split"} - }, - { - "old": {"pole:type": "branch", "branch:type": "split"}, - "replace": {"line_management": "split"} - }, - { - "old": {"pole:type": "branch", "branch:type": "tap"}, - "replace": {"line_management": "branch"} - }, - { - "old": {"pole:type": "termination"}, - "replace": {"line_management": "termination"} - }, - { - "old": {"postcode": "*"}, - "replace": {"addr:postcode": "$1"} - }, - { - "old": {"power": "busbar"}, - "replace": {"power": "line", "line": "busbar"} - }, - { - "old": {"power": "line", "location": "underground"}, - "replace": {"power": "cable", "location": "underground"} - }, - { - "old": {"power": "marker"}, - "replace": {"marker": "*", "utility": "power"} - }, - { - "old": {"power": "sub_station"}, - "replace": {"power": "substation"} - }, - { - "old": {"power": "substation", "location": "kiosk"}, - "replace": {"power": "substation", "man_made": "street_cabinet", "street_cabinet": "power"} - }, - { - "old": {"power": "underground_cable"}, - "replace": {"power": "cable", "location": "underground"} - }, - { - "old": {"power_source": "*"}, - "replace": {"generator:source": "$1"} - }, - { - "old": {"power_rating": "*"}, - "replace": {"generator:output": "$1"} - }, - { - "old": {"public_transport": "station", "aerialway": "yes"}, - "replace": {"public_transport": "station", "aerialway": "station"} - }, - { - "old": {"pump": "hand_pump"}, - "replace": {"pump": "manual"} - }, - { - "old": {"pump": "electrical_pump"}, - "replace": {"pump": "powered"} - }, - { - "old": {"pump": "no_pump"}, - "replace": {"pump": "no"} - }, - { - "old": {"pump": "power"}, - "replace": {"pump": "powered"} - }, - { - "old": {"railway": "*", "abandoned": "yes"}, - "replace": {"abandoned:railway": "$1"} - }, - { - "old": {"railway": "*", "disused": "yes"}, - "replace": {"disused:railway": "$1"} - }, - { - "old": {"railway": "platform"}, - "replace": {"railway": "platform", "public_transport": "platform"} - }, - { - "old": {"railway": "station"}, - "replace": {"railway": "station", "public_transport": "station"} - }, - { - "old": {"railway": "tram_stop"}, - "replace": {"railway": "tram_stop", "public_transport": "stop_position", "tram": "yes"} - }, - { - "old": {"recommended_speed": "*"}, - "replace": {"maxspeed:advisory": "$1"} - }, - { - "old": {"recommended_speed:backward": "*"}, - "replace": {"maxspeed:advisory:backward": "$1"} - }, - { - "old": {"recommended_speed:forward": "*"}, - "replace": {"maxspeed:advisory:forward": "$1"} - }, - { - "old": {"religion": "catholic"}, - "replace": {"religion": "christian", "denomination": "catholic"} - }, - { - "old": {"reservations": "*"}, - "replace": {"reservation": "$1"} - }, - { - "old": {"roof:color": "*"}, - "replace": {"roof:colour": "$1"} - }, - { - "old": {"roof:shape": "half_hipped"}, - "replace": {"roof:shape": "half-hipped"} - }, - { - "old": {"route": "ncn"}, - "replace": {"route": "bicycle", "network": "ncn"} - }, - { - "old": {"rwn_expected_route_relations": "*"}, - "replace": {"expected_rwn_route_relations": "$1"} - }, - { - "old": {"service": "drive_through"}, - "replace": {"service": "drive-through"} - }, - { - "old": {"shop": "adult"}, - "replace": {"shop": "erotic"} - }, - { - "old": {"shop": "antique"}, - "replace": {"shop": "antiques"} - }, - { - "old": {"shop": "army_surplus"}, - "replace": {"shop": "military_surplus"} - }, - { - "old": {"shop": "auto_parts"}, - "replace": {"shop": "car_parts"} - }, - { - "old": {"shop": "baby"}, - "replace": {"shop": "baby_goods"} - }, - { - "old": {"shop": "baby_care"}, - "replace": {"shop": "baby_goods"} - }, - { - "old": {"shop": "bags"}, - "replace": {"shop": "bag"} - }, - { - "old": {"shop": "bail_bond"}, - "replace": {"office": "bail_bond_agent"} - }, - { - "old": {"shop": "bail_bonds"}, - "replace": {"office": "bail_bond_agent"} - }, - { - "old": {"shop": "betting"}, - "replace": {"shop": "bookmaker"} - }, - { - "old": {"shop": "boutique"}, - "replace": {"shop": "clothes"} - }, - { - "old": {"shop": "cafe"}, - "replace": {"amenity": "cafe"} - }, - { - "old": {"shop": "consulting"}, - "replace": {"office": "consulting"} - }, - { - "old": {"shop": "dive"}, - "replace": {"shop": "scuba_diving"} - }, - { - "old": {"shop": "fashion"}, - "replace": {"shop": "clothes"} - }, - { - "old": {"shop": "fish"}, - "replace": {"shop": "seafood"} - }, - { - "old": {"shop": "fishmonger"}, - "replace": {"shop": "seafood"} - }, - { - "old": {"shop": "furnace"}, - "replace": {"shop": "fireplace"} - }, - { - "old": {"shop": "gallery"}, - "replace": {"shop": "art"} - }, - { - "old": {"shop": "jewellery"}, - "replace": {"shop": "jewelry"} - }, - { - "old": {"shop": "lingerie"}, - "replace": {"shop": "clothes", "clothes": "underwear"} - }, - { - "old": {"shop": "luggage"}, - "replace": {"shop": "bag"} - }, - { - "old": {"shop": "money_transfer"}, - "replace": {"amenity": "money_transfer"} - }, - { - "old": {"shop": "moneylender"}, - "replace": {"shop": "money_lender"} - }, - { - "old": {"shop": "organic"}, - "replace": {"shop": "supermarket", "organic": "only"} - }, - { - "old": {"shop": "perfume"}, - "replace": {"shop": "perfumery"} - }, - { - "old": {"shop": "real_estate"}, - "replace": {"office": "estate_agent"} - }, - { - "old": {"shop": "tickets"}, - "replace": {"shop": "ticket"} - }, - { - "old": {"shop": "underwear"}, - "replace": {"shop": "clothes", "clothes": "underwear"} - }, - { - "old": {"shop": "winery"}, - "replace": {"craft": "winery"} - }, - { - "old": {"showers": "*"}, - "replace": {"shower": "$1"} - }, - { - "old": {"sloped_curb": "0"}, - "replace": {"kerb": "flush"} - }, - { - "old": {"sloped_curb": "0.00"}, - "replace": {"kerb": "flush"} - }, - { - "old": {"sloped_curb": "0.01"}, - "replace": {"kerb": "lowered", "kerb:height": "1 cm"} - }, - { - "old": {"sloped_curb": "0.02"}, - "replace": {"kerb": "lowered", "kerb:height": "2 cm"} - }, - { - "old": {"sloped_curb": "0.03"}, - "replace": {"kerb": "lowered", "kerb:height": "3 cm"} - }, - { - "old": {"sloped_curb": "at_grade"}, - "replace": {"kerb": "flush"} - }, - { - "old": {"sloped_curb": "both"}, - "replace": {"kerb": "lowered"} - }, - { - "old": {"sloped_curb": "flush"}, - "replace": {"kerb": "flush"} - }, - { - "old": {"sloped_curb": "low"}, - "replace": {"kerb": "lowered"} - }, - { - "old": {"sloped_curb": "no"}, - "replace": {"kerb": "raised"} - }, - { - "old": {"sloped_curb": "yes"}, - "replace": {"kerb": "lowered"} - }, - { - "old": {"speed_limit": "*"}, - "replace": {"maxspeed": "$1"} - }, - { - "old": {"speedlimit": "*"}, - "replace": {"maxspeed": "$1"} - }, - { - "old": {"SpeedLimit": "*"}, - "replace": {"maxspeed": "$1"} - }, - { - "old": {"SPEEDLIMIT": "*"}, - "replace": {"maxspeed": "$1"} - }, - { - "old": {"sport": "horse_shoes"}, - "replace": {"sport": "horseshoes"} - }, - { - "old": {"sport": "horseshoe"}, - "replace": {"sport": "horseshoes"} - }, - { - "old": {"sport": "shuffle_board"}, - "replace": {"sport": "shuffleboard"} - }, - { - "old": {"station": "light_rail"}, - "replace": {"station": "light_rail", "light_rail": "yes"} - }, - { - "old": {"station": "monorail"}, - "replace": {"station": "monorail", "monorail": "yes"} - }, - { - "old": {"station": "subway"}, - "replace": {"station": "subway", "subway": "yes"} - }, - { - "old": {"station": "train"}, - "replace": {"station": "train", "train": "yes"} - }, - { - "old": {"stream": "intermittent", "waterway": "stream"}, - "replace": {"intermittent": "yes", "waterway": "stream"} - }, - { - "old": {"sustenance": "bar"}, - "replace": {"amenity": "bar"} - }, - { - "old": {"sustenance": "cafe"}, - "replace": {"amenity": "cafe"} - }, - { - "old": {"sustenance": "pub"}, - "replace": {"amenity": "pub"} - }, - { - "old": {"sustenance": "restaurant"}, - "replace": {"amenity": "restaurant"} - }, - { - "old": {"theatre:type": "amphitheatre"}, - "replace": {"theatre:type": "amphi"} - }, - { - "old": {"todo": "*"}, - "replace": {"fixme": "$1"} - }, - { - "old": {"TODO": "*"}, - "replace": {"fixme": "$1"} - }, - { - "old": {"toilets:disposal": "longdrop"}, - "replace": {"toilets:disposal": "pitlatrine"} - }, - { - "old": {"toilets:disposal": "pit_latrine"}, - "replace": {"toilets:disposal": "pitlatrine"} - }, - { - "old": {"toilets:type": "flush"}, - "replace": {"toilets:disposal": "flush"} - }, - { - "old": {"toilets:type": "pit"}, - "replace": {"toilets:disposal": "pitlatrine"} - }, - { - "old": {"toilets:type": "pitlatrine"}, - "replace": {"toilets:disposal": "pitlatrine"} - }, - { - "old": {"toilets:type": "pit latrine"}, - "replace": {"toilets:disposal": "pitlatrine"} - }, - { - "old": {"tourism": "bed_and_breakfast"}, - "replace": {"tourism": "guest_house", "guest_house": "bed_and_breakfast"} - }, - { - "old": {"tower:type": "power"}, - "replace": {"power": "tower"} - }, - { - "old": {"tower:type": "anchor"}, - "replace": {"line_attachment": "anchor"} - }, - { - "old": {"tower:type": "branch", "branch:type": "cross"}, - "replace": {"line_management": "cross"} - }, - { - "old": {"tower:type": "branch", "branch:type": "loop"}, - "replace": {"line_management": "split"} - }, - { - "old": {"tower:type": "branch", "branch:type": "split"}, - "replace": {"line_management": "split"} - }, - { - "old": {"tower:type": "branch", "branch:type": "tap"}, - "replace": {"line_management": "branch"} - }, - { - "old": {"tower:type": "suspension"}, - "replace": {"line_attachment": "suspension"} - }, - { - "old": {"tower:type": "termination"}, - "replace": {"line_management": "termination"} - }, - { - "old": {"tower:type": "transposing"}, - "replace": {"line_management": "transpose"} - }, - { - "old": {"townhall:village": "yes"}, - "replace": {"amenity": "townhall", "townhall:type": "village"} - }, - { - "old": {"tunnel": "1"}, - "replace": {"tunnel": "yes"} - }, - { - "old": {"type": "audio", "amenity": "studio"}, - "replace": {"studio": "audio", "amenity": "studio"} - }, - { - "old": {"type": "broad_leaved"}, - "replace": {"leaf_type": "broadleaved"} - }, - { - "old": {"type": "caldera"}, - "replace": {"volcano:type": "caldera"} - }, - { - "old": {"type": "conifer"}, - "replace": {"leaf_type": "needleleaved"} - }, - { - "old": {"type": "deciduous"}, - "replace": {"leaf_cycle": "deciduous"} - }, - { - "old": {"type": "extinct"}, - "replace": {"volcano:status": "extinct"} - }, - { - "old": {"type": "gas", "man_made": "pipeline"}, - "replace": {"substance": "gas", "man_made": "pipeline"} - }, - { - "old": {"type": "gas", "man_made": "pumping_rig"}, - "replace": {"substance": "gas", "man_made": "pumping_rig"} - }, - { - "old": {"type": "gas", "pipeline": "*"}, - "replace": {"substance": "gas", "pipeline": "$1"} - }, - { - "old": {"type": "oil", "man_made": "pipeline"}, - "replace": {"substance": "oil", "man_made": "pipeline"} - }, - { - "old": {"type": "oil", "man_made": "pumping_rig"}, - "replace": {"substance": "oil", "man_made": "pumping_rig"} - }, - { - "old": {"type": "oil", "pipeline": "*"}, - "replace": {"substance": "oil", "pipeline": "$1"} - }, - { - "old": {"type": "scoria"}, - "replace": {"volcano:type": "scoria"} - }, - { - "old": {"type": "shield"}, - "replace": {"volcano:type": "shield"} - }, - { - "old": {"type": "strato"}, - "replace": {"volcano:type": "stratovolcano"} - }, - { - "old": {"type": "video", "amenity": "studio"}, - "replace": {"studio": "video", "amenity": "studio"} - }, - { - "old": {"type": "water", "man_made": "pipeline"}, - "replace": {"substance": "water", "man_made": "pipeline"} - }, - { - "old": {"type": "water", "man_made": "reservoir_covered"}, - "replace": {"content": "water", "man_made": "reservoir_covered"} - }, - { - "old": {"type": "water", "pipeline": "*"}, - "replace": {"substance": "water", "pipeline": "$1"} - }, - { - "old": {"unnamed": "*"}, - "replace": {"noname": "$1"} - }, - { - "old": {"vending": "parcel_mail_in;parcel_pickup"}, - "replace": {"vending": "parcel_pickup;parcel_mail_in"} - }, - { - "old": {"vhf_channel": "*"}, - "replace": {"vhf": "$1"} - }, - { - "old": {"volcano": "extinct"}, - "replace": {"volcano:status": "extinct"} - }, - { - "old": {"wall_type": "noise_barrier"}, - "replace": {"wall": "noise_barrier"} - }, - { - "old": {"water": "intermittent"}, - "replace": {"natural": "water", "intermittent": "yes"} - }, - { - "old": {"water": "riverbank"}, - "replace": {"natural": "water", "water": "river"} - }, - { - "old": {"water": "salt"}, - "replace": {"natural": "water", "salt": "yes"} - }, - { - "old": {"water": "tidal"}, - "replace": {"natural": "water", "tidal": "yes"} - }, - { - "old": {"waterway": "aqueduct"}, - "replace": {"waterway": "canal", "bridge": "aqueduct"} - }, - { - "old": {"waterway": "lock"}, - "replace": {"waterway": "canal", "lock": "yes"} - }, - { - "old": {"waterway": "riverbank"}, - "replace": {"natural": "water", "water": "river"} - }, - { - "old": {"waterway:vhf_channel": "*"}, - "replace": {"vhf": "$1"} - }, - { - "old": {"wifi": "yes"}, - "replace": {"internet_access": "wlan"} - }, - { - "old": {"wifi": "free"}, - "replace": {"internet_access": "wlan", "internet_access:fee": "no"} - }, - { - "old": {"women": "*"}, - "replace": {"female": "$1"} - }, - { - "old": {"wood": "coniferous"}, - "replace": {"leaf_type": "needleleaved"} - }, - { - "old": {"wood": "deciduous"}, - "replace": {"leaf_cycle": "deciduous"} - }, - { - "old": {"wood": "evergreen"}, - "replace": {"leaf_cycle": "evergreen"} - }, - { - "old": {"wood": "mixed"}, - "replace": {"leaf_cycle": "mixed", "leaf_type": "mixed"} - } -] diff --git a/data/discarded.json b/data/discarded.json deleted file mode 100644 index 12dae8b21b..0000000000 --- a/data/discarded.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "created_by": true, - - "odbl": true, - "odbl:note": true, - - "tiger:upload_uuid": true, - "tiger:tlid": true, - "tiger:source": true, - "tiger:separated": true, - - "geobase:datasetName": true, - "geobase:uuid": true, - - "osmarender:nameDirection": true, - "osmarender:renderName": true, - "osmarender:renderRef": true, - "osmarender:rendernames": true, - - "sub_sea:type": true, - - "KSJ2:ADS": true, - "KSJ2:ARE": true, - "KSJ2:AdminArea": true, - "KSJ2:COP_label": true, - "KSJ2:DFD": true, - "KSJ2:INT": true, - "KSJ2:INT_label": true, - "KSJ2:LOC": true, - "KSJ2:LPN": true, - "KSJ2:OPC": true, - "KSJ2:PubFacAdmin": true, - "KSJ2:RAC": true, - "KSJ2:RAC_label": true, - "KSJ2:RIC": true, - "KSJ2:RIN": true, - "KSJ2:WSC": true, - "KSJ2:coordinate": true, - "KSJ2:curve_id": true, - "KSJ2:curve_type": true, - "KSJ2:filename": true, - "KSJ2:lake_id": true, - "KSJ2:lat": true, - "KSJ2:long": true, - "KSJ2:river_id": true, - - "SK53_bulk:load": true, - - "yh:LINE_NAME": true, - "yh:LINE_NUM": true, - "yh:STRUCTURE": true, - "yh:TOTYUMONO": true, - "yh:TYPE": true, - "yh:WIDTH": true, - "yh:WIDTH_RANK": true -} diff --git a/data/presets/README.md b/data/presets/README.md deleted file mode 100644 index 13c9c68752..0000000000 --- a/data/presets/README.md +++ /dev/null @@ -1,521 +0,0 @@ -## Presets - -iD editor preset and field types are defined in [JSON](http://en.wikipedia.org/wiki/JSON) -files located under the `data/presets` folder of the iD repository. - -#### Preset Files - -Presets are defined in JSON files located under `data/presets/presets`. They're organized in a -directory hierarchy based on OSM key/value pairs. For example, the preset that matches -the tag `leisure=park` is in the file `data/presets/presets/leisure/park.json`. - -#### Preset Schema - -A basic preset is of the form: - -```javascript -{ - // The icon in iD which represents this feature. - "icon": "maki-park", - // The names of fields that will appear by default in the editor sidebar. - // See the fields documentation for details of what's valid here. - "fields": [ - "address" - ], - // The names of fields that the user can add manually. These will also - // appear if the corresponding tags are present. - "moreFields": [ - "phone", - "website" - ], - // The geometry types for which this preset is valid. - // options are point, area, line, and vertex. - // vertices are points that are parts of lines, like the nodes in a road - // lines are unclosed ways, and areas are closed ways - "geometry": [ - "point", "area" - ], - // Terms are synonyms for the preset - these are added to fuel - // the search functionality. searching for 'woodland' will bring - // up this 'park' preset - "terms": [ - "esplanade", - "village green", - "woodland" - ], - // Tags that are added to the feature when selecting the preset, - // and also used to match the preset against existing features. - // You can use the value "*" to match any value. - "tags": { - "leisure": "park" - }, - // English language display name for this map feature. - "name": "Park" -} -``` -The complete JSON schema for presets can be found in [`data/presets/schema/preset.json`](schema/preset.json) - - -#### Preset Properties - -##### `name` - -The primary name of the feature type in American English. - -Upon merging with `develop`, this is sent to Transifex for translating to other localizations. Changing the name of an existing preset will require it to be re-translated to all localizations. - -This property is required. There is no default. - -##### `geometry` - -An array of possible geometry types that a feature must have in order to match this preset. - -* `point`: an OSM node that is not a member of any way -* `vertex`: an OSM node that is a member of one or more ways -* `line`: an OSM way that is not an area -* `area`: an OSM way that is closed/circular (the first and last nodes are the same) or a `type=multipolygon` relation -* `relation`: an OSM relation - -Closed ways can be treated as both `line` or `area` geometry. If a preset allows both, iD will add an additional `area=yes` tag when choosing the preset for an area feature. - -The geometry types should be listed in order of preference. For example, the preset for `leisure=swimming_pool` lists `area` before `point`. - -This property is required. There is no default. - -##### `tags` - -An object with the `"key": "value"` tags a feature must have to match this preset. A `"*"` wildcard value can be set to have this preset match any value for that key. - -A features can only match one preset even if its tags and geometry could technically match more than one. iD will pick the best match based on `matchScore`, the number of tags, and the use of wildcard values. - -This property is required. There is no default. - -##### `addTags` - -The tags that are added to the feature when selecting this preset. Defaults to `tags`. If needed, this property will typically be a superset of `tags`. - -iD's validator will recommend that users add missing tags from `addTags` to matching features. For example, the Bridge preset has these properties: - -``` - "tags": { - "man_made": "bridge" - }, - "addTags": { - "man_made": "bridge", - "layer": "1" - }, -``` - -When adding a feature with this preset, it will be given the tags `man_made=bridge` and `layer=1`. The user could then change `layer` to `3`, for instance, and the feature would still match the preset because it still has `man_made=bridge`. If the user removes the `layer` tag altogether, iD will recommend adding it back with a value of `1`. - -##### `removeTags` - -The tags that are removed from the feature when deselecting this preset. Defaults to `addTags` or if this is also not defined, to `tags`. - -##### `fields`/`moreFields` - -Both these properties are arrays of field paths (e.g. `description` or `generator/type`). -`fields` are shown by default and `moreFields` are shown if manually added by the -user or if a matching tag is present. Note that some fields have a `prerequisiteTag` -property that limits when they will be shown. - -A preset can reference the fields of another by using that preset's name contained in -brackets, like `{preset}`. For example, `shop/books` references and extends the fields -of `shop`: - -```javascript -"fields": [ - "{shop}", - "internet_access" -], -"moreFields": [ - "{shop}", - "internet_access/fee", - "internet_access/ssid" -], -"tags": { - "shop": "books" -} -``` - -If `fields` or `moreFields` are not defined, the values of the preset's "parent" -preset are used. For example, `shop/convenience` automatically uses the same -fields as `shop`. - -In both explicit and implicit inheritance, fields for keys that define the -preset are generally not inherited. E.g. the `shop` field is not inherited by `shop/…` presets. - -##### `icon` - -The name of a local SVG icon file. You can use icons from any of the following icon sets. When specifying an icon, use the prefixed version of the name, for example `"icon": "maki-park"`. - -* [iD's spritesheet](https://github.com/openstreetmap/iD/tree/develop/svg/iD-sprite/presets) (`iD-`) -* [Maki](https://labs.mapbox.com/maki-icons/) (`maki-`), map-specific icons from Mapbox -* [Temaki](https://ideditor.github.io/temaki/docs/) (`temaki-`), an expansion pack for Maki - * This is the best place to submit a PR if you want to create a preset icon! -* [Font Awesome](https://fontawesome.com/icons?d=gallery&m=free), thousands of general-purpose icons - * There is a free and pro tier. You can use any icon from the free tier in the following styles: - * [Solid](https://fontawesome.com/icons?d=gallery&s=solid&m=free) (`fas-`) - * [Regular](https://fontawesome.com/icons?d=gallery&s=regular&m=free) (`far-`) - * [Brands](https://fontawesome.com/icons?d=gallery&s=brands&m=free) (`fab-`) - -##### `imageURL` - -The URL of a remote image file. This does not fully replace `icon`—both may be shown in the UI. - -For example, `imageURL` is used to specify the logos of brand presets from the [name-suggestion-index](https://github.com/osmlab/name-suggestion-index). - -Bitmap images should be at least 100x100px to look good at 50x50pt on high-resolution screens. - -##### `searchable` - -Deprecated or generic presets can include the property `"searchable": false`. -This means that they will be recognized by iD when editing existing data, -but will not be available as an option when adding new features. - -By convention, unsearchable presets have filenames that begin with an underscore -(e.g. `data/presets/presets/landuse/_farm.json`) - -##### `matchScore` - -A number that ranks this preset against others that match the feature. - -For example, a feature with `amenity=cafe` and `building=commercial` will match the Cafe preset instead of the Commercial Building preset because Commercial Building has a lower `matchScore`. - -The default is `1.0`. - -##### `countryCodes` - -An array of two-letter, lowercase [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country codes. The preset will only be searchable when the user is editing over the specified, whitelisted countries. The locale and language of iD are not factors, just the position of the map. - -By default, presets are available everywhere. - -##### `notCountryCodes` - -An array of two-letter, lowercase [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country codes. Similar to `countryCodes` except a blocklist. - -##### `replacement` - -The ID of a preset that is preferable to this one. iD's validator will flag features matching this preset and recommend that the user upgrade the tags. - -When possible, use `deprecated.json` instead to specify upgrade paths for old tags. This property is meant for special cases, such as upgrades with geometry requirements. - -##### `reference` - -A key and optionally a value to link to the wiki documentation for this preset. Only necessary if the preset consists of several tags. - -For example, -```javascript -"reference": { - "key": "tower:type", - "value": "communication" -} -``` - -## Fields - -Fields are reusable form elements that can be associated with presets. - -#### Field Files - -Fields are defined in JSON files located under `data/presets/fields`. - -The field files are typically named according to their associated OSM key. -For example, the field for the tag `sport=*` is stored in the file -`data/presets/fields/sport.json`. When a field has multiple versions that -depend on which preset is active, we add a suffix to the filename: -(`sport.json`, `sport_ice.json`, `sport_racing_motor.json`). - -Some keys in OSM are namespaced using colons (':'). Namespaced fields -are nested in folders according to their tag. -For example, the field for the tag `piste:difficulty=*` is stored in the file -`data/presets/fields/piste/difficulty.json`. - - -#### Field Schema - -```js -{ - "key": "cuisine", - "type": "combo", - "label": "Cuisine" -} -``` -The complete JSON schema for fields can be found in [`data/presets/schema/field.json`](schema/field.json) - -#### Field Properties - -##### `type` - -A string specifying the UI and behavior of the field. Must be one of the following values. - -###### Text fields - -* `text` - Basic single line text field -* `number` - Text field with up/down buttons for entering numbers (e.g. `width=*`) -* `localized` - Text field with localization abilities (e.g. `name=*`, `name:es=*`, etc.) -* `tel` - Text field for entering phone numbers (localized for editing location) -* `email` - Text field for entering email addresses -* `url` - Text field for entering URLs -* `identifier` - Text field for foreign IDs (e.g. `gnis:feature_id`) -* `textarea` - Multi-line text area (e.g. `description=*`) - -###### Combo/Dropdown fields - -* `combo` - Dropdown field for picking one option out of many (e.g. `surface=*`) -* `typeCombo` - Dropdown field picking a specific type from a generic category key
-(e.g. `waterway=*`. If unset, tag will be `waterway=yes`, but dropdown contains options like `stream`, `ditch`, `river`) -* `multiCombo` - Dropdown field for adding `yes` values to multiple keys with the same prefix (a common multikey)
-(e.g. `recycling:*` -> `recycling:glass=yes`, `recycling:paper=yes`, etc.) -* `manyCombo` - Dropdown field for adding `yes` values to many different keys
-(e.g. `bus`, `tram`, `train` -> `bus=yes`, `tram=yes`, etc.) -* `networkCombo` - Dropdown field that helps users pick a route `network` tag (localized for editing location) -* `semiCombo` - Dropdown field for adding multiple values to a semicolon-delimited list
-(e.g. `sport=*` -> `soccer;lacrosse;athletics;field_hockey`) - -###### Checkboxes - -* `check` - 3-state checkbox: `yes`, `no`, unknown (no tag) -* `defaultCheck` - 2-state checkbox where checked produces `yes` and unchecked produces no tag -* `onewayCheck` - 3-state checkbox for `oneway` fields, with extra button for direction switching - -###### Radio Buttons - -* `radio` - Multiple choice radio button field -* `structureRadio` - Multiple choice structure radio button field, with extra input for bridge/tunnel level - -###### Special - -* `access` - Block of dropdowns for defining the `access=*` tags on a highway -* `address` - Block of text and dropdown fields for entering address information (localized for editing location) -* `cycleway` - Block of dropdowns for adding `cycleway:left` and `cycleway:right` tags on a highway -* `maxspeed` - Numeric text field for speed and dropdown for "mph/kph" -* `restrictions` - Graphical field for editing turn restrictions -* `wikidata` - Search field for selecting a Wikidata entity -* `wikipedia` - Block of fields for selecting a wiki language and Wikipedia page - -##### `usage` - -A string specifying how iD uses the field. Must be one of the following values. - -* `preset` - The field is listed in one or more preset files (default and most common value) -* `changeset` - The field is only used for changeset tags when uploading, e.g. `comment` -* `group` - The field is only used within another field such as `structure`, e.g. `cutting` -* `manual` - The field is only added by iD programmatically as needed, e.g. `restrictions` - -##### `key`/`keys` - -The `key` property names the OSM key that the field will edit. -Compound fields like `address` expect an array of keys in the `keys` property. - -##### `universal` - -If a field definition contains the property `"universal": true`, this field will -appear in the "Add Field" list for all presets - -##### `geometry` - -If specified, only show the field for this kind of geometry. Should contain -one of `point`, `vertex`, `line`, `area`. - -##### `default` - -The default value for the field. For example, the `building_area.json` field -will automatically add the tag `building=yes` to certain presets that are -associated with building features (but only if drawn as a closed area). - -```js -{ - "key": "building", - "type": "combo", - "default": "yes", - "geometry": "area", - "label": "Building" -} -``` - -##### `options` - -Combo field types can provide dropdown values in an `options` array. -The user can pick from any of the options, or type their own value. - -```js -{ - "key": "diaper", - "type": "combo", - "label": "Diaper Changing Available", - "options": ["yes", "no", "room", "1", "2", "3", "4", "5"] -} -``` - -##### `strings` - -Combo field types can accept name-value pairs in the `strings` property. -This is helpful when the field has a fixed number of options and you want to be -able to provide a translatable description of each option. When using `strings`, -the user can not type their own value, they must choose one of the given values. - -```js -{ - "key": "smoothness", - "type": "combo", - "label": "Smoothness", - "placeholder": "Thin Rollers, Wheels, Off-Road...", - "strings": { - "options": { - "excellent": "Thin Rollers: rollerblade, skateboard", - "good": "Thin Wheels: racing bike", - "intermediate": "Wheels: city bike, wheelchair, scooter", - "bad": "Robust Wheels: trekking bike, car, rickshaw", - "very_bad": "High Clearance: light duty off-road vehicle", - "horrible": "Off-Road: heavy duty off-road vehicle", - "very_horrible": "Specialized off-road: tractor, ATV", - "impassable": "Impassable / No wheeled vehicle" - } - } -} -``` - -If a combo field does not specify `options` or `strings`, the field will fetch -common tag values from the Taginfo service to use as dropdown values. - -##### `snake_case` - -For combo fields, spaces are replaced with underscores in the tag value if `snake_case` is `true`. The default is `true`. - -##### `caseSensitive` - -For combo fields, case-sensitive field values are allowed if `caseSensitive` is `true`. The default is `false`. - -##### `minValue` - -For number fields, the lowest valid value. There is no default. - -##### `maxValue` - -For number fields, the greatest valid value. There is no default. - -##### `increment` - -For number fields, the amount the stepper control increases or decreases the value. The default is `1`. - -##### `prerequisiteTag` - -An object defining the tags the feature needs before this field will be displayed. It may have this property: - -- `key`: The key for the required tag. - -And may optionally be combined with one of these properties: - -- `value`: The value that the key must have. -- `valueNot`: The value that the key must not have. - -Alternatively, the object may contain a single property: - -- `keyNot`: The key that must not be present. - -For example, this is how we show the Internet Access Fee field only if the feature has an `internet_access` tag not equal to `no`. - -```js -"prerequisiteTag": { - "key": "internet_access", - "valueNot": "no" -} -``` - -If a feature has a value for this field's `key` or `keys`, it will display regardless of the `prerequisiteTag` property. - -##### `countryCodes` - -An array of two-letter, lowercase [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country codes. The field will only be available for features in the specified, whitelisted countries. - -By default, fields are available everywhere. - -##### `notCountryCodes` - -An array of two-letter, lowercase [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country codes. Similar to `countryCodes` except a blocklist. - -##### `urlFormat` - -For `identifier` fields, the permalink URL of the external record. It must contain a `{value}` placeholder where the tag value will be inserted. For example: - -```js -"urlFormat": "https://geonames.usgs.gov/apex/f?p=gnispq:3:::NO::P3_FID:{value}" -``` - -##### `pattern` - -For `identifier` fields, the regular expression that valid values are expected to match to be linkable. - - -## Building - -To build presets, all you need to do is run `npm run build`. - -The following files are autogenerated and will be replaced when rebuilding: - -* `data/presets/categories.json` -* `data/presets/fields.json` -* `data/presets/presets.json` -* `data/presets.yaml` -* `data/taginfo.json` -* `dist/locales/en.json` - - -## Custom Presets - -iD supports deployments which use a custom set of presets. You can supply presets via -the `presets` accessor: - -```js -var id = iD.coreContext().presets({ - presets: { ... }, - fields: { ... }, - defaults: { ... }, - categories: { ... } -}); -``` - -All four parts (presets, fields, defaults, and categories) must be supplied. In addition, -several base presets and fields must be included. - -Basic geometric presets must be included so that every feature matches at least one preset. -For example: - -```js -"area": { - "name": "Area", - "tags": {}, - "geometry": ["area"], - "matchScore": 0.1 -}, -"line": { - "name": "Line", - "tags": {}, - "geometry": ["line"], - "matchScore": 0.1 -}, -"point": { - "name": "Point", - "tags": {}, - "geometry": ["point", "vertex"], - "matchScore": 0.1 -}, -"relation": { - "name": "Relation", - "tags": {}, - "geometry": ["relation"], - "matchScore": 0.1 -} -``` - -A "name" field must be included: - -```js -"name": { - "key": "name", - "type": "localized", - "label": "Name", - "placeholder": "Common name (if any)" -} -``` diff --git a/data/presets/categories.json b/data/presets/categories.json deleted file mode 100644 index d9005945b2..0000000000 --- a/data/presets/categories.json +++ /dev/null @@ -1 +0,0 @@ -{"category-barrier": {"icon": "maki-roadblock", "name": "Barrier Features", "members": ["barrier/fence", "barrier/wall", "barrier/ditch", "barrier/gate", "barrier/hedge", "barrier/kerb", "barrier"]}, "category-building": {"icon": "maki-building", "name": "Building Features", "members": ["building", "building/house", "building/apartments", "building/garage", "building/retail", "building/commercial", "building/industrial", "building/residential"]}, "category-golf": {"icon": "maki-golf", "name": "Golf Features", "members": ["golf/fairway", "golf/green", "golf/lateral_water_hazard", "golf/rough", "golf/bunker", "golf/tee", "golf/water_hazard", "golf/driving_range", "golf/hole", "golf/cartpath", "golf/path"]}, "category-landuse": {"icon": "maki-landuse", "name": "Land Use Features", "members": ["landuse/residential", "landuse/industrial", "landuse/commercial", "landuse/retail", "landuse/farmland", "landuse/farmyard", "landuse/forest", "landuse/meadow", "landuse/aquaculture", "landuse/cemetery", "landuse/military", "landuse/religious"]}, "category-natural": {"icon": "maki-natural", "name": "Natural Features", "members": ["natural/water", "natural/wood", "natural/scrub", "natural/wetland", "natural/grassland", "natural/heath", "natural/bare_rock", "natural/beach", "natural/cave_entrance", "natural/glacier", "natural/coastline", "natural/tree_row", "natural/peak", "natural/cliff"]}, "category-path": {"icon": "temaki-pedestrian", "name": "Paths", "members": ["highway/path", "highway/footway", "highway/footway/marked", "highway/footway/sidewalk", "highway/steps", "highway/cycleway", "highway/bridleway", "highway/pedestrian_line"]}, "category-rail": {"icon": "temaki-railway_track", "name": "Rails", "members": ["railway/rail", "railway/disused", "railway/tram", "railway/subway", "railway/narrow_gauge", "railway/light_rail", "railway/monorail", "railway/funicular"]}, "category-restriction": {"icon": "iD-restriction", "name": "Restriction Features", "members": ["type/restriction/no_left_turn", "type/restriction/no_right_turn", "type/restriction/no_straight_on", "type/restriction/no_u_turn", "type/restriction/only_left_turn", "type/restriction/only_right_turn", "type/restriction/only_straight_on", "type/restriction/only_u_turn", "type/restriction"]}, "category-road_major": {"icon": "iD-highway-unclassified", "name": "Major Roads", "members": ["highway/motorway", "highway/trunk", "highway/primary", "highway/secondary", "highway/tertiary", "highway/motorway_link", "highway/trunk_link", "highway/primary_link", "highway/secondary_link", "highway/tertiary_link"]}, "category-road_minor": {"icon": "iD-highway-unclassified", "name": "Minor Roads", "members": ["highway/unclassified", "highway/residential", "highway/living_street", "highway/service", "highway/track"]}, "category-road_service": {"icon": "iD-highway-service", "name": "Service Roads", "members": ["highway/service", "highway/service/parking_aisle", "highway/service/driveway", "highway/service/alley", "highway/service/emergency_access", "highway/service/drive-through"]}, "category-route": {"icon": "iD-route", "name": "Route Features", "members": ["type/route/road", "type/route/bicycle", "type/route/foot", "type/route/hiking", "type/route/horse", "type/route/piste", "type/route/bus", "type/route/train", "type/route/light_rail", "type/route/tram", "type/route/subway", "type/route/ferry", "type/route/power", "type/route/pipeline", "type/route/detour", "type/route_master", "type/route"]}, "category-utility": {"icon": "iD-power-line", "name": "Utility Features", "members": ["power/line", "power/minor_line", "man_made/pipeline", "power/cable/underground"]}, "category-water": {"icon": "maki-water", "name": "Water Bodies", "members": ["natural/water", "natural/water/pond", "natural/water/basin", "natural/water/lake", "natural/water/reservoir"]}, "category-waterway": {"icon": "iD-waterway-stream", "name": "Waterways", "members": ["waterway/stream", "waterway/drain", "waterway/river", "waterway/canal", "waterway/ditch", "natural/water/stream", "natural/water/river", "natural/water/canal"]}} \ No newline at end of file diff --git a/data/presets/categories/barrier.json b/data/presets/categories/barrier.json deleted file mode 100644 index 752db1d279..0000000000 --- a/data/presets/categories/barrier.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "maki-roadblock", - "name": "Barrier Features", - "members": [ - "barrier/fence", - "barrier/wall", - "barrier/ditch", - "barrier/gate", - "barrier/hedge", - "barrier/kerb", - "barrier" - ] -} diff --git a/data/presets/categories/building.json b/data/presets/categories/building.json deleted file mode 100644 index 0b020a2859..0000000000 --- a/data/presets/categories/building.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-building", - "name": "Building Features", - "members": [ - "building", - "building/house", - "building/apartments", - "building/garage", - "building/retail", - "building/commercial", - "building/industrial", - "building/residential" - ] -} diff --git a/data/presets/categories/golf.json b/data/presets/categories/golf.json deleted file mode 100644 index 4b3212fc33..0000000000 --- a/data/presets/categories/golf.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-golf", - "name": "Golf Features", - "members": [ - "golf/fairway", - "golf/green", - "golf/lateral_water_hazard", - "golf/rough", - "golf/bunker", - "golf/tee", - "golf/water_hazard", - "golf/driving_range", - "golf/hole", - "golf/cartpath", - "golf/path" - ] -} diff --git a/data/presets/categories/landuse.json b/data/presets/categories/landuse.json deleted file mode 100644 index e4e6ed9c58..0000000000 --- a/data/presets/categories/landuse.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-landuse", - "name": "Land Use Features", - "members": [ - "landuse/residential", - "landuse/industrial", - "landuse/commercial", - "landuse/retail", - "landuse/farmland", - "landuse/farmyard", - "landuse/forest", - "landuse/meadow", - "landuse/aquaculture", - "landuse/cemetery", - "landuse/military", - "landuse/religious" - ] -} diff --git a/data/presets/categories/natural.json b/data/presets/categories/natural.json deleted file mode 100644 index c7d2f27e05..0000000000 --- a/data/presets/categories/natural.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-natural", - "name": "Natural Features", - "members": [ - "natural/water", - "natural/wood", - "natural/scrub", - "natural/wetland", - "natural/grassland", - "natural/heath", - "natural/bare_rock", - "natural/beach", - "natural/cave_entrance", - "natural/glacier", - "natural/coastline", - "natural/tree_row", - "natural/peak", - "natural/cliff" - ] -} diff --git a/data/presets/categories/path.json b/data/presets/categories/path.json deleted file mode 100644 index d48958cde9..0000000000 --- a/data/presets/categories/path.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "name": "Paths", - "members": [ - "highway/path", - "highway/footway", - "highway/footway/marked", - "highway/footway/sidewalk", - "highway/steps", - "highway/cycleway", - "highway/bridleway", - "highway/pedestrian_line" - ] -} diff --git a/data/presets/categories/rail.json b/data/presets/categories/rail.json deleted file mode 100644 index 648edbd816..0000000000 --- a/data/presets/categories/rail.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-railway_track", - "name": "Rails", - "members": [ - "railway/rail", - "railway/disused", - "railway/tram", - "railway/subway", - "railway/narrow_gauge", - "railway/light_rail", - "railway/monorail", - "railway/funicular" - ] -} diff --git a/data/presets/categories/restriction.json b/data/presets/categories/restriction.json deleted file mode 100644 index 52d52f2f3f..0000000000 --- a/data/presets/categories/restriction.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-restriction", - "name": "Restriction Features", - "members": [ - "type/restriction/no_left_turn", - "type/restriction/no_right_turn", - "type/restriction/no_straight_on", - "type/restriction/no_u_turn", - "type/restriction/only_left_turn", - "type/restriction/only_right_turn", - "type/restriction/only_straight_on", - "type/restriction/only_u_turn", - "type/restriction" - ] -} diff --git a/data/presets/categories/road_major.json b/data/presets/categories/road_major.json deleted file mode 100644 index 0a0d912a11..0000000000 --- a/data/presets/categories/road_major.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "iD-highway-unclassified", - "name": "Major Roads", - "members": [ - "highway/motorway", - "highway/trunk", - "highway/primary", - "highway/secondary", - "highway/tertiary", - "highway/motorway_link", - "highway/trunk_link", - "highway/primary_link", - "highway/secondary_link", - "highway/tertiary_link" - ] -} diff --git a/data/presets/categories/road_minor.json b/data/presets/categories/road_minor.json deleted file mode 100644 index faf55f5957..0000000000 --- a/data/presets/categories/road_minor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "iD-highway-unclassified", - "name": "Minor Roads", - "members": [ - "highway/unclassified", - "highway/residential", - "highway/living_street", - "highway/service", - "highway/track" - ] -} diff --git a/data/presets/categories/road_service.json b/data/presets/categories/road_service.json deleted file mode 100644 index 6323454052..0000000000 --- a/data/presets/categories/road_service.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "iD-highway-service", - "name": "Service Roads", - "members": [ - "highway/service", - "highway/service/parking_aisle", - "highway/service/driveway", - "highway/service/alley", - "highway/service/emergency_access", - "highway/service/drive-through" - ] -} diff --git a/data/presets/categories/route.json b/data/presets/categories/route.json deleted file mode 100644 index 35a16337f0..0000000000 --- a/data/presets/categories/route.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "iD-route", - "name": "Route Features", - "members": [ - "type/route/road", - "type/route/bicycle", - "type/route/foot", - "type/route/hiking", - "type/route/horse", - "type/route/piste", - "type/route/bus", - "type/route/train", - "type/route/light_rail", - "type/route/tram", - "type/route/subway", - "type/route/ferry", - "type/route/power", - "type/route/pipeline", - "type/route/detour", - "type/route_master", - "type/route" - ] -} diff --git a/data/presets/categories/utility.json b/data/presets/categories/utility.json deleted file mode 100644 index 215e331fb4..0000000000 --- a/data/presets/categories/utility.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "icon": "iD-power-line", - "name": "Utility Features", - "members": [ - "power/line", - "power/minor_line", - "man_made/pipeline", - "power/cable/underground" - ] -} diff --git a/data/presets/categories/water.json b/data/presets/categories/water.json deleted file mode 100644 index dd125dda67..0000000000 --- a/data/presets/categories/water.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-water", - "name": "Water Bodies", - "members": [ - "natural/water", - "natural/water/pond", - "natural/water/basin", - "natural/water/lake", - "natural/water/reservoir" - ] -} diff --git a/data/presets/categories/waterway.json b/data/presets/categories/waterway.json deleted file mode 100644 index 0b531eb4d8..0000000000 --- a/data/presets/categories/waterway.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "iD-waterway-stream", - "name": "Waterways", - "members": [ - "waterway/stream", - "waterway/drain", - "waterway/river", - "waterway/canal", - "waterway/ditch", - "natural/water/stream", - "natural/water/river", - "natural/water/canal" - ] -} diff --git a/data/presets/defaults.json b/data/presets/defaults.json deleted file mode 100644 index 03842a6c72..0000000000 --- a/data/presets/defaults.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "area": [ - "category-landuse", - "category-building", - "category-water", - "category-natural", - "leisure/park", - "amenity/hospital", - "amenity/place_of_worship", - "amenity/cafe", - "amenity/restaurant", - "area" - ], - "line": [ - "category-road_major", - "category-road_minor", - "category-rail", - "category-path", - "category-waterway", - "category-barrier", - "category-natural", - "category-utility", - "line" - ], - "point": [ - "category-natural", - "leisure/park", - "amenity/hospital", - "amenity/place_of_worship", - "amenity/cafe", - "amenity/restaurant", - "amenity/fast_food", - "amenity/bar", - "amenity/bank", - "shop/supermarket", - "point" - ], - "vertex": [ - "highway/crossing/marked", - "highway/crossing/unmarked", - "railway/level_crossing", - "highway/traffic_signals", - "highway/turning_circle", - "highway/turning_loop", - "traffic_calming", - "highway/mini_roundabout", - "highway/motorway_junction", - "point" - ], - "relation": [ - "category-route", - "category-restriction", - "public_transport/stop_area", - "type/boundary", - "type/waterway", - "type/multipolygon", - "type/enforcement", - "type/site", - "relation" - ] -} diff --git a/data/presets/fields.json b/data/presets/fields.json deleted file mode 100644 index a485956907..0000000000 --- a/data/presets/fields.json +++ /dev/null @@ -1,522 +0,0 @@ -{ - "access_aisle": {"key": "access_aisle", "type": "combo", "label": "Type"}, - "access_simple": {"key": "access", "type": "combo", "label": "Allowed Access", "options": ["yes", "permissive", "private", "customers", "permit", "no"], "terms": ["permitted", "private", "public"]}, - "access": {"keys": ["access", "foot", "motor_vehicle", "bicycle", "horse"], "reference": {"key": "access"}, "type": "access", "label": "Allowed Access", "placeholder": "Not Specified", "strings": {"types": {"access": "All", "foot": "Foot", "motor_vehicle": "Motor Vehicles", "bicycle": "Bicycles", "horse": "Horses"}, "options": {"yes": {"title": "Allowed", "description": "Access allowed by law; a right of way"}, "no": {"title": "Prohibited", "description": "Access not allowed to the general public"}, "permissive": {"title": "Permissive", "description": "Access allowed until such time as the owner revokes the permission"}, "private": {"title": "Private", "description": "Access allowed only with permission of the owner on an individual basis"}, "designated": {"title": "Designated", "description": "Access allowed according to signs or specific local laws"}, "destination": {"title": "Destination", "description": "Access allowed only to reach a destination"}, "dismount": {"title": "Dismount", "description": "Access allowed but rider must dismount"}, "permit": {"title": "Permit", "description": "Access allowed only with a valid permit or license"}}}}, - "addr/interpolation": {"key": "addr:interpolation", "type": "combo", "label": "Type", "strings": {"options": {"all": "All", "even": "Even", "odd": "Odd", "alphabetic": "Alphabetic"}}}, - "address": {"type": "address", "key": "addr", "keys": ["addr:block_number", "addr:city", "addr:block_number", "addr:conscriptionnumber", "addr:county", "addr:country", "addr:county", "addr:district", "addr:floor", "addr:hamlet", "addr:housename", "addr:housenumber", "addr:neighbourhood", "addr:place", "addr:postcode", "addr:province", "addr:quarter", "addr:state", "addr:street", "addr:subdistrict", "addr:suburb", "addr:unit"], "icon": "address", "label": "Address", "strings": {"placeholders": {"block_number": "Block Number", "block_number!jp": "Block No.", "city": "City", "city!cn": "City/Prefecture/League", "city!jp": "City/Town/Village/Tokyo Special Ward", "city!vn": "City/Town", "conscriptionnumber": "123", "country": "Country", "county": "County", "county!jp": "District", "district": "District", "district!cn": "District/County/Banner", "district!vn": "Arrondissement/Town/District", "floor": "Floor", "hamlet": "Hamlet", "housename": "Housename", "housenumber": "123", "housenumber!jp": "Building No./Lot No.", "neighbourhood": "Neighbourhood", "neighbourhood!jp": "Chōme/Aza/Koaza", "place": "Place", "postcode": "Postcode", "province": "Province", "province!cn": "Province/Municipality/AR/SAR", "province!jp": "Prefecture", "quarter": "Quarter", "quarter!jp": "Ōaza/Machi", "state": "State", "street": "Street", "subdistrict": "Subdistrict", "subdistrict!vn": "Ward/Commune/Townlet", "suburb": "Suburb", "suburb!jp": "Ward", "unit": "Unit"}}, "terms": ["location"]}, - "admin_level": {"key": "admin_level", "type": "number", "minValue": 1, "label": "Admin Level"}, - "aerialway": {"key": "aerialway", "type": "typeCombo", "label": "Type"}, - "aerialway/access": {"key": "aerialway:access", "type": "combo", "label": "Access", "strings": {"options": {"entry": "Entry", "exit": "Exit", "both": "Both"}}}, - "aerialway/bubble": {"key": "aerialway:bubble", "type": "check", "label": "Bubble"}, - "aerialway/capacity": {"key": "aerialway:capacity", "type": "number", "minValue": 0, "label": "Capacity (per hour)", "placeholder": "500, 2500, 5000..."}, - "aerialway/duration": {"key": "aerialway:duration", "type": "number", "minValue": 0, "label": "Duration (minutes)", "placeholder": "1, 2, 3..."}, - "aerialway/heating": {"key": "aerialway:heating", "type": "check", "label": "Heated"}, - "aerialway/occupancy": {"key": "aerialway:occupancy", "type": "number", "minValue": 0, "label": "Occupancy", "placeholder": "2, 4, 8..."}, - "aerialway/summer/access": {"key": "aerialway:summer:access", "type": "combo", "label": "Access (summer)", "strings": {"options": {"entry": "Entry", "exit": "Exit", "both": "Both"}}}, - "aeroway": {"key": "aeroway", "type": "typeCombo", "label": "Type"}, - "agrarian": {"key": "agrarian", "type": "semiCombo", "label": "Products"}, - "air_conditioning": {"key": "air_conditioning", "type": "check", "label": "Air Conditioning", "terms": ["cooling system", "refrigeration"]}, - "amenity": {"key": "amenity", "type": "typeCombo", "label": "Type"}, - "animal_boarding": {"key": "animal_boarding", "type": "semiCombo", "label": "For Animals"}, - "animal_breeding": {"key": "animal_breeding", "type": "semiCombo", "label": "For Animals"}, - "animal_shelter": {"key": "animal_shelter", "type": "semiCombo", "label": "For Animals"}, - "architect": {"key": "architect", "type": "text", "label": "Architect", "terms": ["building designer"]}, - "area/highway": {"key": "area:highway", "type": "typeCombo", "label": "Type"}, - "artist": {"key": "artist_name", "type": "text", "label": "Artist"}, - "artwork_type": {"key": "artwork_type", "type": "combo", "label": "Type"}, - "ascent": {"key": "ascent", "minValue": 0, "type": "number", "label": "Total Ascent", "terms": ["ascent", "climb", "cumulative elevation gain"]}, - "atm": {"key": "atm", "type": "check", "label": "ATM"}, - "attraction": {"key": "attraction", "type": "typeCombo", "label": "Type"}, - "automated": {"key": "automated", "type": "check", "label": "Automated"}, - "baby_feeding": {"key": "baby_feeding", "type": "combo", "label": "Baby Nursing Area", "strings": {"options": {"room": "Dedicated Room", "yes": "Marked Space", "no": "None"}}, "terms": ["baby feeding", "breastfeeding", "lactation", "mothers", "nursing"]}, - "baby_seat": {"key": "baby", "type": "check", "label": "Baby Seat"}, - "backcountry": {"key": "backcountry", "type": "check", "label": "Backcountry"}, - "backrest": {"key": "backrest", "type": "check", "label": "Backrest"}, - "bar": {"key": "bar", "type": "check", "label": "Bar"}, - "barrier": {"key": "barrier", "type": "typeCombo", "label": "Type"}, - "basin": {"key": "basin", "type": "combo", "label": "Type"}, - "bath/open_air": {"key": "bath:open_air", "label": "Open Air", "type": "check"}, - "bath/sand_bath": {"key": "bath:sand_bath", "label": "Sand Bath", "type": "check"}, - "bath/type": {"key": "bath:type", "type": "combo", "label": "Specialty"}, - "beauty": {"key": "beauty", "type": "semiCombo", "label": "Services"}, - "bench": {"key": "bench", "type": "check", "label": "Bench", "terms": ["seating"]}, - "bicycle_parking": {"key": "bicycle_parking", "type": "combo", "label": "Type"}, - "bin": {"key": "bin", "type": "check", "label": "Waste Bin", "terms": ["garbage can", "trash can"]}, - "blind": {"key": "blind", "type": "radio", "strings": {"options": {"yes": "Yes", "limited": "Limited", "no": "No"}}, "label": "Blind Person Access", "terms": ["sight impairment", "vision impairment"]}, - "blood_components": {"key": "blood:", "type": "multiCombo", "label": "Blood Components", "strings": {"options": {"whole": "whole blood", "plasma": "plasma", "platelets": "platelets", "stemcells": "stem cell samples"}}}, - "board_type": {"key": "board_type", "type": "combo", "label": "Type"}, - "bollard": {"key": "bollard", "type": "combo", "label": "Type"}, - "booth": {"key": "booth", "type": "combo", "label": "Booth", "caseSensitive": true}, - "bottle": {"key": "bottle", "type": "check", "label": "Bottle Filling"}, - "boules": {"key": "boules", "type": "typeCombo", "label": "Type"}, - "boundary": {"key": "boundary", "type": "combo", "label": "Type"}, - "brand": {"key": "brand", "type": "text", "label": "Brand"}, - "brewery": {"key": "brewery", "type": "semiCombo", "label": "Draft Beers", "terms": ["on tap"]}, - "bridge_combo": {"key": "bridge", "type": "combo", "label": "Type"}, - "bridge": {"key": "bridge", "type": "typeCombo", "label": "Type", "usage": "group", "placeholder": "Default"}, - "bridge/support": {"key": "bridge:support", "type": "typeCombo", "label": "Type"}, - "building_area": {"key": "building", "type": "combo", "default": "yes", "geometry": ["area"], "label": "Building"}, - "building": {"key": "building", "type": "combo", "label": "Building", "terms": ["structure"]}, - "building/flats": {"key": "building:flats", "type": "number", "minValue": 0, "label": "Units", "placeholder": "2, 4, 6, 8..."}, - "building/levels_building": {"key": "building:levels", "type": "number", "minValue": 0, "label": "Building Levels", "placeholder": "2, 4, 6...", "prerequisiteTag": {"key": "building", "valueNot": "no"}}, - "building/levels": {"key": "building:levels", "type": "number", "minValue": 0, "label": "Levels", "placeholder": "2, 4, 6..."}, - "building/levels/underground": {"key": "building:levels:underground", "type": "number", "minValue": 0, "label": "Underground Levels", "placeholder": "2, 4, 6...", "terms": ["basement levels"]}, - "building/material": {"key": "building:material", "type": "combo", "label": "Material"}, - "bunker_type": {"key": "bunker_type", "type": "combo", "label": "Type"}, - "cables": {"key": "cables", "type": "number", "minValue": 1, "label": "Cables", "placeholder": "1, 2, 3..."}, - "camera/direction": {"key": "camera:direction", "type": "number", "label": "Direction (Degrees Clockwise)", "placeholder": "45, 90, 180, 270"}, - "camera/mount": {"key": "camera:mount", "type": "combo", "label": "Camera Mount"}, - "camera/type": {"key": "camera:type", "type": "combo", "label": "Camera Type", "strings": {"options": {"fixed": "Fixed", "panning": "Panning", "dome": "Dome"}}}, - "capacity_parking": {"key": "capacity", "type": "number", "minValue": 0, "label": "Total Spaces", "placeholder": "10, 20, 30..."}, - "capacity_volume": {"key": "capacity", "type": "number", "minValue": 0, "label": "Capacity (Cubic Meters)", "placeholder": "50, 100, 200..."}, - "capacity": {"key": "capacity", "type": "number", "minValue": 0, "label": "Capacity", "placeholder": "50, 100, 200..."}, - "capacity/disabled_parking": {"key": "capacity:disabled", "type": "number", "minValue": 0, "label": "Accessible Spaces", "placeholder": "1, 2, 3..."}, - "cash_in": {"key": "cash_in", "type": "check", "label": "Cash In"}, - "castle_type": {"key": "castle_type", "type": "combo", "label": "Type"}, - "changing_table": {"key": "changing_table", "type": "check", "label": "Diaper Changing Table"}, - "charge_fee": {"key": "charge", "type": "text", "label": "Fee Amount", "placeholder": "1 EUR, 5 USD, 10 JPY…", "prerequisiteTag": {"key": "fee", "valueNot": "no"}}, - "charge_toll": {"key": "charge", "type": "text", "label": "Toll Amount", "placeholder": "1 EUR, 5 USD, 10 JPY…", "prerequisiteTag": {"key": "toll", "valueNot": "no"}}, - "check_date": {"key": "check_date", "type": "text", "label": "Last Checked Date", "placeholder": "YYYY-MM-DD"}, - "circumference": {"key": "circumference", "type": "combo", "label": "Circumference", "snake_case": false, "placeholder": "1 m, 20 cm, 30 in…"}, - "clothes": {"key": "clothes", "type": "semiCombo", "label": "Clothes"}, - "club": {"key": "club", "type": "typeCombo", "label": "Type"}, - "collection_times": {"key": "collection_times", "type": "text", "label": "Collection Times"}, - "collector": {"key": "collector", "type": "semiCombo", "label": "Items"}, - "colour": {"key": "colour", "type": "text", "label": "Color"}, - "comment": {"key": "comment", "type": "textarea", "label": "Changeset Comment", "usage": "changeset", "placeholder": "Brief description of your contributions (required)"}, - "communication_multi": {"key": "communication:", "type": "multiCombo", "label": "Communication Types"}, - "connectivity": {"key": "connectivity", "type": "text", "label": "Connectivity"}, - "construction": {"key": "construction", "type": "combo", "label": "Type"}, - "consulate": {"key": "consulate", "type": "combo", "label": "Type"}, - "consulting": {"key": "consulting", "type": "semiCombo", "label": "Expertise"}, - "contact/webcam": {"key": "contact:webcam", "type": "url", "icon": "website", "label": "Webcam URL", "placeholder": "http://example.com/"}, - "content": {"key": "content", "type": "combo", "label": "Content", "options": ["silage", "water", "oil", "fuel", "slurry", "gas", "manure", "sewage"]}, - "conveying_escalator": {"key": "conveying", "type": "check", "label": "Escalator"}, - "conveying": {"key": "conveying", "type": "typeCombo", "label": "Movement Direction", "strings": {"options": {"forward": "Forward", "backward": "Backward", "reversible": "Reversible"}}}, - "country_flag": {"key": "country", "type": "combo", "label": "Flag Country", "prerequisiteTag": {"key": "flag:type", "value": "national"}}, - "country": {"key": "country", "type": "combo", "label": "Country"}, - "couplings": {"key": "couplings", "type": "number", "minValue": 1, "label": "Couplings", "placeholder": "1, 2, 3..."}, - "covered": {"key": "covered", "type": "check", "label": "Covered"}, - "craft": {"key": "craft", "type": "typeCombo", "label": "Type"}, - "crane/type": {"key": "crane:type", "type": "combo", "label": "Crane Type", "strings": {"options": {"portal_crane": "Portal Crane", "floor-mounted_crane": "Floor-mounted Crane", "travel_lift": "Travel Lift"}}}, - "crop": {"key": "crop", "type": "semiCombo", "label": "Crops"}, - "crossing": {"key": "crossing", "type": "combo", "label": "Type"}, - "crossing/island": {"key": "crossing:island", "type": "check", "label": "Refuge Island"}, - "cuisine": {"key": "cuisine", "type": "semiCombo", "label": "Cuisines", "terms": ["fare", "food types"]}, - "currency_multi": {"key": "currency:", "type": "multiCombo", "label": "Currency Types", "terms": ["bills", "cash", "coins", "money"]}, - "cutting": {"key": "cutting", "type": "typeCombo", "label": "Type", "usage": "group", "placeholder": "Default"}, - "cycle_network": {"key": "cycle_network", "type": "networkCombo", "label": "Network"}, - "cycleway": {"keys": ["cycleway", "cycleway:left", "cycleway:right"], "reference": {"key": "cycleway"}, "type": "cycleway", "label": "Bike Lanes", "placeholder": "none", "strings": {"types": {"cycleway:left": "Left side", "cycleway:right": "Right side"}, "options": {"none": {"title": "None", "description": "No bike lane"}, "lane": {"title": "Standard bike lane", "description": "A bike lane separated from auto traffic by a painted line"}, "shared_lane": {"title": "Shared bike lane", "description": "A bike lane with no separation from auto traffic"}, "track": {"title": "Bike track", "description": "A bike lane separated from traffic by a physical barrier"}, "share_busway": {"title": "Bike lane shared with bus", "description": "A bike lane shared with a bus lane"}, "opposite_lane": {"title": "Opposite bike lane", "description": "A bike lane that travels in the opposite direction of traffic"}, "opposite": {"title": "Contraflow bike lane", "description": "A bike lane that travels in both directions on a one-way street"}}}}, - "dance/style": {"key": "dance:style", "type": "semiCombo", "label": "Dance Styles"}, - "date": {"key": "date", "type": "check", "label": "Date"}, - "defibrillator/location": {"key": "defibrillator:location", "type": "textarea", "label": "Location Description"}, - "delivery": {"key": "delivery", "type": "check", "label": "Delivery"}, - "denomination": {"key": "denomination", "type": "combo", "label": "Denomination", "prerequisiteTag": {"key": "religion", "valueNot": "none"}}, - "denotation": {"key": "denotation", "type": "combo", "label": "Denotation"}, - "departures_board": {"key": "departures_board", "type": "combo", "label": "Departures Board", "strings": {"options": {"yes": "Yes", "timetable": "Timetable", "realtime": "Realtime", "no": "None"}}}, - "depth": {"key": "depth", "minValue": 0, "type": "number", "label": "Depth (Meters)"}, - "descent": {"key": "descent", "minValue": 0, "type": "number", "label": "Total Descent", "terms": ["descent", "cumulative elevation"]}, - "description": {"key": "description", "type": "textarea", "label": "Description", "universal": true, "terms": ["summary"]}, - "design": {"key": "design", "type": "combo", "label": "Design"}, - "destination_oneway": {"key": "destination", "type": "semiCombo", "label": "Destinations", "prerequisiteTag": {"key": "oneway", "value": "yes"}, "snake_case": false}, - "destination_waterway": {"key": "destination", "type": "text", "label": "Destination"}, - "destination": {"key": "destination", "type": "semiCombo", "label": "Destinations"}, - "destination/ref_oneway": {"key": "destination:ref", "type": "semiCombo", "label": "Destination Road Numbers", "prerequisiteTag": {"key": "oneway", "value": "yes"}, "snake_case": false}, - "destination/ref": {"key": "destination:ref", "type": "semiCombo", "label": "Destination Road Numbers", "snake_case": false}, - "destination/symbol_oneway": {"key": "destination:symbol", "type": "semiCombo", "label": "Destination Symbols", "prerequisiteTag": {"key": "oneway", "value": "yes"}}, - "destination/symbol": {"key": "destination:symbol", "type": "semiCombo", "label": "Destination Symbols"}, - "devices": {"key": "devices", "type": "number", "minValue": 0, "label": "Devices", "placeholder": "1, 2, 3..."}, - "diameter": {"key": "diameter", "type": "combo", "label": "Diameter", "snake_case": false, "placeholder": "5 mm, 10 cm, 15 in…"}, - "diet_multi": {"key": "diet:", "type": "multiCombo", "label": "Diet Types", "terms": ["gluten free", "fruitarian", "halal", "kosher", "lactose free", "meat", "pescatarian", "raw", "vegan", "vegetarian"]}, - "diplomatic": {"key": "diplomatic", "type": "combo", "label": "Type"}, - "diplomatic/services": {"key": "diplomatic:services:", "type": "multiCombo", "label": "Services"}, - "direction_clock": {"key": "direction", "type": "combo", "label": "Direction", "strings": {"options": {"clockwise": "Clockwise", "anticlockwise": "Counterclockwise"}}}, - "direction_point": {"key": "direction", "type": "number", "label": "Direction (Degrees Clockwise)", "placeholder": "45, 90, 180, 270", "increment": 5, "geometry": ["point"]}, - "direction_vertex_dual": {"key": "direction", "type": "combo", "label": "Direction Affected", "strings": {"options": {"forward": "Forward", "backward": "Backward"}}}, - "direction_vertex": {"key": "direction", "type": "combo", "label": "Direction Affected", "strings": {"options": {"forward": "Forward", "backward": "Backward", "both": "Both / All"}}}, - "direction": {"key": "direction", "type": "number", "label": "Direction (Degrees Clockwise)", "increment": 5, "placeholder": "45, 90, 180, 270"}, - "dispensing": {"key": "dispensing", "type": "check", "label": "Dispenses Prescriptions", "default": "yes"}, - "display": {"key": "display", "type": "combo", "label": "Display", "options": ["analog", "digital", "sundial", "unorthodox"]}, - "distance": {"key": "distance", "type": "text", "label": "Distance", "terms": ["length", "mileage"]}, - "disused/amenity": {"key": "disused:amenity", "type": "typeCombo", "label": "Type"}, - "disused/railway": {"key": "disused:railway", "type": "typeCombo", "label": "Type"}, - "disused/shop": {"key": "disused:shop", "type": "typeCombo", "label": "Type"}, - "dock": {"key": "dock", "type": "combo", "label": "Type"}, - "dog": {"key": "dog", "type": "combo", "label": "Dogs", "strings": {"options": {"yes": "Allowed", "leashed": "Leashed Only", "no": "Not Allowed"}}, "terms": ["animals", "pets"]}, - "door_type": {"key": "door", "type": "typeCombo", "label": "Type"}, - "door": {"key": "door", "type": "combo", "label": "Door"}, - "drink_multi": {"key": "drink:", "type": "multiCombo", "label": "Drinks"}, - "drinking_water": {"key": "drinking_water", "type": "check", "label": "Drinkable", "terms": ["drinkworthy", "potable"]}, - "drive_through": {"key": "drive_through", "type": "check", "label": "Drive-Through"}, - "duration": {"key": "duration", "type": "text", "label": "Duration", "placeholder": "00:00"}, - "ele_node": {"key": "ele", "type": "number", "icon": "elevation", "label": "Elevation", "universal": true, "geometry": ["point", "vertex"], "terms": ["altitude", "height"]}, - "ele": {"key": "ele", "type": "number", "icon": "elevation", "label": "Elevation", "geometry": ["line", "area", "relation"], "terms": ["altitude", "height"]}, - "electrified": {"key": "electrified", "type": "combo", "label": "Electrification", "placeholder": "Contact Line, Electrified Rail...", "strings": {"options": {"contact_line": "Contact Line", "rail": "Electrified Rail", "yes": "Yes (unspecified)", "no": "No"}}, "terms": ["contact line", "powered", "third rail"]}, - "email": {"key": "email", "type": "email", "placeholder": "example@example.com", "label": "Email"}, - "embankment": {"key": "embankment", "type": "typeCombo", "label": "Type", "usage": "group", "placeholder": "Default"}, - "embassy": {"key": "embassy", "type": "combo", "label": "Type"}, - "emergency_combo": {"key": "emergency", "type": "combo", "label": "Type"}, - "emergency_ward_entrance": {"key": "emergency_ward_entrance", "type": "combo", "label": "Type"}, - "emergency": {"key": "emergency", "type": "check", "label": "Emergency"}, - "enforcement": {"key": "enforcement", "type": "combo", "label": "Type"}, - "entrance": {"key": "entrance", "type": "typeCombo", "label": "Type"}, - "except": {"key": "except", "type": "combo", "label": "Exceptions"}, - "expected_rcn_route_relations": {"key": "expected_rcn_route_relations", "type": "number", "label": "Adjacent Cycling Nodes"}, - "expected_rwn_route_relations": {"key": "expected_rwn_route_relations", "type": "number", "label": "Adjacent Walking Nodes"}, - "faces": {"key": "faces", "type": "number", "minValue": 0, "label": "Faces"}, - "fax": {"key": "fax", "type": "tel", "label": "Fax", "placeholder": "+31 42 123 4567"}, - "fee": {"key": "fee", "type": "check", "label": "Fee"}, - "fence_type": {"key": "fence_type", "type": "combo", "label": "Type"}, - "fire_hydrant/diameter": {"key": "fire_hydrant:diameter", "type": "combo", "label": "Diameter (mm, in, or letters)", "snake_case": false}, - "fire_hydrant/pressure": {"key": "fire_hydrant:pressure", "type": "combo", "label": "Pressure (bar)", "snake_case": false}, - "fire_hydrant/type": {"key": "fire_hydrant:type", "type": "combo", "label": "Shape", "strings": {"options": {"pillar": "Pillar/Aboveground", "underground": "Underground", "wall": "Wall", "pipe": "Capped Pipe"}}}, - "fireplace": {"key": "fireplace", "type": "check", "label": "Fireplace"}, - "fishing": {"key": "fishing", "type": "combo", "label": "Fishing"}, - "fitness_station": {"key": "fitness_station", "type": "typeCombo", "label": "Equipment Type"}, - "fixme": {"key": "fixme", "type": "textarea", "label": "Fix Me", "universal": true, "terms": ["help request"]}, - "flag/type": {"key": "flag:type", "type": "combo", "label": "Flag Type"}, - "floating": {"key": "floating", "type": "check", "label": "Floating"}, - "flood_prone": {"key": "flood_prone", "type": "check", "label": "Flood Prone"}, - "ford": {"key": "ford", "type": "typeCombo", "label": "Type", "usage": "group", "placeholder": "Default"}, - "fountain": {"key": "fountain", "type": "combo", "label": "Type"}, - "frequency_electrified": {"key": "frequency", "type": "combo", "label": "Operating Frequency", "prerequisiteTag": {"key": "electrified", "valueNot": "no"}}, - "frequency": {"key": "frequency", "type": "combo", "label": "Operating Frequency"}, - "from": {"key": "from", "type": "text", "label": "From"}, - "fuel_multi": {"key": "fuel:", "type": "multiCombo", "label": "Fuel Types"}, - "fuel": {"key": "fuel", "type": "combo", "label": "Fuel"}, - "gambling": {"key": "gambling", "type": "semiCombo", "label": "Games"}, - "garden/type": {"key": "garden:type", "type": "combo", "label": "Garden Type"}, - "gauge": {"key": "gauge", "type": "combo", "label": "Gauge"}, - "gender": {"type": "radio", "keys": ["male", "female", "unisex"], "label": "Gender", "placeholder": "Unknown", "strings": {"options": {"male": "Male", "female": "Female", "unisex": "Unisex"}}, "terms": ["access", "female", "male", "unisex"]}, - "generator/method": {"key": "generator:method", "type": "combo", "label": "Method"}, - "generator/output/electricity": {"key": "generator:output:electricity", "type": "typeCombo", "label": "Power Output", "placeholder": "50 MW, 100 MW, 200 MW...", "snake_case": false}, - "generator/source": {"key": "generator:source", "type": "combo", "label": "Source"}, - "generator/type": {"key": "generator:type", "type": "combo", "label": "Type"}, - "geyser/height": {"key": "geyser:height", "type": "text", "label": "Eruption Height"}, - "gnis/feature_id": {"key": "gnis:feature_id", "type": "identifier", "label": "GNIS Feature ID", "urlFormat": "https://geonames.usgs.gov/apex/f?p=gnispq:3:::NO::P3_FID:{value}", "pattern": "^[0-9]{1,}$", "countryCodes": ["us"], "terms": ["Federal Geographic Names Information Service", "United States Board on Geographic Names", "USA"]}, - "government": {"key": "government", "type": "typeCombo", "label": "Type"}, - "grades": {"key": "grades", "type": "combo", "label": "Grade Levels", "snake_case": false}, - "grape_variety": {"key": "grape_variety", "type": "semiCombo", "label": "Grape Varieties"}, - "group_only": {"key": "group_only", "type": "check", "label": "Groups Only"}, - "guest_house": {"key": "guest_house", "type": "combo", "label": "Type"}, - "handicap": {"key": "handicap", "type": "number", "label": "Handicap", "placeholder": "1-18"}, - "handrail": {"key": "handrail", "type": "check", "label": "Handrail"}, - "hashtags": {"key": "hashtags", "type": "semiCombo", "label": "Hashtags", "usage": "changeset", "placeholder": "#example"}, - "healthcare": {"key": "healthcare", "type": "typeCombo", "label": "Type"}, - "healthcare/speciality": {"key": "healthcare:speciality", "type": "semiCombo", "reference": {"key": "healthcare"}, "label": "Specialties"}, - "heating": {"key": "heating", "type": "check", "label": "Heating"}, - "height_building": {"key": "height", "minValue": 0, "type": "number", "label": "Building Height (Meters)", "prerequisiteTag": {"key": "building", "valueNot": "no"}}, - "height": {"key": "height", "minValue": 0, "type": "number", "label": "Height (Meters)"}, - "highspeed": {"key": "highspeed", "type": "check", "label": "High-Speed"}, - "highway": {"key": "highway", "type": "typeCombo", "label": "Type"}, - "historic": {"key": "historic", "type": "typeCombo", "label": "Type"}, - "historic/civilization": {"key": "historic:civilization", "type": "combo", "label": "Historic Civilization"}, - "historic/wreck/date_sunk": {"key": "wreck:date_sunk", "type": "text", "label": "Date Sunk"}, - "historic/wreck/visible_at_high_tide": {"key": "wreck:visible_at_high_tide", "type": "check", "label": "Visible At High Tide"}, - "historic/wreck/visible_at_low_tide": {"key": "wreck:visible_at_low_tide", "type": "check", "label": "Visible At Low Tide"}, - "hoops": {"key": "hoops", "type": "number", "minValue": 0, "label": "Hoops", "placeholder": "1, 2, 4..."}, - "horse_dressage": {"key": "sport", "type": "check", "label": "Dressage Riding", "strings": {"options": {"undefined": "No", "equestrian": "Yes"}}, "reference": {"key": "sport", "value": "equestrian"}}, - "horse_riding": {"key": "leisure", "type": "check", "label": "Horseback Riding", "strings": {"options": {"undefined": "No", "horse_riding": "Yes"}}, "reference": {"key": "leisure", "value": "horse_riding"}}, - "horse_scale": {"key": "horse_scale", "type": "combo", "label": "Horseback Riding Difficulty", "placeholder": "Difficult, Dangerous...", "strings": {"options": {"common": "Easy: No problems or difficulties. (default)", "demanding": "Use with caution: Uneven way, occasional difficult passages.", "difficult": "Difficult: Way narrow and exposed. May contain obstacles to step over and narrow passages.", "critical": "Borderline: Passable only for experienced riders and horses. Major obstacles. Bridges should be examined carefully.", "dangerous": "Dangerous: Passable only for very experienced riders and horses and only in good weather. Dismount.", "impossible": "Impassable: Way or bridge not passable for horses. Too narrow, insuffient support, obstacles like ladders. Danger of life."}}}, - "horse_stables": {"key": "amenity", "type": "check", "label": "Riding Stable", "strings": {"options": {"undefined": "No", "stables": "Yes"}}, "reference": {"key": "amenity", "value": "stables"}}, - "hot_water": {"key": "hot_water", "type": "check", "label": "Hot Water"}, - "iata": {"key": "iata", "type": "text", "label": "IATA Airport Code"}, - "icao": {"key": "icao", "type": "text", "label": "ICAO Airport Code"}, - "image": {"key": "image", "type": "url", "label": "Image", "placeholder": "https://example.com/photo.jpg", "universal": true, "terms": ["icon", "image uri", "photo", "picture"]}, - "incline_steps": {"key": "incline", "type": "combo", "label": "Incline", "strings": {"options": {"up": "Up", "down": "Down"}}}, - "incline": {"key": "incline", "type": "combo", "label": "Incline"}, - "indoor_type": {"key": "indoor", "type": "typeCombo", "label": "Type"}, - "indoor": {"key": "indoor", "type": "check", "label": "Indoor"}, - "industrial": {"key": "industrial", "type": "combo", "label": "Type"}, - "informal": {"key": "informal", "type": "check", "label": "Informal"}, - "information": {"key": "information", "type": "typeCombo", "label": "Type"}, - "inscription": {"key": "inscription", "type": "textarea", "label": "Inscription"}, - "intermittent_yes": {"key": "intermittent", "type": "check", "label": "Intermittent", "default": "yes"}, - "intermittent": {"key": "intermittent", "type": "check", "label": "Intermittent"}, - "internet_access": {"key": "internet_access", "type": "combo", "label": "Internet Connection", "strings": {"options": {"yes": "Yes", "no": "No", "wlan": "Wifi", "wired": "Wired", "terminal": "Terminal"}}, "terms": ["wifi", "wlan"]}, - "internet_access/fee": {"key": "internet_access:fee", "type": "combo", "label": "Internet Access", "strings": {"options": {"no": "Free", "yes": "Paid", "customers": "Customers Only"}}, "prerequisiteTag": {"key": "internet_access", "valueNot": "no"}, "terms": ["wifi fee"]}, - "internet_access/ssid": {"key": "internet_access:ssid", "type": "text", "label": "Wifi Network Name", "prerequisiteTag": {"key": "internet_access", "valueNot": "no"}, "terms": ["ssid"]}, - "interval": {"key": "interval", "type": "text", "label": "Interval"}, - "junction_line": {"key": "junction", "type": "combo", "label": "Junction", "strings": {"options": {"roundabout": "Roundabout", "circular": "Traffic Circle", "jughandle": "Jughandle"}}}, - "junction/ref_oneway": {"key": "junction:ref", "type": "text", "label": "Junction Number", "prerequisiteTag": {"key": "oneway", "value": "yes"}}, - "kerb": {"key": "kerb", "type": "combo", "label": "Curb"}, - "kerb/height": {"key": "kerb:height", "type": "combo", "snake_case": false, "label": "Height"}, - "kneipp_water_cure_multi": {"key": "kneipp_water_cure:", "type": "multiCombo", "label": "Basin Types"}, - "label": {"key": "label", "type": "textarea", "label": "Label"}, - "lamp_mount": {"key": "lamp_mount", "type": "combo", "label": "Mount"}, - "lamp_type": {"key": "lamp_type", "type": "combo", "label": "Type"}, - "landuse": {"key": "landuse", "type": "typeCombo", "label": "Type"}, - "lanes": {"key": "lanes", "type": "number", "minValue": 0, "label": "Lanes", "placeholder": "1, 2, 3..."}, - "language_multi": {"key": "language:", "type": "multiCombo", "label": "Languages"}, - "layer": {"key": "layer", "type": "number", "label": "Layer", "placeholder": "0"}, - "leaf_cycle_singular": {"key": "leaf_cycle", "type": "combo", "label": "Leaf Cycle", "strings": {"options": {"evergreen": "Evergreen", "deciduous": "Deciduous", "semi_evergreen": "Semi-Evergreen", "semi_deciduous": "Semi-Deciduous"}}}, - "leaf_cycle": {"key": "leaf_cycle", "type": "combo", "label": "Leaf Cycle", "strings": {"options": {"evergreen": "Evergreen", "deciduous": "Deciduous", "semi_evergreen": "Semi-Evergreen", "semi_deciduous": "Semi-Deciduous", "mixed": "Mixed"}}}, - "leaf_type_singular": {"key": "leaf_type", "type": "combo", "label": "Leaf Type", "strings": {"options": {"broadleaved": "Broadleaved", "needleleaved": "Needleleaved", "leafless": "Leafless"}}}, - "leaf_type": {"key": "leaf_type", "type": "combo", "label": "Leaf Type", "strings": {"options": {"broadleaved": "Broadleaved", "needleleaved": "Needleleaved", "mixed": "Mixed", "leafless": "Leafless"}}}, - "leisure": {"key": "leisure", "type": "typeCombo", "label": "Type"}, - "length": {"key": "length", "type": "number", "minValue": 0, "label": "Length (Meters)"}, - "level_semi": {"key": "level", "type": "semiCombo", "label": "Levels", "terms": ["building floors", "decks", "stories", "storeys", "storys"]}, - "level": {"key": "level", "type": "combo", "label": "Level", "terms": ["building floor", "deck", "storey", "story"], "prerequisiteTag": {"keyNot": "building"}}, - "liaison": {"key": "liaison", "type": "combo", "label": "Type"}, - "line_attachment": {"key": "line_attachment", "type": "combo", "label": "Line Attachment"}, - "line_management": {"key": "line_management", "type": "combo", "label": "Line Management", "terms": ["branching", "line topology", "termination"]}, - "lit": {"key": "lit", "type": "check", "label": "Lit", "terms": ["lamp", "lighting"]}, - "location_pool": {"key": "location", "type": "typeCombo", "label": "Location", "strings": {"options": {"outdoor": "Outdoor", "indoor": "Indoor", "roof": "Rooftop"}}}, - "location": {"key": "location", "type": "combo", "label": "Location"}, - "lock": {"key": "lock", "type": "check", "label": "Lock"}, - "lockable": {"key": "lockable", "type": "check", "label": "Lockable"}, - "man_made": {"key": "man_made", "type": "typeCombo", "label": "Type"}, - "manhole": {"key": "manhole", "type": "typeCombo", "label": "Type"}, - "manufacturer": {"key": "manufacturer", "type": "combo", "snake_case": false, "caseSensitive": true, "label": "Manufacturer"}, - "map_size": {"key": "map_size", "type": "typeCombo", "label": "Coverage"}, - "map_type": {"key": "map_type", "type": "typeCombo", "label": "Type"}, - "mapillary": {"key": "mapillary", "type": "identifier", "label": "Mapillary Image ID", "urlFormat": "https://mapillary.com/app/?focus=photo&pKey={value}", "pattern": "^[a-zA-Z0-9-_]{1,}$", "universal": true}, - "marker": {"key": "marker", "type": "typeCombo", "label": "Type"}, - "material": {"key": "material", "type": "combo", "label": "Material"}, - "max_age": {"key": "max_age", "type": "number", "minValue": 0, "label": "Maximum Age", "terms": ["upper age limit"]}, - "maxheight": {"key": "maxheight", "type": "combo", "label": "Max Height", "placeholder": "4, 4.5, 5, 14'0\", 14'6\", 15'0\"", "snake_case": false}, - "maxspeed": {"key": "maxspeed", "type": "maxspeed", "label": "Speed Limit", "placeholder": "40, 50, 60..."}, - "maxspeed/advisory": {"key": "maxspeed:advisory", "type": "maxspeed", "label": "Advisory Speed Limit", "placeholder": "40, 50, 60..."}, - "maxstay": {"key": "maxstay", "type": "combo", "label": "Max Stay", "options": ["15 min", "30 min", "45 min", "1 hr", "1.5 hr", "2 hr", "2.5 hr", "3 hr", "4 hr", "1 day", "2 day"], "snake_case": false}, - "maxweight_bridge": {"key": "maxweight", "type": "combo", "label": "Max Weight", "snake_case": false, "prerequisiteTag": {"key": "bridge", "valueNot": "no"}}, - "maxweight": {"key": "maxweight", "type": "combo", "label": "Max Weight", "snake_case": false}, - "memorial": {"key": "memorial", "type": "combo", "label": "Type"}, - "microbrewery": {"key": "microbrewery", "type": "check", "label": "Microbrewery", "terms": ["brewpub", "craft beer"]}, - "mimics": {"key": "mimics", "type": "combo", "label": "Mimics", "terms": ["camoflauged", "disguised", "looks like", "tree"]}, - "min_age": {"key": "min_age", "type": "number", "minValue": 0, "label": "Minimum Age", "terms": ["lower age limit"]}, - "minspeed": {"key": "minspeed", "type": "maxspeed", "label": "Minimum Speed Limit", "placeholder": "20, 30, 40..."}, - "monitoring_multi": {"key": "monitoring:", "type": "multiCombo", "label": "Monitoring"}, - "mtb/scale": {"key": "mtb:scale", "type": "combo", "label": "Mountain Biking Difficulty", "placeholder": "0, 1, 2, 3...", "strings": {"options": {"0": "0: Solid gravel/packed earth, no obstacles, wide curves", "1": "1: Some loose surface, small obstacles, wide curves", "2": "2: Much loose surface, large obstacles, easy hairpins", "3": "3: Slippery surface, large obstacles, tight hairpins", "4": "4: Loose surface or boulders, dangerous hairpins", "5": "5: Maximum difficulty, boulder fields, landslides", "6": "6: Not rideable except by the very best mountain bikers"}}}, - "mtb/scale/imba": {"key": "mtb:scale:imba", "type": "combo", "label": "IMBA Trail Difficulty", "placeholder": "Easy, Medium, Difficult...", "strings": {"options": {"0": "Easiest (white circle)", "1": "Easy (green circle)", "2": "Medium (blue square)", "3": "Difficult (black diamond)", "4": "Extremely Difficult (double black diamond)"}}}, - "mtb/scale/uphill": {"key": "mtb:scale:uphill", "type": "combo", "label": "Mountain Biking Uphill Difficulty", "placeholder": "0, 1, 2, 3...", "strings": {"options": {"0": "0: Avg. incline <10%, gravel/packed earth, no obstacles", "1": "1: Avg. incline <15%, gravel/packed earth, few small objects", "2": "2: Avg. incline <20%, stable surface, fistsize rocks/roots", "3": "3: Avg. incline <25%, variable surface, fistsize rocks/branches", "4": "4: Avg. incline <30%, poor condition, big rocks/branches", "5": "5: Very steep, bike generally needs to be pushed or carried"}}}, - "museum": {"key": "museum", "type": "combo", "label": "Type"}, - "name": {"key": "name", "type": "localized", "label": "Name", "universal": true, "placeholder": "Common name (if any)", "terms": ["label", "title"]}, - "natural": {"key": "natural", "type": "typeCombo", "label": "Natural"}, - "network_bicycle": {"key": "network", "type": "combo", "label": "Network Class", "placeholder": "Local, Regional, National, International", "strings": {"options": {"lcn": "Local", "rcn": "Regional", "ncn": "National", "icn": "International"}}}, - "network_foot": {"key": "network", "type": "combo", "label": "Network Class", "placeholder": "Local, Regional, National, International", "strings": {"options": {"lwn": "Local", "rwn": "Regional", "nwn": "National", "iwn": "International"}}}, - "network_horse": {"key": "network", "type": "combo", "label": "Network Class", "placeholder": "Local, Regional, National, International", "strings": {"options": {"lhn": "Local", "rhn": "Regional", "nhn": "National", "ihn": "International"}}}, - "network_road": {"key": "network", "type": "networkCombo", "label": "Network"}, - "network": {"key": "network", "type": "text", "label": "Network"}, - "network/type": {"key": "network:type", "type": "combo", "label": "Network Type", "prerequisiteTag": {"key": "network"}}, - "not/name": {"key": "not:name", "type": "semiCombo", "label": "Incorrect Names", "terms": ["common mistake names", "wrong names"]}, - "note": {"key": "note", "type": "textarea", "universal": true, "icon": "note", "label": "Note", "terms": ["comment"]}, - "office": {"key": "office", "type": "typeCombo", "label": "Type"}, - "oneway_yes": {"key": "oneway", "type": "onewayCheck", "label": "One Way", "strings": {"options": {"undefined": "Assumed to be Yes", "yes": "Yes", "no": "No", "reversible": "Reversible", "alternating": "Alternating"}}}, - "oneway": {"key": "oneway", "type": "onewayCheck", "label": "One Way", "strings": {"options": {"undefined": "Assumed to be No", "yes": "Yes", "no": "No", "reversible": "Reversible", "alternating": "Alternating"}}, "terms": ["bidirectional", "oneway", "unidirectional"]}, - "oneway/bicycle": {"key": "oneway:bicycle", "type": "check", "label": "One Way (Bicycles)", "prerequisiteTag": {"key": "oneway"}}, - "openfire": {"key": "openfire", "type": "check", "label": "Open Fires Allowed"}, - "opening_date": {"key": "opening_date", "type": "text", "label": "Expected Opening Date", "placeholder": "YYYY-MM-DD"}, - "opening_hours": {"key": "opening_hours", "type": "combo", "label": "Hours", "placeholder": "Unknown", "snake_case": false}, - "opening_hours/covid19": {"key": "opening_hours:covid19", "type": "combo", "label": "COVID-19 Pandemic Hours", "terms": ["coronavirus", "lockdown", "opening hours", "SARS‑CoV‑2"], "snake_case": false}, - "operator": {"key": "operator", "type": "text", "label": "Operator"}, - "operator/type": {"key": "operator:type", "type": "combo", "label": "Operator Type", "prerequisiteTag": {"key": "operator"}}, - "organic": {"key": "organic", "type": "combo", "label": "Organic Products", "strings": {"options": {"no": "None", "yes": "Some", "only": "Only"}}, "terms": ["natural", "non-gmo"]}, - "outdoor_seating": {"key": "outdoor_seating", "type": "check", "label": "Outdoor Seating"}, - "par": {"key": "par", "type": "number", "minValue": 1, "label": "Par", "placeholder": "3, 4, 5..."}, - "park_ride": {"key": "park_ride", "type": "check", "label": "Park and Ride"}, - "parking_entrance": {"key": "parking", "type": "combo", "label": "Type", "strings": {"options": {"underground": "Underground", "multi-storey": "Multilevel"}}}, - "parking_space": {"key": "parking_space", "type": "combo", "label": "Type"}, - "parking": {"key": "parking", "type": "combo", "label": "Type", "strings": {"options": {"surface": "Surface", "underground": "Underground", "multi-storey": "Multilevel", "lane": "Roadside Lane", "carports": "Carports", "garage_boxes": "Garage Boxes", "rooftop": "Rooftop", "sheds": "Sheds"}}}, - "payment_multi_fee": {"key": "payment:", "type": "multiCombo", "label": "Payment Types", "prerequisiteTag": {"key": "fee", "valueNot": "no"}}, - "payment_multi": {"key": "payment:", "type": "multiCombo", "label": "Payment Types"}, - "phases": {"key": "phases", "type": "number", "minValue": 1, "label": "Phases", "placeholder": "1, 2, 3..."}, - "phone": {"key": "phone", "type": "tel", "icon": "maki-telephone", "label": "Telephone", "placeholder": "+31 42 123 4567", "terms": ["phone number"]}, - "piste/difficulty_downhill": {"key": "piste:difficulty", "type": "combo", "label": "Difficulty", "placeholder": "Easy, Intermediate, Advanced...", "strings": {"options": {"novice": "Novice (instructional)", "easy": "Easy (green circle)", "intermediate": "Intermediate (blue square)", "advanced": "Advanced (black diamond)", "expert": "Expert (double black diamond)", "freeride": "Freeride (off-piste)", "extreme": "Extreme (climbing equipment required)"}}}, - "piste/difficulty_nordic": {"key": "piste:difficulty", "type": "combo", "label": "Difficulty", "placeholder": "Easy, Intermediate, Advanced...", "strings": {"options": {"novice": "Novice - Flat, no effort needed", "easy": "Easy - Soft hills, short steep section", "intermediate": "Intermediate - Steep section", "advanced": "Advanced - Narrow, steep or icy section, sharp turn", "expert": "Expert - Dangerous terrain around"}}}, - "piste/difficulty_skitour": {"key": "piste:difficulty", "type": "combo", "label": "Difficulty", "placeholder": "Easy, Intermediate, Advanced...", "strings": {"options": {"novice": "Novice - L: <30° incline", "easy": "Easy - WS: 30-35° incline", "intermediate": "Intermediate - ZS: 35-40° incline", "advanced": "Advanced - S: 40-45° incline", "expert": "Expert - SS: 45–50° incline", "freeride": "Freeride - AS: 50–55° incline", "extreme": "Extreme - EX: >55° incline"}}}, - "piste/difficulty": {"key": "piste:difficulty", "type": "combo", "label": "Difficulty", "placeholder": "Easy, Intermediate, Advanced...", "strings": {"options": {"novice": "Novice", "easy": "Easy", "intermediate": "Intermediate", "advanced": "Advanced", "expert": "Expert", "freeride": "Freeride", "extreme": "Extreme"}}}, - "piste/grooming_downhill": {"key": "piste:grooming", "type": "combo", "label": "Grooming", "strings": {"options": {"classic": "Classic", "mogul": "Mogul", "backcountry": "Backcountry - no grooming"}}}, - "piste/grooming_hike": {"key": "piste:grooming", "type": "combo", "label": "Grooming", "strings": {"options": {"classic": "Classic - Winter Hiking", "backcountry": "Backcountry - Snowshoeing"}}}, - "piste/grooming_nordic": {"key": "piste:grooming", "type": "combo", "label": "Grooming", "strings": {"options": {"classic": "Classic", "backcountry": "Backcountry, no grooming", "classic+skating": "Classic and Skating", "scooter": "Scooter/Snowmobile", "skating": "Skating"}}}, - "piste/grooming": {"key": "piste:grooming", "type": "combo", "label": "Grooming", "strings": {"options": {"classic": "Classic", "mogul": "Mogul", "backcountry": "Backcountry", "classic+skating": "Classic and Skating", "scooter": "Scooter/Snowmobile", "skating": "Skating"}}}, - "piste/type": {"key": "piste:type", "type": "typeCombo", "label": "Type", "strings": {"options": {"downhill": "Downhill", "nordic": "Nordic", "skitour": "Skitour", "sled": "Sled", "hike": "Hike", "sleigh": "Sleigh", "ice_skate": "Ice Skate", "snow_park": "Snow Park", "playground": "Playground", "connection": "Connection"}}}, - "place": {"key": "place", "type": "typeCombo", "label": "Type"}, - "plant": {"key": "plant", "type": "combo", "label": "Plant"}, - "plant/method": {"key": "plant:method", "type": "combo", "label": "Generation Method"}, - "plant/output/electricity": {"key": "plant:output:electricity", "type": "typeCombo", "label": "Power Output", "placeholder": "500 MW, 1000 MW, 2000 MW...", "snake_case": false}, - "plant/source": {"key": "plant:source", "type": "combo", "label": "Energy Source"}, - "playground": {"key": "playground", "type": "combo", "label": "Type"}, - "playground/theme": {"key": "playground:theme", "type": "combo", "label": "Theme"}, - "plots": {"key": "plots", "type": "number", "minValue": 0, "label": "Plots", "placeholder": "10, 20, 30..."}, - "polling_station": {"key": "polling_station", "type": "check", "label": "Polling Place", "terms": ["voting place"]}, - "population": {"key": "population", "type": "text", "label": "Population"}, - "portable": {"key": "portable", "type": "check", "label": "Portable", "terms": ["detached", "mobile", "moveable"]}, - "post": {"type": "address", "key": "post", "keys": ["post:block_number", "post:city", "post:block_number", "post:conscriptionnumber", "post:county", "post:country", "post:county", "post:district", "post:floor", "post:hamlet", "post:housename", "post:housenumber", "post:neighbourhood", "post:place", "post:postcode", "post:province", "post:quarter", "post:state", "post:street", "post:subdistrict", "post:suburb", "post:unit"], "label": "Delivery Address"}, - "power_supply": {"key": "power_supply", "type": "check", "label": "Power Supply"}, - "power": {"key": "power", "type": "typeCombo", "label": "Type"}, - "preschool": {"key": "preschool", "type": "check", "label": "Preschool"}, - "produce": {"key": "produce", "type": "semiCombo", "label": "Produce"}, - "product": {"key": "product", "type": "semiCombo", "label": "Products"}, - "public_bookcase/type": {"key": "public_bookcase:type", "type": "combo", "label": "Type"}, - "pump": {"key": "pump", "type": "combo", "label": "Pump", "strings": {"options": {"yes": "Yes", "manual": "Manual Hand Pump", "powered": "Machine-Powered Pump", "no": "None"}}}, - "railway": {"key": "railway", "type": "typeCombo", "label": "Type"}, - "railway/position": {"key": "railway:position", "type": "text", "placeholder": "Distance to one decimal (123.4)", "label": "Milestone Position"}, - "railway/signal/direction": {"key": "railway:signal:direction", "type": "combo", "label": "Direction Affected", "strings": {"options": {"forward": "Forward", "backward": "Backward", "both": "Both / All"}}}, - "ramp": {"key": "ramp", "type": "check", "label": "Embedded Ramp"}, - "rating": {"key": "rating", "type": "combo", "label": "Power Rating", "snake_case": false}, - "rcn_ref": {"key": "rcn_ref", "type": "text", "label": "Cycling Code"}, - "real_fire": {"countryCodes": ["gb", "ie"], "key": "real_fire", "type": "check", "label": "Real Fire", "terms": ["fire place", "fire"]}, - "recycling_accepts": {"key": "recycling:", "type": "multiCombo", "label": "Accepts"}, - "recycling_type": {"key": "recycling_type", "type": "combo", "label": "Type", "placeholder": "Container, Center", "strings": {"options": {"container": "Container", "centre": "Center"}}}, - "ref_aeroway_gate": {"key": "ref", "type": "text", "label": "Gate Number"}, - "ref_golf_hole": {"key": "ref", "type": "text", "label": "Hole Number", "placeholder": "1-18"}, - "ref_highway_junction": {"key": "ref", "type": "text", "label": "Junction Number"}, - "ref_platform": {"key": "ref", "type": "text", "label": "Platform Number"}, - "ref_road_number": {"key": "ref", "type": "text", "label": "Road Number"}, - "ref_room_number": {"key": "ref", "type": "text", "label": "Room Number"}, - "ref_route": {"key": "ref", "type": "text", "label": "Route Number"}, - "ref_runway": {"key": "ref", "type": "text", "label": "Runway Number", "placeholder": "e.g. 01L/19R"}, - "ref_stop_position": {"key": "ref", "type": "text", "label": "Stop Number"}, - "ref_taxiway": {"key": "ref", "type": "text", "label": "Taxiway Name", "placeholder": "e.g. A5"}, - "ref": {"key": "ref", "type": "text", "label": "Reference Code"}, - "ref/isil": {"key": "ref:isil", "type": "text", "label": "ISIL Code"}, - "ref/vatin": {"key": "ref:vatin", "type": "identifier", "label": "VAT ID Number", "notCountryCodes": ["ao", "ai", "bm", "bt", "io", "vg", "bn", "ky", "km", "cu", "dj", "er", "fk", "gi", "gg", "hk", "iq", "ki", "xk", "kw", "lr", "ly", "mo", "mv", "mh", "fm", "ms", "mm", "nr", "kp", "om", "pw", "pn", "qa", "sh", "sm", "st", "sb", "so", "gs", "ss", "sr", "sz", "sy", "tl", "tc", "tv", "us", "va", "ye"], "terms": ["value added tax identification number", "vatin"]}, - "relation": {"key": "type", "type": "combo", "label": "Type"}, - "religion": {"key": "religion", "type": "combo", "label": "Religion"}, - "reservation": {"key": "reservation", "type": "combo", "label": "Reservations", "strings": {"options": {"yes": "Accepted", "no": "Not Accepted", "required": "Required", "recommended": "Recommended"}}}, - "residential": {"key": "residential", "type": "combo", "label": "Type"}, - "resort": {"key": "resort", "type": "combo", "label": "Type"}, - "resource": {"key": "resource", "type": "semiCombo", "label": "Resources"}, - "restriction": {"key": "restriction", "type": "combo", "label": "Type"}, - "restrictions": {"type": "restrictions", "geometry": ["vertex"], "icon": "iD-restrictions", "usage": "manual", "reference": {"rtype": "restriction"}, "label": "Turn Restrictions"}, - "roof/colour": {"key": "roof:colour", "type": "combo", "label": "Roof Color"}, - "room": {"key": "room", "type": "combo", "label": "Type"}, - "rooms": {"key": "rooms", "type": "number", "minValue": 0, "label": "Rooms"}, - "roundtrip": {"key": "roundtrip", "type": "check", "label": "Forms Loop", "terms": ["circular", "closed", "looping", "roundtrip"]}, - "route_master": {"key": "route_master", "type": "combo", "label": "Type"}, - "route": {"key": "route", "type": "combo", "label": "Type"}, - "ruins": {"key": "ruins", "type": "combo", "label": "Type"}, - "rwn_ref": {"key": "rwn_ref", "type": "text", "label": "Walking Code"}, - "sac_scale": {"key": "sac_scale", "type": "combo", "label": "Hiking Difficulty", "placeholder": "Mountain Hiking, Alpine Hiking...", "strings": {"options": {"hiking": "T1: Hiking", "mountain_hiking": "T2: Mountain Hiking", "demanding_mountain_hiking": "T3: Demanding Mountain Hiking", "alpine_hiking": "T4: Alpine Hiking", "demanding_alpine_hiking": "T5: Demanding Alpine Hiking", "difficult_alpine_hiking": "T6: Difficult Alpine Hiking"}}}, - "salt": {"key": "salt", "type": "check", "label": "Salt", "terms": ["saline", "salinated"]}, - "sanitary_dump_station": {"key": "sanitary_dump_station", "type": "check", "label": "Toilet Disposal"}, - "screen": {"key": "screen", "type": "number", "label": "Screens", "placeholder": "1, 4, 8…", "minValue": 0}, - "scuba_diving": {"key": "scuba_diving:", "type": "multiCombo", "label": "Services", "options": ["repair", "courses", "rental", "filling", "air_filling", "nitrox_filling", "trimix_filling", "oxygen_filling"]}, - "seamark/beacon_isolated_danger/shape": {"key": "seamark:beacon_isolated_danger:shape", "type": "combo", "label": "Shape"}, - "seamark/beacon_lateral/category": {"key": "seamark:beacon_lateral:category", "type": "combo", "label": "Category", "strings": {"options": {"port": "Port", "starboard": "Starboard", "waterway_left": "Waterway Left", "waterway_right": "Waterway Right", "danger_left": "Danger Left", "danger_right": "Danger Right"}}}, - "seamark/beacon_lateral/colour": {"key": "seamark:beacon_lateral:colour", "type": "combo", "label": "Color", "strings": {"options": {"red": "Red", "green": "Green", "grey": "Grey"}}}, - "seamark/beacon_lateral/shape": {"key": "seamark:beacon_lateral:shape", "type": "combo", "label": "Shape"}, - "seamark/beacon_lateral/system": {"key": "seamark:beacon_lateral:system", "type": "combo", "label": "System", "strings": {"options": {"iala-a": "IALA A", "iala-b": "IALA B", "cevni": "CEVNI", "other": "Other"}}}, - "seamark/buoy_lateral/category": {"key": "seamark:buoy_lateral:category", "type": "combo", "label": "Category", "strings": {"options": {"port": "Port", "starboard": "Starboard", "channel_left": "Channel Left", "channel_right": "Channel Right", "waterway_left": "Waterway Left", "waterway_right": "Waterway Right", "danger_left": "Danger Left", "danger_right": "Danger Right", "preferred_channel_port": "Preferred Channel Port", "preferred_channel_starboard": "Preferred Channel Starboard"}}}, - "seamark/buoy_lateral/colour": {"key": "seamark:buoy_lateral:colour", "type": "combo", "label": "Color", "strings": {"options": {"red": "Red", "green": "Green", "red;white;red;white": "Red-White-Red-White", "green;white;green;white": "Green-White-Green-White", "red;green;red": "Red-Green-Red", "green;red;green": "Green-Red-Green", "white": "White", "yellow": "Yellow"}}}, - "seamark/buoy_lateral/shape": {"key": "seamark:buoy_lateral:shape", "type": "combo", "label": "Shape"}, - "seamark/buoy_lateral/system": {"key": "seamark:buoy_lateral:system", "type": "combo", "label": "System", "strings": {"options": {"iala-a": "IALA A", "iala-b": "IALA B", "cevni": "CEVNI", "other": "Other"}}}, - "seamark/mooring/category": {"key": "seamark:mooring:category", "type": "combo", "label": "Category"}, - "seamark/type": {"key": "seamark:type", "type": "combo", "label": "Seamark", "terms": ["marine"]}, - "seamark/wreck/category": {"key": "seamark:wreck:category", "type": "combo", "label": "Category"}, - "seasonal": {"key": "seasonal", "type": "check", "label": "Seasonal"}, - "seats": {"key": "seats", "type": "number", "minValue": 0, "label": "Seats", "placeholder": "2, 4, 6..."}, - "second_hand": {"key": "second_hand", "type": "combo", "label": "Sells Used", "placeholder": "Yes, No, Only", "strings": {"options": {"yes": "Yes", "no": "No", "only": "Only"}}}, - "segregated": {"key": "segregated", "type": "check", "label": "Bicycle-Pedestrian Separation"}, - "self_service": {"key": "self_service", "type": "check", "label": "Self-Service"}, - "service_rail": {"key": "service", "type": "combo", "label": "Service Type", "strings": {"options": {"spur": "Spur", "yard": "Yard", "siding": "Siding", "crossover": "Crossover"}}}, - "service_times": {"key": "service_times", "type": "text", "label": "Service Times"}, - "service": {"key": "service", "type": "combo", "label": "Type", "options": ["driveway", "parking_aisle", "alley", "drive-through", "emergency_access"]}, - "service/bicycle": {"key": "service:bicycle:", "type": "multiCombo", "label": "Services"}, - "service/vehicle": {"key": "service:vehicle:", "type": "multiCombo", "label": "Services"}, - "shelter_type": {"key": "shelter_type", "type": "combo", "label": "Type"}, - "shelter": {"key": "shelter", "type": "check", "label": "Shelter"}, - "shop": {"key": "shop", "type": "typeCombo", "label": "Type"}, - "shower": {"key": "shower", "type": "check", "label": "Showers"}, - "siren/purpose": {"key": "siren:purpose", "type": "combo", "label": "Purpose"}, - "siren/type": {"key": "siren:type", "type": "combo", "label": "Type", "strings": {"options": {"pneumatic": "Pneumatic", "electronic": "Electronic", "other": "Other"}}}, - "site_type": {"key": "site_type", "type": "combo", "label": "Site Type"}, - "site": {"key": "site", "type": "combo", "label": "Type"}, - "smoking": {"key": "smoking", "type": "combo", "label": "Smoking", "placeholder": "No, Separated, Yes...", "strings": {"options": {"no": "No smoking anywhere", "separated": "In smoking areas, not physically isolated", "isolated": "In smoking areas, physically isolated", "outside": "Allowed outside", "yes": "Allowed everywhere", "dedicated": "Dedicated to smokers (e.g. smokers' club)"}}}, - "smoothness": {"key": "smoothness", "type": "combo", "label": "Smoothness", "placeholder": "Thin Rollers, Wheels, Off-Road...", "strings": {"options": {"excellent": "Thin Rollers: rollerblade, skateboard", "good": "Thin Wheels: racing bike", "intermediate": "Wheels: city bike, wheelchair, scooter", "bad": "Robust Wheels: trekking bike, car, rickshaw", "very_bad": "High Clearance: light duty off-road vehicle", "horrible": "Off-Road: heavy duty off-road vehicle", "very_horrible": "Specialized off-road: tractor, ATV", "impassable": "Impassable / No wheeled vehicle"}}}, - "sms": {"key": "sms", "type": "check", "label": "SMS"}, - "social_facility_for": {"key": "social_facility:for", "type": "combo", "label": "People Served"}, - "social_facility": {"key": "social_facility", "type": "combo", "label": "Type"}, - "source": {"key": "source", "type": "semiCombo", "icon": "source", "universal": true, "label": "Sources", "snake_case": false, "caseSensitive": true, "options": ["survey", "local knowledge", "gps", "aerial imagery", "streetlevel imagery"], "terms": ["reference"]}, - "species/wikidata": {"key": "species:wikidata", "keys": ["species:wikidata", "species:wikipedia"], "type": "wikidata", "label": "Species Wikidata"}, - "sport_ice": {"key": "sport", "type": "semiCombo", "label": "Sports", "options": ["ice_skating", "ice_hockey", "multi", "curling", "ice_stock"]}, - "sport_racing_motor": {"key": "sport", "type": "semiCombo", "label": "Sports", "options": ["motor", "karting", "motocross"]}, - "sport_racing_nonmotor": {"key": "sport", "type": "semiCombo", "label": "Sports", "options": ["bmx", "cycling", "dog_racing", "horse_racing", "running"]}, - "sport": {"key": "sport", "type": "semiCombo", "label": "Sports"}, - "stars": {"key": "stars", "type": "combo", "label": "Stars", "terms": ["rating"]}, - "start_date": {"key": "start_date", "type": "text", "universal": true, "label": "Start Date", "placeholder": "YYYY-MM-DD", "terms": ["inception"]}, - "step_count": {"key": "step_count", "type": "number", "minValue": 0, "label": "Number of Steps"}, - "stile": {"key": "stile", "type": "combo", "label": "Type"}, - "stop": {"key": "stop", "type": "combo", "label": "Stop Type", "strings": {"options": {"all": "All Ways", "minor": "Minor Road"}}}, - "street_cabinet": {"key": "street_cabinet", "type": "combo", "label": "Type"}, - "stroller": {"key": "stroller", "type": "radio", "strings": {"options": {"yes": "Yes", "limited": "Limited", "no": "No"}}, "label": "Stroller Access", "terms": ["baby carriage", "perambulator", "pram", "pushchair"]}, - "structure_waterway": {"type": "structureRadio", "keys": ["tunnel"], "label": "Structure", "placeholder": "Unknown", "strings": {"options": {"tunnel": "Tunnel"}}}, - "structure": {"type": "structureRadio", "keys": ["bridge", "tunnel", "embankment", "cutting", "ford"], "label": "Structure", "placeholder": "Unknown", "strings": {"options": {"bridge": "Bridge", "tunnel": "Tunnel", "embankment": "Embankment", "cutting": "Cutting", "ford": "Ford"}}}, - "studio": {"key": "studio", "type": "combo", "label": "Type"}, - "substance": {"key": "substance", "type": "combo", "label": "Substance"}, - "substation": {"key": "substation", "type": "typeCombo", "label": "Type"}, - "supervised": {"key": "supervised", "type": "check", "label": "Supervised", "terms": ["guarded", "manned"]}, - "support": {"key": "support", "type": "combo", "label": "Support"}, - "surface": {"key": "surface", "type": "combo", "label": "Surface"}, - "surveillance": {"key": "surveillance", "type": "combo", "label": "Surveillance Kind"}, - "surveillance/type": {"key": "surveillance:type", "type": "combo", "label": "Surveillance Type", "strings": {"options": {"camera": "Camera", "guard": "Guard", "ALPR": "Automatic License Plate Reader"}}}, - "surveillance/zone": {"key": "surveillance:zone", "type": "combo", "label": "Surveillance Zone"}, - "survey/date": {"key": "survey:date", "type": "text", "label": "Last Survey Date"}, - "swimming_pool": {"key": "swimming_pool", "type": "combo", "label": "Type"}, - "switch": {"key": "switch", "type": "combo", "label": "Type", "strings": {"options": {"mechanical": "Mechanical", "circuit_breaker": "Circuit Breaker", "disconnector": "Disconnector", "earthing": "Earthing"}}}, - "tactile_paving": {"key": "tactile_paving", "type": "check", "label": "Tactile Paving"}, - "takeaway": {"key": "takeaway", "type": "combo", "label": "Takeaway", "placeholder": "Yes, No, Takeaway Only...", "strings": {"options": {"yes": "Yes", "no": "No", "only": "Takeaway Only"}}, "terms": ["take out", "takeout"]}, - "target": {"key": "target", "type": "combo", "label": "Target"}, - "telecom": {"key": "telecom", "type": "combo", "label": "Type"}, - "telecom/medium": {"key": "telecom:medium", "type": "combo", "label": "Medium"}, - "tidal": {"key": "tidal", "type": "check", "label": "Tidal"}, - "to": {"key": "to", "type": "text", "label": "To"}, - "toilets": {"key": "toilets", "type": "check", "label": "Toilets"}, - "toilets/disposal": {"key": "toilets:disposal", "type": "combo", "label": "Disposal", "strings": {"options": {"flush": "Flush", "pitlatrine": "Pit Latrine", "chemical": "Chemical", "bucket": "Bucket"}}}, - "toilets/handwashing": {"key": "toilets:handwashing", "type": "check", "label": "Handwashing"}, - "toilets/position": {"key": "toilets:position", "type": "semiCombo", "label": "Positions"}, - "toll": {"key": "toll", "type": "check", "label": "Toll"}, - "tomb": {"key": "tomb", "type": "typeCombo", "label": "Type"}, - "tourism": {"key": "tourism", "type": "typeCombo", "label": "Type"}, - "tower/construction": {"key": "tower:construction", "type": "combo", "label": "Construction", "placeholder": "Guyed, Lattice, Concealed, ..."}, - "tower/type": {"key": "tower:type", "type": "combo", "label": "Type"}, - "townhall/type": {"key": "townhall:type", "type": "combo", "label": "Type"}, - "tracktype": {"key": "tracktype", "type": "combo", "label": "Track Type", "placeholder": "Solid, Mostly Solid, Soft...", "strings": {"options": {"grade1": "Solid: paved or heavily compacted hardcore surface", "grade2": "Mostly Solid: gravel/rock with some soft material mixed in", "grade3": "Even mixture of hard and soft materials", "grade4": "Mostly Soft: soil/sand/grass with some hard material mixed in", "grade5": "Soft: soil/sand/grass"}}}, - "trade": {"key": "trade", "type": "typeCombo", "label": "Type"}, - "traffic_calming": {"key": "traffic_calming", "type": "typeCombo", "label": "Type"}, - "traffic_sign": {"key": "traffic_sign", "type": "typeCombo", "label": "Traffic Sign"}, - "traffic_sign/direction": {"key": "traffic_sign:direction", "type": "combo", "label": "Direction Affected", "strings": {"options": {"forward": "Forward", "backward": "Backward", "both": "Both / All"}}, "geometry": ["vertex"]}, - "traffic_signals": {"key": "traffic_signals", "type": "combo", "label": "Type", "default": "signal"}, - "traffic_signals/direction": {"key": "traffic_signals:direction", "type": "combo", "label": "Direction Affected", "strings": {"options": {"forward": "Forward", "backward": "Backward", "both": "Both / All"}}}, - "trail_visibility": {"key": "trail_visibility", "type": "combo", "label": "Trail Visibility", "placeholder": "Excellent, Good, Bad...", "strings": {"options": {"excellent": "Excellent: unambiguous path or markers everywhere", "good": "Good: markers visible, sometimes require searching", "intermediate": "Intermediate: few markers, path mostly visible", "bad": "Bad: no markers, path sometimes invisible/pathless", "horrible": "Horrible: often pathless, some orientation skills required", "no": "No: pathless, excellent orientation skills required"}}}, - "transformer": {"key": "transformer", "type": "combo", "label": "Type", "strings": {"options": {"distribution": "Distribution", "generator": "Generator", "converter": "Converter", "traction": "Traction", "auto": "Autotransformer", "phase_angle_regulator": "Phase Angle Regulator", "auxiliary": "Auxiliary", "yes": "Unknown"}}}, - "trees": {"key": "trees", "type": "semiCombo", "label": "Trees"}, - "trench": {"key": "trench", "type": "combo", "label": "Type"}, - "trolley_wire": {"key": "trolley_wire", "type": "check", "label": "Overhead Trolley Wires"}, - "tunnel_combo": {"key": "tunnel", "type": "combo", "label": "Type"}, - "tunnel": {"key": "tunnel", "type": "typeCombo", "label": "Type", "usage": "group", "placeholder": "Default"}, - "usage_rail": {"key": "usage", "type": "combo", "label": "Usage Type", "strings": {"options": {"main": "Main", "branch": "Branch", "industrial": "Industrial", "military": "Military", "test": "Test", "tourism": "Tourism"}}}, - "utility_semi": {"key": "utility", "type": "semiCombo", "label": "Utilities"}, - "utility": {"key": "utility", "type": "typeCombo", "label": "Utility"}, - "valve": {"key": "valve", "type": "combo", "label": "Type"}, - "vehicles": {"keys": ["bus", "trolleybus", "tram", "train", "subway", "light_rail", "monorail", "ferry"], "type": "manyCombo", "label": "Vehicles", "strings": {"options": {"bus": "Bus", "trolleybus": "Trolleybus", "tram": "Tram", "train": "Train", "subway": "Subway", "light_rail": "Light Rail", "monorail": "Monorail", "ferry": "Ferry"}}, "reference": {"key": "public_transport"}, "prerequisiteTag": {"keyNot": "aerialway"}}, - "vending": {"key": "vending", "type": "semiCombo", "label": "Types of Goods"}, - "vhf": {"key": "vhf", "type": "text", "label": "VHF Channel", "terms": ["call sign", "very high frequency"]}, - "video_calls": {"key": "video", "type": "check", "label": "Video Calls"}, - "visibility": {"key": "visibility", "type": "combo", "label": "Visibility", "strings": {"options": {"house": "Up to 5m (16ft)", "street": "5 to 20m (16 to 65ft)", "area": "Over 20m (65ft)"}}}, - "volcano/status": {"key": "volcano:status", "type": "combo", "label": "Volcano Status", "strings": {"options": {"active": "Active", "dormant": "Dormant", "extinct": "Extinct"}}}, - "volcano/type": {"key": "volcano:type", "type": "combo", "label": "Volcano Type", "strings": {"options": {"stratovolcano": "Stratovolcano", "shield": "Shield", "scoria": "Scoria"}}}, - "voltage_electrified": {"key": "voltage", "type": "combo", "label": "Voltage", "prerequisiteTag": {"key": "electrified", "valueNot": "no"}}, - "voltage": {"key": "voltage", "type": "combo", "label": "Voltage"}, - "voltage/primary": {"key": "voltage:primary", "type": "combo", "label": "Primary Voltage"}, - "voltage/secondary": {"key": "voltage:secondary", "type": "combo", "label": "Secondary Voltage"}, - "voltage/tertiary": {"key": "voltage:tertiary", "type": "combo", "label": "Tertiary Voltage"}, - "wall": {"key": "wall", "type": "combo", "label": "Type"}, - "waste": {"key": "waste", "type": "semiCombo", "label": "Waste"}, - "water_point": {"key": "water_point", "type": "check", "label": "Water Point"}, - "water_source": {"key": "water_source", "default": "main", "type": "combo", "label": "Water Source"}, - "water_tank/volume": {"key": "water_tank:volume", "type": "text", "label": "Volume (Liters)", "placeholder": "10000, 20000, 30000…"}, - "water_volume": {"key": "water_volume", "type": "number", "label": "Water Reserve Volume (m³)", "snake_case": false}, - "water": {"key": "water", "type": "combo", "label": "Type"}, - "waterway": {"key": "waterway", "type": "typeCombo", "label": "Type"}, - "website": {"key": "website", "type": "url", "icon": "website", "placeholder": "https://example.com", "label": "Website", "terms": ["internet presence", "uri", "url", "webpage"]}, - "wetland": {"key": "wetland", "type": "combo", "label": "Type"}, - "wheelchair": {"key": "wheelchair", "type": "radio", "strings": {"options": {"yes": "Yes", "limited": "Limited", "no": "No"}}, "icon": "maki-wheelchair", "label": "Wheelchair Access", "terms": ["handicap access"]}, - "wholesale": {"key": "wholesale", "type": "typeCombo", "label": "Wholesale"}, - "width": {"key": "width", "type": "number", "minValue": 0, "label": "Width (Meters)"}, - "wikidata": {"key": "wikidata", "keys": ["wikidata", "wikipedia"], "type": "wikidata", "icon": "wikipedia", "universal": true, "label": "Wikidata"}, - "wikimedia_commons": {"key": "wikimedia_commons", "type": "identifier", "label": "Wikimedia Commons Page", "placeholder": "File:Example.jpg", "urlFormat": "https://commons.wikimedia.org/wiki/{value}", "pattern": "^(?:File|Category):.{1,}", "universal": true}, - "wikipedia": {"key": "wikipedia", "keys": ["wikipedia", "wikidata"], "type": "wikipedia", "icon": "wikipedia", "universal": true, "label": "Wikipedia"}, - "windings": {"key": "windings", "type": "number", "minValue": 1, "label": "Windings", "placeholder": "1, 2, 3..."}, - "windings/configuration": {"key": "windings:configuration", "type": "combo", "label": "Windings Configuration", "strings": {"options": {"star": "Star / Wye", "delta": "Delta", "open-delta": "Open Delta", "zigzag": "Zig Zag", "open": "Open", "scott": "Scott", "leblanc": "Leblanc"}}} -} \ No newline at end of file diff --git a/data/presets/fields/access.json b/data/presets/fields/access.json deleted file mode 100644 index 776d58ca3e..0000000000 --- a/data/presets/fields/access.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "keys": ["access", "foot", "motor_vehicle", "bicycle", "horse"], - "reference": {"key": "access"}, - "type": "access", - "label": "Allowed Access", - "placeholder": "Not Specified", - "strings": { - "types": { - "access": "All", - "foot": "Foot", - "motor_vehicle": "Motor Vehicles", - "bicycle": "Bicycles", - "horse": "Horses" - }, - "options": { - "yes": { - "title": "Allowed", - "description": "Access allowed by law; a right of way" - }, - "no": { - "title": "Prohibited", - "description": "Access not allowed to the general public" - }, - "permissive": { - "title": "Permissive", - "description": "Access allowed until such time as the owner revokes the permission" - }, - "private": { - "title": "Private", - "description": "Access allowed only with permission of the owner on an individual basis" - }, - "designated": { - "title": "Designated", - "description": "Access allowed according to signs or specific local laws" - }, - "destination": { - "title": "Destination", - "description": "Access allowed only to reach a destination" - }, - "dismount": { - "title": "Dismount", - "description": "Access allowed but rider must dismount" - }, - "permit": { - "title": "Permit", - "description": "Access allowed only with a valid permit or license" - } - } - } -} diff --git a/data/presets/fields/access_aisle.json b/data/presets/fields/access_aisle.json deleted file mode 100644 index 896ae87ca9..0000000000 --- a/data/presets/fields/access_aisle.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "access_aisle", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/access_simple.json b/data/presets/fields/access_simple.json deleted file mode 100644 index 05b021ffd7..0000000000 --- a/data/presets/fields/access_simple.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "access", - "type": "combo", - "label": "Allowed Access", - "options": ["yes", "permissive", "private", "customers", "permit", "no"], - "terms": [ - "permitted", - "private", - "public" - ] -} diff --git a/data/presets/fields/addr/interpolation.json b/data/presets/fields/addr/interpolation.json deleted file mode 100644 index dccea1e37b..0000000000 --- a/data/presets/fields/addr/interpolation.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "addr:interpolation", - "type": "combo", - "label": "Type", - "strings": { - "options": { - "all": "All", - "even": "Even", - "odd": "Odd", - "alphabetic": "Alphabetic" - } - } -} diff --git a/data/presets/fields/address.json b/data/presets/fields/address.json deleted file mode 100644 index cd4eb74944..0000000000 --- a/data/presets/fields/address.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "type": "address", - "key": "addr", - "keys": [ - "addr:block_number", - "addr:city", - "addr:block_number", - "addr:conscriptionnumber", - "addr:county", - "addr:country", - "addr:county", - "addr:district", - "addr:floor", - "addr:hamlet", - "addr:housename", - "addr:housenumber", - "addr:neighbourhood", - "addr:place", - "addr:postcode", - "addr:province", - "addr:quarter", - "addr:state", - "addr:street", - "addr:subdistrict", - "addr:suburb", - "addr:unit" - ], - "icon": "address", - "label": "Address", - "strings": { - "placeholders": { - "block_number": "Block Number", - "block_number!jp": "Block No.", - "city": "City", - "city!cn": "City/Prefecture/League", - "city!jp": "City/Town/Village/Tokyo Special Ward", - "city!vn": "City/Town", - "conscriptionnumber": "123", - "country": "Country", - "county": "County", - "county!jp": "District", - "district": "District", - "district!cn": "District/County/Banner", - "district!vn": "Arrondissement/Town/District", - "floor": "Floor", - "hamlet": "Hamlet", - "housename": "Housename", - "housenumber": "123", - "housenumber!jp": "Building No./Lot No.", - "neighbourhood": "Neighbourhood", - "neighbourhood!jp": "Chōme/Aza/Koaza", - "place": "Place", - "postcode": "Postcode", - "province": "Province", - "province!cn": "Province/Municipality/AR/SAR", - "province!jp": "Prefecture", - "quarter": "Quarter", - "quarter!jp": "Ōaza/Machi", - "state": "State", - "street": "Street", - "subdistrict": "Subdistrict", - "subdistrict!vn": "Ward/Commune/Townlet", - "suburb": "Suburb", - "suburb!jp": "Ward", - "unit": "Unit" - } - }, - "terms": [ - "location" - ] -} diff --git a/data/presets/fields/admin_level.json b/data/presets/fields/admin_level.json deleted file mode 100644 index 0f7d318a5a..0000000000 --- a/data/presets/fields/admin_level.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "admin_level", - "type": "number", - "minValue": 1, - "label": "Admin Level" -} diff --git a/data/presets/fields/aerialway.json b/data/presets/fields/aerialway.json deleted file mode 100644 index 1023fe3840..0000000000 --- a/data/presets/fields/aerialway.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "aerialway", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/aerialway/access.json b/data/presets/fields/aerialway/access.json deleted file mode 100644 index 8f23f1c757..0000000000 --- a/data/presets/fields/aerialway/access.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "aerialway:access", - "type": "combo", - "label": "Access", - "strings": { - "options": { - "entry": "Entry", - "exit": "Exit", - "both": "Both" - } - } -} diff --git a/data/presets/fields/aerialway/bubble.json b/data/presets/fields/aerialway/bubble.json deleted file mode 100644 index 98e839d368..0000000000 --- a/data/presets/fields/aerialway/bubble.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "aerialway:bubble", - "type": "check", - "label": "Bubble" -} \ No newline at end of file diff --git a/data/presets/fields/aerialway/capacity.json b/data/presets/fields/aerialway/capacity.json deleted file mode 100644 index e52f7f233d..0000000000 --- a/data/presets/fields/aerialway/capacity.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "aerialway:capacity", - "type": "number", - "minValue": 0, - "label": "Capacity (per hour)", - "placeholder": "500, 2500, 5000..." -} diff --git a/data/presets/fields/aerialway/duration.json b/data/presets/fields/aerialway/duration.json deleted file mode 100644 index 356ad1c510..0000000000 --- a/data/presets/fields/aerialway/duration.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "aerialway:duration", - "type": "number", - "minValue": 0, - "label": "Duration (minutes)", - "placeholder": "1, 2, 3..." -} diff --git a/data/presets/fields/aerialway/heating.json b/data/presets/fields/aerialway/heating.json deleted file mode 100644 index ef7fc7be4f..0000000000 --- a/data/presets/fields/aerialway/heating.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "aerialway:heating", - "type": "check", - "label": "Heated" -} \ No newline at end of file diff --git a/data/presets/fields/aerialway/occupancy.json b/data/presets/fields/aerialway/occupancy.json deleted file mode 100644 index dbb7023147..0000000000 --- a/data/presets/fields/aerialway/occupancy.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "aerialway:occupancy", - "type": "number", - "minValue": 0, - "label": "Occupancy", - "placeholder": "2, 4, 8..." -} diff --git a/data/presets/fields/aerialway/summer/access.json b/data/presets/fields/aerialway/summer/access.json deleted file mode 100644 index 717e4326e5..0000000000 --- a/data/presets/fields/aerialway/summer/access.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "aerialway:summer:access", - "type": "combo", - "label": "Access (summer)", - "strings": { - "options": { - "entry": "Entry", - "exit": "Exit", - "both": "Both" - } - } -} diff --git a/data/presets/fields/aeroway.json b/data/presets/fields/aeroway.json deleted file mode 100644 index a35cc193ac..0000000000 --- a/data/presets/fields/aeroway.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "aeroway", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/agrarian.json b/data/presets/fields/agrarian.json deleted file mode 100644 index d6072e167a..0000000000 --- a/data/presets/fields/agrarian.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "agrarian", - "type": "semiCombo", - "label": "Products" -} diff --git a/data/presets/fields/air_conditioning.json b/data/presets/fields/air_conditioning.json deleted file mode 100644 index 8e773fd310..0000000000 --- a/data/presets/fields/air_conditioning.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "air_conditioning", - "type": "check", - "label": "Air Conditioning", - "terms": [ - "cooling system", - "refrigeration" - ] -} diff --git a/data/presets/fields/amenity.json b/data/presets/fields/amenity.json deleted file mode 100644 index 057ee800bb..0000000000 --- a/data/presets/fields/amenity.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "amenity", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/animal_boarding.json b/data/presets/fields/animal_boarding.json deleted file mode 100644 index 61b9b6960c..0000000000 --- a/data/presets/fields/animal_boarding.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "animal_boarding", - "type": "semiCombo", - "label": "For Animals" -} diff --git a/data/presets/fields/animal_breeding.json b/data/presets/fields/animal_breeding.json deleted file mode 100644 index 6113984855..0000000000 --- a/data/presets/fields/animal_breeding.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "animal_breeding", - "type": "semiCombo", - "label": "For Animals" -} diff --git a/data/presets/fields/animal_shelter.json b/data/presets/fields/animal_shelter.json deleted file mode 100644 index 438e3fafb5..0000000000 --- a/data/presets/fields/animal_shelter.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "animal_shelter", - "type": "semiCombo", - "label": "For Animals" -} diff --git a/data/presets/fields/architect.json b/data/presets/fields/architect.json deleted file mode 100644 index 9eed96c16f..0000000000 --- a/data/presets/fields/architect.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "architect", - "type": "text", - "label": "Architect", - "terms": [ - "building designer" - ] -} diff --git a/data/presets/fields/area/highway.json b/data/presets/fields/area/highway.json deleted file mode 100644 index 5517baa6f1..0000000000 --- a/data/presets/fields/area/highway.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "area:highway", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/artist.json b/data/presets/fields/artist.json deleted file mode 100644 index b264ff3391..0000000000 --- a/data/presets/fields/artist.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "artist_name", - "type": "text", - "label": "Artist" -} diff --git a/data/presets/fields/artwork_type.json b/data/presets/fields/artwork_type.json deleted file mode 100644 index 913d1737b6..0000000000 --- a/data/presets/fields/artwork_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "artwork_type", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/ascent.json b/data/presets/fields/ascent.json deleted file mode 100644 index d3d9832da2..0000000000 --- a/data/presets/fields/ascent.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "ascent", - "minValue": 0, - "type": "number", - "label": "Total Ascent", - "terms":[ - "ascent", - "climb", - "cumulative elevation gain" - ] -} diff --git a/data/presets/fields/atm.json b/data/presets/fields/atm.json deleted file mode 100644 index 4f2407aa37..0000000000 --- a/data/presets/fields/atm.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "atm", - "type": "check", - "label": "ATM" -} \ No newline at end of file diff --git a/data/presets/fields/attraction.json b/data/presets/fields/attraction.json deleted file mode 100644 index 5d95269a6f..0000000000 --- a/data/presets/fields/attraction.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "attraction", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/automated.json b/data/presets/fields/automated.json deleted file mode 100644 index 8846ca813b..0000000000 --- a/data/presets/fields/automated.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "automated", - "type": "check", - "label": "Automated" -} \ No newline at end of file diff --git a/data/presets/fields/baby_feeding.json b/data/presets/fields/baby_feeding.json deleted file mode 100644 index f974d23a1d..0000000000 --- a/data/presets/fields/baby_feeding.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "key": "baby_feeding", - "type": "combo", - "label": "Baby Nursing Area", - "strings": { - "options": { - "room": "Dedicated Room", - "yes": "Marked Space", - "no": "None" - } - }, - "terms": [ - "baby feeding", - "breastfeeding", - "lactation", - "mothers", - "nursing" - ] -} diff --git a/data/presets/fields/baby_seat.json b/data/presets/fields/baby_seat.json deleted file mode 100644 index 8af537ab26..0000000000 --- a/data/presets/fields/baby_seat.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "baby", - "type": "check", - "label": "Baby Seat" -} \ No newline at end of file diff --git a/data/presets/fields/backcountry.json b/data/presets/fields/backcountry.json deleted file mode 100644 index 1fc3e16bb5..0000000000 --- a/data/presets/fields/backcountry.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "backcountry", - "type": "check", - "label": "Backcountry" -} diff --git a/data/presets/fields/backrest.json b/data/presets/fields/backrest.json deleted file mode 100644 index c9ee672724..0000000000 --- a/data/presets/fields/backrest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "backrest", - "type": "check", - "label": "Backrest" -} diff --git a/data/presets/fields/bar.json b/data/presets/fields/bar.json deleted file mode 100644 index b32cbc0d22..0000000000 --- a/data/presets/fields/bar.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "bar", - "type": "check", - "label": "Bar" -} \ No newline at end of file diff --git a/data/presets/fields/barrier.json b/data/presets/fields/barrier.json deleted file mode 100644 index e87f17c6b5..0000000000 --- a/data/presets/fields/barrier.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "barrier", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/basin.json b/data/presets/fields/basin.json deleted file mode 100644 index eb55f20fa4..0000000000 --- a/data/presets/fields/basin.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "basin", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/bath/open_air.json b/data/presets/fields/bath/open_air.json deleted file mode 100644 index 60e09c205a..0000000000 --- a/data/presets/fields/bath/open_air.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "bath:open_air", - "label": "Open Air", - "type": "check" -} diff --git a/data/presets/fields/bath/sand_bath.json b/data/presets/fields/bath/sand_bath.json deleted file mode 100644 index 8242b16495..0000000000 --- a/data/presets/fields/bath/sand_bath.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "bath:sand_bath", - "label": "Sand Bath", - "type": "check" -} diff --git a/data/presets/fields/bath/type.json b/data/presets/fields/bath/type.json deleted file mode 100644 index f0ab42b8fc..0000000000 --- a/data/presets/fields/bath/type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "bath:type", - "type": "combo", - "label": "Specialty" -} diff --git a/data/presets/fields/beauty.json b/data/presets/fields/beauty.json deleted file mode 100644 index 60faf3024a..0000000000 --- a/data/presets/fields/beauty.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "beauty", - "type": "semiCombo", - "label": "Services" -} diff --git a/data/presets/fields/bench.json b/data/presets/fields/bench.json deleted file mode 100644 index b82a7dc191..0000000000 --- a/data/presets/fields/bench.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "bench", - "type": "check", - "label": "Bench", - "terms": [ - "seating" - ] -} diff --git a/data/presets/fields/bicycle_parking.json b/data/presets/fields/bicycle_parking.json deleted file mode 100644 index 29a86726e0..0000000000 --- a/data/presets/fields/bicycle_parking.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "bicycle_parking", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/bin.json b/data/presets/fields/bin.json deleted file mode 100644 index 09d74c327f..0000000000 --- a/data/presets/fields/bin.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "bin", - "type": "check", - "label": "Waste Bin", - "terms": [ - "garbage can", - "trash can" - ] -} diff --git a/data/presets/fields/blind.json b/data/presets/fields/blind.json deleted file mode 100644 index 0aa46adc85..0000000000 --- a/data/presets/fields/blind.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "blind", - "type": "radio", - "strings": { - "options": { - "yes": "Yes", - "limited": "Limited", - "no": "No" - } - }, - "label": "Blind Person Access", - "terms": [ - "sight impairment", - "vision impairment" - ] -} diff --git a/data/presets/fields/blood_components.json b/data/presets/fields/blood_components.json deleted file mode 100644 index d8629cb3ac..0000000000 --- a/data/presets/fields/blood_components.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "blood:", - "type": "multiCombo", - "label": "Blood Components", - "strings": { - "options": { - "whole": "whole blood", - "plasma": "plasma", - "platelets": "platelets", - "stemcells": "stem cell samples" - } - } -} diff --git a/data/presets/fields/board_type.json b/data/presets/fields/board_type.json deleted file mode 100644 index a23ef07854..0000000000 --- a/data/presets/fields/board_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "board_type", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/bollard.json b/data/presets/fields/bollard.json deleted file mode 100644 index d610d379ae..0000000000 --- a/data/presets/fields/bollard.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "bollard", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/booth.json b/data/presets/fields/booth.json deleted file mode 100644 index 2746f52a75..0000000000 --- a/data/presets/fields/booth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "booth", - "type": "combo", - "label": "Booth", - "caseSensitive": true -} diff --git a/data/presets/fields/bottle.json b/data/presets/fields/bottle.json deleted file mode 100644 index e8bab97ab3..0000000000 --- a/data/presets/fields/bottle.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "bottle", - "type": "check", - "label": "Bottle Filling" -} diff --git a/data/presets/fields/boules.json b/data/presets/fields/boules.json deleted file mode 100644 index b95a997396..0000000000 --- a/data/presets/fields/boules.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "boules", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/boundary.json b/data/presets/fields/boundary.json deleted file mode 100644 index 0c71138a10..0000000000 --- a/data/presets/fields/boundary.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "boundary", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/brand.json b/data/presets/fields/brand.json deleted file mode 100644 index 73dd2a71ca..0000000000 --- a/data/presets/fields/brand.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "brand", - "type": "text", - "label": "Brand" -} diff --git a/data/presets/fields/brewery.json b/data/presets/fields/brewery.json deleted file mode 100644 index dc7abdb701..0000000000 --- a/data/presets/fields/brewery.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "brewery", - "type": "semiCombo", - "label": "Draft Beers", - "terms": [ - "on tap" - ] -} diff --git a/data/presets/fields/bridge.json b/data/presets/fields/bridge.json deleted file mode 100644 index d15fa0af77..0000000000 --- a/data/presets/fields/bridge.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "bridge", - "type": "typeCombo", - "label": "Type", - "usage": "group", - "placeholder": "Default" -} diff --git a/data/presets/fields/bridge/support.json b/data/presets/fields/bridge/support.json deleted file mode 100644 index e4795ad590..0000000000 --- a/data/presets/fields/bridge/support.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "bridge:support", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/bridge_combo.json b/data/presets/fields/bridge_combo.json deleted file mode 100644 index b467c8845b..0000000000 --- a/data/presets/fields/bridge_combo.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "bridge", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/building.json b/data/presets/fields/building.json deleted file mode 100644 index d560638e8a..0000000000 --- a/data/presets/fields/building.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "building", - "type": "combo", - "label": "Building", - "terms": [ - "structure" - ] -} \ No newline at end of file diff --git a/data/presets/fields/building/flats.json b/data/presets/fields/building/flats.json deleted file mode 100644 index 513f2c912a..0000000000 --- a/data/presets/fields/building/flats.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "building:flats", - "type": "number", - "minValue": 0, - "label": "Units", - "placeholder": "2, 4, 6, 8..." -} \ No newline at end of file diff --git a/data/presets/fields/building/levels.json b/data/presets/fields/building/levels.json deleted file mode 100644 index 3faebbadb8..0000000000 --- a/data/presets/fields/building/levels.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "building:levels", - "type": "number", - "minValue": 0, - "label": "Levels", - "placeholder": "2, 4, 6..." -} diff --git a/data/presets/fields/building/levels/underground.json b/data/presets/fields/building/levels/underground.json deleted file mode 100644 index b610afdbcd..0000000000 --- a/data/presets/fields/building/levels/underground.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "building:levels:underground", - "type": "number", - "minValue": 0, - "label": "Underground Levels", - "placeholder": "2, 4, 6...", - "terms": [ - "basement levels" - ] -} diff --git a/data/presets/fields/building/levels_building.json b/data/presets/fields/building/levels_building.json deleted file mode 100644 index 03850c6891..0000000000 --- a/data/presets/fields/building/levels_building.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "building:levels", - "type": "number", - "minValue": 0, - "label": "Building Levels", - "placeholder": "2, 4, 6...", - "prerequisiteTag": { - "key": "building", - "valueNot": "no" - } -} diff --git a/data/presets/fields/building/material.json b/data/presets/fields/building/material.json deleted file mode 100644 index c7353274e0..0000000000 --- a/data/presets/fields/building/material.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "building:material", - "type": "combo", - "label": "Material" -} diff --git a/data/presets/fields/building_area.json b/data/presets/fields/building_area.json deleted file mode 100644 index 4c12b874ed..0000000000 --- a/data/presets/fields/building_area.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "building", - "type": "combo", - "default": "yes", - "geometry": ["area"], - "label": "Building" -} diff --git a/data/presets/fields/bunker_type.json b/data/presets/fields/bunker_type.json deleted file mode 100644 index 4725718366..0000000000 --- a/data/presets/fields/bunker_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "bunker_type", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/cables.json b/data/presets/fields/cables.json deleted file mode 100644 index 6231335828..0000000000 --- a/data/presets/fields/cables.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "cables", - "type": "number", - "minValue": 1, - "label": "Cables", - "placeholder": "1, 2, 3..." -} diff --git a/data/presets/fields/camera/direction.json b/data/presets/fields/camera/direction.json deleted file mode 100644 index 142376c77b..0000000000 --- a/data/presets/fields/camera/direction.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "camera:direction", - "type": "number", - "label": "Direction (Degrees Clockwise)", - "placeholder": "45, 90, 180, 270" -} diff --git a/data/presets/fields/camera/mount.json b/data/presets/fields/camera/mount.json deleted file mode 100644 index 8deea40219..0000000000 --- a/data/presets/fields/camera/mount.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "camera:mount", - "type": "combo", - "label": "Camera Mount" -} diff --git a/data/presets/fields/camera/type.json b/data/presets/fields/camera/type.json deleted file mode 100644 index 4f29b05a28..0000000000 --- a/data/presets/fields/camera/type.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "camera:type", - "type": "combo", - "label": "Camera Type", - "strings": { - "options": { - "fixed": "Fixed", - "panning": "Panning", - "dome": "Dome" - } - } -} diff --git a/data/presets/fields/capacity.json b/data/presets/fields/capacity.json deleted file mode 100644 index 16b2e1f51d..0000000000 --- a/data/presets/fields/capacity.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "capacity", - "type": "number", - "minValue": 0, - "label": "Capacity", - "placeholder": "50, 100, 200..." -} \ No newline at end of file diff --git a/data/presets/fields/capacity/disabled_parking.json b/data/presets/fields/capacity/disabled_parking.json deleted file mode 100644 index 36c54b2e22..0000000000 --- a/data/presets/fields/capacity/disabled_parking.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "capacity:disabled", - "type": "number", - "minValue": 0, - "label": "Accessible Spaces", - "placeholder": "1, 2, 3..." -} diff --git a/data/presets/fields/capacity_parking.json b/data/presets/fields/capacity_parking.json deleted file mode 100644 index 6f7b7277a6..0000000000 --- a/data/presets/fields/capacity_parking.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "capacity", - "type": "number", - "minValue": 0, - "label": "Total Spaces", - "placeholder": "10, 20, 30..." -} diff --git a/data/presets/fields/capacity_volume.json b/data/presets/fields/capacity_volume.json deleted file mode 100644 index c3603de5b6..0000000000 --- a/data/presets/fields/capacity_volume.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "capacity", - "type": "number", - "minValue": 0, - "label": "Capacity (Cubic Meters)", - "placeholder": "50, 100, 200..." -} \ No newline at end of file diff --git a/data/presets/fields/cash_in.json b/data/presets/fields/cash_in.json deleted file mode 100644 index 9ccd1dc211..0000000000 --- a/data/presets/fields/cash_in.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "cash_in", - "type": "check", - "label": "Cash In" -} \ No newline at end of file diff --git a/data/presets/fields/castle_type.json b/data/presets/fields/castle_type.json deleted file mode 100644 index ea36ca17d2..0000000000 --- a/data/presets/fields/castle_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "castle_type", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/changing_table.json b/data/presets/fields/changing_table.json deleted file mode 100644 index e746b25f00..0000000000 --- a/data/presets/fields/changing_table.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "changing_table", - "type": "check", - "label": "Diaper Changing Table" -} diff --git a/data/presets/fields/charge_fee.json b/data/presets/fields/charge_fee.json deleted file mode 100644 index e432b53330..0000000000 --- a/data/presets/fields/charge_fee.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "charge", - "type": "text", - "label": "Fee Amount", - "placeholder": "1 EUR, 5 USD, 10 JPY…", - "prerequisiteTag": { - "key": "fee", - "valueNot": "no" - } -} diff --git a/data/presets/fields/charge_toll.json b/data/presets/fields/charge_toll.json deleted file mode 100644 index 5f3eef9299..0000000000 --- a/data/presets/fields/charge_toll.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "charge", - "type": "text", - "label": "Toll Amount", - "placeholder": "1 EUR, 5 USD, 10 JPY…", - "prerequisiteTag": { - "key": "toll", - "valueNot": "no" - } -} diff --git a/data/presets/fields/check_date.json b/data/presets/fields/check_date.json deleted file mode 100644 index 09bf66a668..0000000000 --- a/data/presets/fields/check_date.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "check_date", - "type": "text", - "label": "Last Checked Date", - "placeholder": "YYYY-MM-DD" -} diff --git a/data/presets/fields/circumference.json b/data/presets/fields/circumference.json deleted file mode 100644 index 596fb77395..0000000000 --- a/data/presets/fields/circumference.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "circumference", - "type": "combo", - "label": "Circumference", - "snake_case": false, - "placeholder": "1 m, 20 cm, 30 in…" -} diff --git a/data/presets/fields/clothes.json b/data/presets/fields/clothes.json deleted file mode 100644 index 711b0b37de..0000000000 --- a/data/presets/fields/clothes.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "clothes", - "type": "semiCombo", - "label": "Clothes" -} diff --git a/data/presets/fields/club.json b/data/presets/fields/club.json deleted file mode 100644 index 9483b01137..0000000000 --- a/data/presets/fields/club.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "club", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/collection_times.json b/data/presets/fields/collection_times.json deleted file mode 100644 index 698cdf4807..0000000000 --- a/data/presets/fields/collection_times.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "collection_times", - "type": "text", - "label": "Collection Times" -} \ No newline at end of file diff --git a/data/presets/fields/collector.json b/data/presets/fields/collector.json deleted file mode 100644 index d6d2ea4fe7..0000000000 --- a/data/presets/fields/collector.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "collector", - "type": "semiCombo", - "label": "Items" -} diff --git a/data/presets/fields/colour.json b/data/presets/fields/colour.json deleted file mode 100644 index d53e2a9501..0000000000 --- a/data/presets/fields/colour.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "colour", - "type": "text", - "label": "Color" -} diff --git a/data/presets/fields/comment.json b/data/presets/fields/comment.json deleted file mode 100644 index 88459f413e..0000000000 --- a/data/presets/fields/comment.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "comment", - "type": "textarea", - "label": "Changeset Comment", - "usage": "changeset", - "placeholder": "Brief description of your contributions (required)" -} diff --git a/data/presets/fields/communication_multi.json b/data/presets/fields/communication_multi.json deleted file mode 100644 index 23411179df..0000000000 --- a/data/presets/fields/communication_multi.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "communication:", - "type": "multiCombo", - "label": "Communication Types" -} diff --git a/data/presets/fields/connectivity.json b/data/presets/fields/connectivity.json deleted file mode 100644 index 9f864e66e7..0000000000 --- a/data/presets/fields/connectivity.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "connectivity", - "type": "text", - "label": "Connectivity" -} diff --git a/data/presets/fields/construction.json b/data/presets/fields/construction.json deleted file mode 100644 index 9f0b928060..0000000000 --- a/data/presets/fields/construction.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "construction", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/consulate.json b/data/presets/fields/consulate.json deleted file mode 100644 index 1610523dd7..0000000000 --- a/data/presets/fields/consulate.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "consulate", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/consulting.json b/data/presets/fields/consulting.json deleted file mode 100644 index 527c710b15..0000000000 --- a/data/presets/fields/consulting.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "consulting", - "type": "semiCombo", - "label": "Expertise" -} diff --git a/data/presets/fields/contact/webcam.json b/data/presets/fields/contact/webcam.json deleted file mode 100644 index 54a6c878d3..0000000000 --- a/data/presets/fields/contact/webcam.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "contact:webcam", - "type": "url", - "icon": "website", - "label": "Webcam URL", - "placeholder": "http://example.com/" -} diff --git a/data/presets/fields/content.json b/data/presets/fields/content.json deleted file mode 100644 index 574e193162..0000000000 --- a/data/presets/fields/content.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "content", - "type": "combo", - "label": "Content", - "options": ["silage", "water", "oil", "fuel", "slurry", "gas", "manure", "sewage"] -} diff --git a/data/presets/fields/conveying.json b/data/presets/fields/conveying.json deleted file mode 100644 index 09d0b41a2a..0000000000 --- a/data/presets/fields/conveying.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "conveying", - "type": "typeCombo", - "label": "Movement Direction", - "strings": { - "options": { - "forward": "Forward", - "backward": "Backward", - "reversible": "Reversible" - } - } - -} diff --git a/data/presets/fields/conveying_escalator.json b/data/presets/fields/conveying_escalator.json deleted file mode 100644 index 66dfa64be9..0000000000 --- a/data/presets/fields/conveying_escalator.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "conveying", - "type": "check", - "label": "Escalator" -} diff --git a/data/presets/fields/country.json b/data/presets/fields/country.json deleted file mode 100644 index 3ad365da45..0000000000 --- a/data/presets/fields/country.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "country", - "type": "combo", - "label": "Country" -} diff --git a/data/presets/fields/country_flag.json b/data/presets/fields/country_flag.json deleted file mode 100644 index 77cdf30f22..0000000000 --- a/data/presets/fields/country_flag.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "country", - "type": "combo", - "label": "Flag Country", - "prerequisiteTag": { - "key": "flag:type", - "value": "national" - } -} diff --git a/data/presets/fields/couplings.json b/data/presets/fields/couplings.json deleted file mode 100644 index cf1ab7fc63..0000000000 --- a/data/presets/fields/couplings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "couplings", - "type": "number", - "minValue": 1, - "label": "Couplings", - "placeholder": "1, 2, 3..." -} diff --git a/data/presets/fields/covered.json b/data/presets/fields/covered.json deleted file mode 100644 index 9ab450df88..0000000000 --- a/data/presets/fields/covered.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "covered", - "type": "check", - "label": "Covered" -} \ No newline at end of file diff --git a/data/presets/fields/craft.json b/data/presets/fields/craft.json deleted file mode 100644 index 6ce9df0c0c..0000000000 --- a/data/presets/fields/craft.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "craft", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/crane/type.json b/data/presets/fields/crane/type.json deleted file mode 100644 index 6b3edfa768..0000000000 --- a/data/presets/fields/crane/type.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "crane:type", - "type": "combo", - "label": "Crane Type", - "strings": { - "options": { - "portal_crane": "Portal Crane", - "floor-mounted_crane": "Floor-mounted Crane", - "travel_lift": "Travel Lift" - } - } -} diff --git a/data/presets/fields/crop.json b/data/presets/fields/crop.json deleted file mode 100644 index 1aac15422e..0000000000 --- a/data/presets/fields/crop.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "crop", - "type": "semiCombo", - "label": "Crops" -} diff --git a/data/presets/fields/crossing.json b/data/presets/fields/crossing.json deleted file mode 100644 index 4f22b29e02..0000000000 --- a/data/presets/fields/crossing.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "crossing", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/crossing/island.json b/data/presets/fields/crossing/island.json deleted file mode 100644 index 5318fc9863..0000000000 --- a/data/presets/fields/crossing/island.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "crossing:island", - "type": "check", - "label": "Refuge Island" -} diff --git a/data/presets/fields/cuisine.json b/data/presets/fields/cuisine.json deleted file mode 100644 index 6f4d5e1d5a..0000000000 --- a/data/presets/fields/cuisine.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "cuisine", - "type": "semiCombo", - "label": "Cuisines", - "terms": [ - "fare", - "food types" - ] -} diff --git a/data/presets/fields/currency_multi.json b/data/presets/fields/currency_multi.json deleted file mode 100644 index 9fd1c6286e..0000000000 --- a/data/presets/fields/currency_multi.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "currency:", - "type": "multiCombo", - "label": "Currency Types", - "terms": [ - "bills", - "cash", - "coins", - "money" - ] -} diff --git a/data/presets/fields/cutting.json b/data/presets/fields/cutting.json deleted file mode 100644 index 4d99849b91..0000000000 --- a/data/presets/fields/cutting.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "cutting", - "type": "typeCombo", - "label": "Type", - "usage": "group", - "placeholder": "Default" -} diff --git a/data/presets/fields/cycle_network.json b/data/presets/fields/cycle_network.json deleted file mode 100644 index 3d6974b3dd..0000000000 --- a/data/presets/fields/cycle_network.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "cycle_network", - "type": "networkCombo", - "label": "Network" -} \ No newline at end of file diff --git a/data/presets/fields/cycleway.json b/data/presets/fields/cycleway.json deleted file mode 100644 index 07a687a90d..0000000000 --- a/data/presets/fields/cycleway.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "keys": ["cycleway", "cycleway:left", "cycleway:right"], - "reference": {"key": "cycleway"}, - "type": "cycleway", - "label": "Bike Lanes", - "placeholder": "none", - "strings": { - "types": { - "cycleway:left": "Left side", - "cycleway:right": "Right side" - }, - "options": { - "none": { - "title": "None", - "description": "No bike lane" - }, - "lane": { - "title": "Standard bike lane", - "description": "A bike lane separated from auto traffic by a painted line" - }, - "shared_lane": { - "title": "Shared bike lane", - "description": "A bike lane with no separation from auto traffic" - }, - "track": { - "title": "Bike track", - "description": "A bike lane separated from traffic by a physical barrier" - }, - "share_busway": { - "title": "Bike lane shared with bus", - "description": "A bike lane shared with a bus lane" - }, - "opposite_lane": { - "title": "Opposite bike lane", - "description": "A bike lane that travels in the opposite direction of traffic" - }, - "opposite": { - "title": "Contraflow bike lane", - "description": "A bike lane that travels in both directions on a one-way street" - } - } - } -} diff --git a/data/presets/fields/dance/style.json b/data/presets/fields/dance/style.json deleted file mode 100644 index 38e2513cc8..0000000000 --- a/data/presets/fields/dance/style.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "dance:style", - "type": "semiCombo", - "label": "Dance Styles" -} diff --git a/data/presets/fields/date.json b/data/presets/fields/date.json deleted file mode 100644 index e8501e4073..0000000000 --- a/data/presets/fields/date.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "date", - "type": "check", - "label": "Date" -} diff --git a/data/presets/fields/defibrillator/location.json b/data/presets/fields/defibrillator/location.json deleted file mode 100644 index a043473963..0000000000 --- a/data/presets/fields/defibrillator/location.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "defibrillator:location", - "type": "textarea", - "label": "Location Description" -} diff --git a/data/presets/fields/delivery.json b/data/presets/fields/delivery.json deleted file mode 100644 index 78ca3d341e..0000000000 --- a/data/presets/fields/delivery.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "delivery", - "type": "check", - "label": "Delivery" -} diff --git a/data/presets/fields/denomination.json b/data/presets/fields/denomination.json deleted file mode 100644 index 60a745a2e5..0000000000 --- a/data/presets/fields/denomination.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "denomination", - "type": "combo", - "label": "Denomination", - "prerequisiteTag": { - "key": "religion", - "valueNot": "none" - } -} diff --git a/data/presets/fields/denotation.json b/data/presets/fields/denotation.json deleted file mode 100644 index 7482de721d..0000000000 --- a/data/presets/fields/denotation.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "denotation", - "type": "combo", - "label": "Denotation" -} \ No newline at end of file diff --git a/data/presets/fields/departures_board.json b/data/presets/fields/departures_board.json deleted file mode 100644 index 79e3f4298d..0000000000 --- a/data/presets/fields/departures_board.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "departures_board", - "type": "combo", - "label": "Departures Board", - "strings": { - "options": { - "yes": "Yes", - "timetable": "Timetable", - "realtime": "Realtime", - "no": "None" - } - } -} diff --git a/data/presets/fields/depth.json b/data/presets/fields/depth.json deleted file mode 100644 index f559f25d11..0000000000 --- a/data/presets/fields/depth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "depth", - "minValue": 0, - "type": "number", - "label": "Depth (Meters)" -} diff --git a/data/presets/fields/descent.json b/data/presets/fields/descent.json deleted file mode 100644 index 11d438e1e9..0000000000 --- a/data/presets/fields/descent.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "descent", - "minValue": 0, - "type": "number", - "label": "Total Descent", - "terms": [ - "descent", - "cumulative elevation" - ] -} diff --git a/data/presets/fields/description.json b/data/presets/fields/description.json deleted file mode 100644 index f9cc213b83..0000000000 --- a/data/presets/fields/description.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "description", - "type": "textarea", - "label": "Description", - "universal": true, - "terms": [ - "summary" - ] -} diff --git a/data/presets/fields/design.json b/data/presets/fields/design.json deleted file mode 100644 index 921ca575d3..0000000000 --- a/data/presets/fields/design.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "design", - "type": "combo", - "label": "Design" -} \ No newline at end of file diff --git a/data/presets/fields/destination.json b/data/presets/fields/destination.json deleted file mode 100644 index 931bbc7992..0000000000 --- a/data/presets/fields/destination.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "destination", - "type": "semiCombo", - "label": "Destinations" -} diff --git a/data/presets/fields/destination/ref.json b/data/presets/fields/destination/ref.json deleted file mode 100644 index ab5b64d439..0000000000 --- a/data/presets/fields/destination/ref.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "destination:ref", - "type": "semiCombo", - "label": "Destination Road Numbers", - "snake_case": false -} diff --git a/data/presets/fields/destination/ref_oneway.json b/data/presets/fields/destination/ref_oneway.json deleted file mode 100644 index 71fe8dec1c..0000000000 --- a/data/presets/fields/destination/ref_oneway.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "destination:ref", - "type": "semiCombo", - "label": "Destination Road Numbers", - "prerequisiteTag": { - "key": "oneway", - "value": "yes" - }, - "snake_case": false -} diff --git a/data/presets/fields/destination/symbol.json b/data/presets/fields/destination/symbol.json deleted file mode 100644 index 407a121360..0000000000 --- a/data/presets/fields/destination/symbol.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "destination:symbol", - "type": "semiCombo", - "label": "Destination Symbols" -} diff --git a/data/presets/fields/destination/symbol_oneway.json b/data/presets/fields/destination/symbol_oneway.json deleted file mode 100644 index a8ab38e376..0000000000 --- a/data/presets/fields/destination/symbol_oneway.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "destination:symbol", - "type": "semiCombo", - "label": "Destination Symbols", - "prerequisiteTag": { - "key": "oneway", - "value": "yes" - } -} diff --git a/data/presets/fields/destination_oneway.json b/data/presets/fields/destination_oneway.json deleted file mode 100644 index 1d5bc9db85..0000000000 --- a/data/presets/fields/destination_oneway.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "destination", - "type": "semiCombo", - "label": "Destinations", - "prerequisiteTag": { - "key": "oneway", - "value": "yes" - }, - "snake_case": false -} diff --git a/data/presets/fields/destination_waterway.json b/data/presets/fields/destination_waterway.json deleted file mode 100644 index a4e1f89466..0000000000 --- a/data/presets/fields/destination_waterway.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "destination", - "type": "text", - "label": "Destination" -} diff --git a/data/presets/fields/devices.json b/data/presets/fields/devices.json deleted file mode 100644 index 37971c00ad..0000000000 --- a/data/presets/fields/devices.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "devices", - "type": "number", - "minValue": 0, - "label": "Devices", - "placeholder": "1, 2, 3..." -} diff --git a/data/presets/fields/diameter.json b/data/presets/fields/diameter.json deleted file mode 100644 index 59b20198aa..0000000000 --- a/data/presets/fields/diameter.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "diameter", - "type": "combo", - "label": "Diameter", - "snake_case": false, - "placeholder": "5 mm, 10 cm, 15 in…" -} diff --git a/data/presets/fields/diet_multi.json b/data/presets/fields/diet_multi.json deleted file mode 100644 index 3c524d129f..0000000000 --- a/data/presets/fields/diet_multi.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "key": "diet:", - "type": "multiCombo", - "label": "Diet Types", - "terms": [ - "gluten free", - "fruitarian", - "halal", - "kosher", - "lactose free", - "meat", - "pescatarian", - "raw", - "vegan", - "vegetarian" - ] -} diff --git a/data/presets/fields/diplomatic.json b/data/presets/fields/diplomatic.json deleted file mode 100644 index e83a243bc4..0000000000 --- a/data/presets/fields/diplomatic.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "diplomatic", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/diplomatic/services.json b/data/presets/fields/diplomatic/services.json deleted file mode 100644 index 9ca7161d1c..0000000000 --- a/data/presets/fields/diplomatic/services.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "diplomatic:services:", - "type": "multiCombo", - "label": "Services" -} diff --git a/data/presets/fields/direction.json b/data/presets/fields/direction.json deleted file mode 100644 index 9681523444..0000000000 --- a/data/presets/fields/direction.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "direction", - "type": "number", - "label": "Direction (Degrees Clockwise)", - "increment": 5, - "placeholder": "45, 90, 180, 270" -} diff --git a/data/presets/fields/direction_clock.json b/data/presets/fields/direction_clock.json deleted file mode 100644 index 8744ffc9f3..0000000000 --- a/data/presets/fields/direction_clock.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "direction", - "type": "combo", - "label": "Direction", - "strings": { - "options": { - "clockwise": "Clockwise", - "anticlockwise": "Counterclockwise" - } - } -} diff --git a/data/presets/fields/direction_point.json b/data/presets/fields/direction_point.json deleted file mode 100644 index ea291bfaf8..0000000000 --- a/data/presets/fields/direction_point.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "direction", - "type": "number", - "label": "Direction (Degrees Clockwise)", - "placeholder": "45, 90, 180, 270", - "increment": 5, - "geometry": [ - "point" - ] -} diff --git a/data/presets/fields/direction_vertex.json b/data/presets/fields/direction_vertex.json deleted file mode 100644 index 4084ab684e..0000000000 --- a/data/presets/fields/direction_vertex.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "direction", - "type": "combo", - "label": "Direction Affected", - "strings": { - "options": { - "forward": "Forward", - "backward": "Backward", - "both": "Both / All" - } - } -} diff --git a/data/presets/fields/direction_vertex_dual.json b/data/presets/fields/direction_vertex_dual.json deleted file mode 100644 index ee4f700521..0000000000 --- a/data/presets/fields/direction_vertex_dual.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "direction", - "type": "combo", - "label": "Direction Affected", - "strings": { - "options": { - "forward": "Forward", - "backward": "Backward" - } - } -} diff --git a/data/presets/fields/dispensing.json b/data/presets/fields/dispensing.json deleted file mode 100644 index b400f24aea..0000000000 --- a/data/presets/fields/dispensing.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "dispensing", - "type": "check", - "label": "Dispenses Prescriptions", - "default": "yes" -} diff --git a/data/presets/fields/display.json b/data/presets/fields/display.json deleted file mode 100644 index 83d9dc8456..0000000000 --- a/data/presets/fields/display.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "display", - "type": "combo", - "label": "Display", - "options": ["analog", "digital", "sundial", "unorthodox"] -} diff --git a/data/presets/fields/distance.json b/data/presets/fields/distance.json deleted file mode 100644 index ed24ed3d7a..0000000000 --- a/data/presets/fields/distance.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "distance", - "type": "text", - "label": "Distance", - "terms": [ - "length", - "mileage" - ] -} diff --git a/data/presets/fields/disused/amenity.json b/data/presets/fields/disused/amenity.json deleted file mode 100644 index 68b2397366..0000000000 --- a/data/presets/fields/disused/amenity.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "disused:amenity", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/disused/railway.json b/data/presets/fields/disused/railway.json deleted file mode 100644 index 414d7591bb..0000000000 --- a/data/presets/fields/disused/railway.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "disused:railway", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/disused/shop.json b/data/presets/fields/disused/shop.json deleted file mode 100644 index a12f0a479d..0000000000 --- a/data/presets/fields/disused/shop.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "disused:shop", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/dock.json b/data/presets/fields/dock.json deleted file mode 100644 index 97fb471e47..0000000000 --- a/data/presets/fields/dock.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "dock", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/dog.json b/data/presets/fields/dog.json deleted file mode 100644 index 78461e24c6..0000000000 --- a/data/presets/fields/dog.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "dog", - "type": "combo", - "label": "Dogs", - "strings": { - "options": { - "yes": "Allowed", - "leashed": "Leashed Only", - "no": "Not Allowed" - } - }, - "terms": [ - "animals", - "pets" - ] -} diff --git a/data/presets/fields/door.json b/data/presets/fields/door.json deleted file mode 100644 index 5bb875c1dc..0000000000 --- a/data/presets/fields/door.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "door", - "type": "combo", - "label": "Door" -} diff --git a/data/presets/fields/door_type.json b/data/presets/fields/door_type.json deleted file mode 100644 index 7135017e3e..0000000000 --- a/data/presets/fields/door_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "door", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/drink_multi.json b/data/presets/fields/drink_multi.json deleted file mode 100644 index 3cc819ad68..0000000000 --- a/data/presets/fields/drink_multi.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "drink:", - "type": "multiCombo", - "label": "Drinks" -} diff --git a/data/presets/fields/drinking_water.json b/data/presets/fields/drinking_water.json deleted file mode 100644 index 2039409735..0000000000 --- a/data/presets/fields/drinking_water.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "drinking_water", - "type": "check", - "label": "Drinkable", - "terms": [ - "drinkworthy", - "potable" - ] -} diff --git a/data/presets/fields/drive_through.json b/data/presets/fields/drive_through.json deleted file mode 100644 index 9aca6f0fe8..0000000000 --- a/data/presets/fields/drive_through.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "drive_through", - "type": "check", - "label": "Drive-Through" -} diff --git a/data/presets/fields/duration.json b/data/presets/fields/duration.json deleted file mode 100644 index 5a3a3f1deb..0000000000 --- a/data/presets/fields/duration.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "duration", - "type": "text", - "label": "Duration", - "placeholder": "00:00" -} diff --git a/data/presets/fields/ele.json b/data/presets/fields/ele.json deleted file mode 100644 index 3a59c3df82..0000000000 --- a/data/presets/fields/ele.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "ele", - "type": "number", - "icon": "elevation", - "label": "Elevation", - "geometry": ["line", "area", "relation"], - "terms": [ - "altitude", - "height" - ] -} diff --git a/data/presets/fields/ele_node.json b/data/presets/fields/ele_node.json deleted file mode 100644 index 5609dbc66e..0000000000 --- a/data/presets/fields/ele_node.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "ele", - "type": "number", - "icon": "elevation", - "label": "Elevation", - "universal": true, - "geometry": ["point", "vertex"], - "terms": [ - "altitude", - "height" - ] -} diff --git a/data/presets/fields/electrified.json b/data/presets/fields/electrified.json deleted file mode 100644 index 887f6a5463..0000000000 --- a/data/presets/fields/electrified.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "key": "electrified", - "type": "combo", - "label": "Electrification", - "placeholder": "Contact Line, Electrified Rail...", - "strings": { - "options": { - "contact_line": "Contact Line", - "rail": "Electrified Rail", - "yes": "Yes (unspecified)", - "no": "No" - } - }, - "terms": [ - "contact line", - "powered", - "third rail" - ] -} diff --git a/data/presets/fields/email.json b/data/presets/fields/email.json deleted file mode 100644 index 1e8439d249..0000000000 --- a/data/presets/fields/email.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "email", - "type": "email", - "placeholder": "example@example.com", - "label": "Email" -} diff --git a/data/presets/fields/embankment.json b/data/presets/fields/embankment.json deleted file mode 100644 index 267712797a..0000000000 --- a/data/presets/fields/embankment.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "embankment", - "type": "typeCombo", - "label": "Type", - "usage": "group", - "placeholder": "Default" -} diff --git a/data/presets/fields/embassy.json b/data/presets/fields/embassy.json deleted file mode 100644 index 3fa14fa978..0000000000 --- a/data/presets/fields/embassy.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "embassy", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/emergency.json b/data/presets/fields/emergency.json deleted file mode 100644 index 359109bbb6..0000000000 --- a/data/presets/fields/emergency.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "emergency", - "type": "check", - "label": "Emergency" -} \ No newline at end of file diff --git a/data/presets/fields/emergency_combo.json b/data/presets/fields/emergency_combo.json deleted file mode 100644 index 02f7f9371f..0000000000 --- a/data/presets/fields/emergency_combo.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "emergency", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/emergency_ward_entrance.json b/data/presets/fields/emergency_ward_entrance.json deleted file mode 100644 index 764d13505c..0000000000 --- a/data/presets/fields/emergency_ward_entrance.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "emergency_ward_entrance", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/enforcement.json b/data/presets/fields/enforcement.json deleted file mode 100644 index e330ae5692..0000000000 --- a/data/presets/fields/enforcement.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "enforcement", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/entrance.json b/data/presets/fields/entrance.json deleted file mode 100644 index 5809e086ae..0000000000 --- a/data/presets/fields/entrance.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "entrance", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/except.json b/data/presets/fields/except.json deleted file mode 100644 index 38458d0881..0000000000 --- a/data/presets/fields/except.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "except", - "type": "combo", - "label": "Exceptions" -} \ No newline at end of file diff --git a/data/presets/fields/expected_rcn_route_relations.json b/data/presets/fields/expected_rcn_route_relations.json deleted file mode 100644 index 50d8259026..0000000000 --- a/data/presets/fields/expected_rcn_route_relations.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "expected_rcn_route_relations", - "type": "number", - "label": "Adjacent Cycling Nodes" -} diff --git a/data/presets/fields/expected_rwn_route_relations.json b/data/presets/fields/expected_rwn_route_relations.json deleted file mode 100644 index f0247fb4fc..0000000000 --- a/data/presets/fields/expected_rwn_route_relations.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "expected_rwn_route_relations", - "type": "number", - "label": "Adjacent Walking Nodes" -} diff --git a/data/presets/fields/faces.json b/data/presets/fields/faces.json deleted file mode 100644 index 91087ccc5b..0000000000 --- a/data/presets/fields/faces.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "faces", - "type": "number", - "minValue": 0, - "label": "Faces" -} diff --git a/data/presets/fields/fax.json b/data/presets/fields/fax.json deleted file mode 100644 index 4571c9e5eb..0000000000 --- a/data/presets/fields/fax.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "fax", - "type": "tel", - "label": "Fax", - "placeholder":"+31 42 123 4567" -} diff --git a/data/presets/fields/fee.json b/data/presets/fields/fee.json deleted file mode 100644 index 33dc526c41..0000000000 --- a/data/presets/fields/fee.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "fee", - "type": "check", - "label": "Fee" -} \ No newline at end of file diff --git a/data/presets/fields/fence_type.json b/data/presets/fields/fence_type.json deleted file mode 100644 index f0b0f90b6c..0000000000 --- a/data/presets/fields/fence_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "fence_type", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/fire_hydrant/diameter.json b/data/presets/fields/fire_hydrant/diameter.json deleted file mode 100644 index 4a2bc90105..0000000000 --- a/data/presets/fields/fire_hydrant/diameter.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "fire_hydrant:diameter", - "type": "combo", - "label": "Diameter (mm, in, or letters)", - "snake_case": false -} diff --git a/data/presets/fields/fire_hydrant/pressure.json b/data/presets/fields/fire_hydrant/pressure.json deleted file mode 100644 index 2c6b0354ea..0000000000 --- a/data/presets/fields/fire_hydrant/pressure.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "fire_hydrant:pressure", - "type": "combo", - "label": "Pressure (bar)", - "snake_case": false -} diff --git a/data/presets/fields/fire_hydrant/type.json b/data/presets/fields/fire_hydrant/type.json deleted file mode 100644 index 9e787ab12d..0000000000 --- a/data/presets/fields/fire_hydrant/type.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "fire_hydrant:type", - "type": "combo", - "label": "Shape", - "strings": { - "options": { - "pillar": "Pillar/Aboveground", - "underground": "Underground", - "wall": "Wall", - "pipe": "Capped Pipe" - } - } -} diff --git a/data/presets/fields/fireplace.json b/data/presets/fields/fireplace.json deleted file mode 100644 index 70254ec553..0000000000 --- a/data/presets/fields/fireplace.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "fireplace", - "type": "check", - "label": "Fireplace" -} diff --git a/data/presets/fields/fishing.json b/data/presets/fields/fishing.json deleted file mode 100644 index 4b43bf41b3..0000000000 --- a/data/presets/fields/fishing.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "fishing", - "type": "combo", - "label": "Fishing" -} diff --git a/data/presets/fields/fitness_station.json b/data/presets/fields/fitness_station.json deleted file mode 100644 index aa78767d05..0000000000 --- a/data/presets/fields/fitness_station.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "fitness_station", - "type": "typeCombo", - "label": "Equipment Type" -} diff --git a/data/presets/fields/fixme.json b/data/presets/fields/fixme.json deleted file mode 100644 index e9d7401f21..0000000000 --- a/data/presets/fields/fixme.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "fixme", - "type": "textarea", - "label": "Fix Me", - "universal": true, - "terms": [ - "help request" - ] -} diff --git a/data/presets/fields/flag/type.json b/data/presets/fields/flag/type.json deleted file mode 100644 index 9f9978a491..0000000000 --- a/data/presets/fields/flag/type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "flag:type", - "type": "combo", - "label": "Flag Type" -} diff --git a/data/presets/fields/floating.json b/data/presets/fields/floating.json deleted file mode 100644 index bc88753a6a..0000000000 --- a/data/presets/fields/floating.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "floating", - "type": "check", - "label": "Floating" -} diff --git a/data/presets/fields/flood_prone.json b/data/presets/fields/flood_prone.json deleted file mode 100644 index 8b385d940b..0000000000 --- a/data/presets/fields/flood_prone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "flood_prone", - "type": "check", - "label": "Flood Prone" -} \ No newline at end of file diff --git a/data/presets/fields/ford.json b/data/presets/fields/ford.json deleted file mode 100644 index 149acfffa5..0000000000 --- a/data/presets/fields/ford.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "ford", - "type": "typeCombo", - "label": "Type", - "usage": "group", - "placeholder": "Default" -} diff --git a/data/presets/fields/fountain.json b/data/presets/fields/fountain.json deleted file mode 100644 index de00d7cebb..0000000000 --- a/data/presets/fields/fountain.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "fountain", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/frequency.json b/data/presets/fields/frequency.json deleted file mode 100644 index 97246994d1..0000000000 --- a/data/presets/fields/frequency.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "frequency", - "type": "combo", - "label": "Operating Frequency" -} diff --git a/data/presets/fields/frequency_electrified.json b/data/presets/fields/frequency_electrified.json deleted file mode 100644 index ea5a13b8cd..0000000000 --- a/data/presets/fields/frequency_electrified.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "frequency", - "type": "combo", - "label": "Operating Frequency", - "prerequisiteTag": { - "key": "electrified", - "valueNot": "no" - } -} diff --git a/data/presets/fields/from.json b/data/presets/fields/from.json deleted file mode 100644 index 5a96cc4696..0000000000 --- a/data/presets/fields/from.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "from", - "type": "text", - "label": "From" -} \ No newline at end of file diff --git a/data/presets/fields/fuel.json b/data/presets/fields/fuel.json deleted file mode 100644 index 73e49b1a2b..0000000000 --- a/data/presets/fields/fuel.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "fuel", - "type": "combo", - "label": "Fuel" -} diff --git a/data/presets/fields/fuel_multi.json b/data/presets/fields/fuel_multi.json deleted file mode 100644 index bb76d9abb1..0000000000 --- a/data/presets/fields/fuel_multi.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "fuel:", - "type": "multiCombo", - "label": "Fuel Types" -} diff --git a/data/presets/fields/gambling.json b/data/presets/fields/gambling.json deleted file mode 100644 index ebe999d13c..0000000000 --- a/data/presets/fields/gambling.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "gambling", - "type": "semiCombo", - "label": "Games" -} diff --git a/data/presets/fields/garden/type.json b/data/presets/fields/garden/type.json deleted file mode 100644 index 2f55f32cc0..0000000000 --- a/data/presets/fields/garden/type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "garden:type", - "type": "combo", - "label": "Garden Type" -} diff --git a/data/presets/fields/gauge.json b/data/presets/fields/gauge.json deleted file mode 100644 index 4863483753..0000000000 --- a/data/presets/fields/gauge.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "gauge", - "type": "combo", - "label": "Gauge" -} diff --git a/data/presets/fields/gender.json b/data/presets/fields/gender.json deleted file mode 100644 index be6bd7a46f..0000000000 --- a/data/presets/fields/gender.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "radio", - "keys": [ - "male", - "female", - "unisex" - ], - "label": "Gender", - "placeholder": "Unknown", - "strings": { - "options": { - "male": "Male", - "female": "Female", - "unisex": "Unisex" - } - }, - "terms": [ - "access", - "female", - "male", - "unisex" - ] -} diff --git a/data/presets/fields/generator/method.json b/data/presets/fields/generator/method.json deleted file mode 100644 index c8cf2d47ee..0000000000 --- a/data/presets/fields/generator/method.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "generator:method", - "type": "combo", - "label": "Method" -} \ No newline at end of file diff --git a/data/presets/fields/generator/output/electricity.json b/data/presets/fields/generator/output/electricity.json deleted file mode 100644 index 01efca5216..0000000000 --- a/data/presets/fields/generator/output/electricity.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "generator:output:electricity", - "type": "typeCombo", - "label": "Power Output", - "placeholder": "50 MW, 100 MW, 200 MW...", - "snake_case": false -} diff --git a/data/presets/fields/generator/source.json b/data/presets/fields/generator/source.json deleted file mode 100644 index 76a197d033..0000000000 --- a/data/presets/fields/generator/source.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "generator:source", - "type": "combo", - "label": "Source" -} \ No newline at end of file diff --git a/data/presets/fields/generator/type.json b/data/presets/fields/generator/type.json deleted file mode 100644 index 7a6a096a4b..0000000000 --- a/data/presets/fields/generator/type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "generator:type", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/geyser/height.json b/data/presets/fields/geyser/height.json deleted file mode 100644 index e5eacbd71a..0000000000 --- a/data/presets/fields/geyser/height.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "geyser:height", - "type": "text", - "label": "Eruption Height" -} diff --git a/data/presets/fields/gnis/feature_id.json b/data/presets/fields/gnis/feature_id.json deleted file mode 100644 index fd8279a746..0000000000 --- a/data/presets/fields/gnis/feature_id.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "gnis:feature_id", - "type": "identifier", - "label": "GNIS Feature ID", - "urlFormat": "https://geonames.usgs.gov/apex/f?p=gnispq:3:::NO::P3_FID:{value}", - "pattern": "^[0-9]{1,}$", - "countryCodes": ["us"], - "terms": [ - "Federal Geographic Names Information Service", - "United States Board on Geographic Names", - "USA" - ] -} diff --git a/data/presets/fields/government.json b/data/presets/fields/government.json deleted file mode 100644 index 0133a83d55..0000000000 --- a/data/presets/fields/government.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "government", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/grades.json b/data/presets/fields/grades.json deleted file mode 100644 index c39121232d..0000000000 --- a/data/presets/fields/grades.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "grades", - "type": "combo", - "label": "Grade Levels", - "terms": [ - "educational stages" - ], - "snake_case": false -} diff --git a/data/presets/fields/grape_variety.json b/data/presets/fields/grape_variety.json deleted file mode 100644 index 8270168460..0000000000 --- a/data/presets/fields/grape_variety.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "grape_variety", - "type": "semiCombo", - "label": "Grape Varieties" -} diff --git a/data/presets/fields/group_only.json b/data/presets/fields/group_only.json deleted file mode 100644 index e61885bb24..0000000000 --- a/data/presets/fields/group_only.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "group_only", - "type": "check", - "label": "Groups Only" -} diff --git a/data/presets/fields/guest_house.json b/data/presets/fields/guest_house.json deleted file mode 100644 index 3ea296b122..0000000000 --- a/data/presets/fields/guest_house.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "guest_house", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/handicap.json b/data/presets/fields/handicap.json deleted file mode 100644 index 29022eb40a..0000000000 --- a/data/presets/fields/handicap.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "handicap", - "type": "number", - "label": "Handicap", - "placeholder": "1-18" -} diff --git a/data/presets/fields/handrail.json b/data/presets/fields/handrail.json deleted file mode 100644 index 58fdf92050..0000000000 --- a/data/presets/fields/handrail.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "handrail", - "type": "check", - "label": "Handrail" -} diff --git a/data/presets/fields/hashtags.json b/data/presets/fields/hashtags.json deleted file mode 100644 index c096ae8b72..0000000000 --- a/data/presets/fields/hashtags.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "hashtags", - "type": "semiCombo", - "label": "Hashtags", - "usage": "changeset", - "placeholder": "#example" -} diff --git a/data/presets/fields/healthcare.json b/data/presets/fields/healthcare.json deleted file mode 100644 index 0e71c85ddf..0000000000 --- a/data/presets/fields/healthcare.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "healthcare", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/healthcare/speciality.json b/data/presets/fields/healthcare/speciality.json deleted file mode 100644 index 8a731b7567..0000000000 --- a/data/presets/fields/healthcare/speciality.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "healthcare:speciality", - "type": "semiCombo", - "reference": { - "key": "healthcare" - }, - "label": "Specialties" -} diff --git a/data/presets/fields/heating.json b/data/presets/fields/heating.json deleted file mode 100644 index 0f8e38360d..0000000000 --- a/data/presets/fields/heating.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "heating", - "type": "check", - "label": "Heating", - "terms": [ - "firepit", - "fireplace", - "heater" - ] -} diff --git a/data/presets/fields/height.json b/data/presets/fields/height.json deleted file mode 100644 index fd548fa6cb..0000000000 --- a/data/presets/fields/height.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "height", - "minValue": 0, - "type": "number", - "label": "Height (Meters)" -} diff --git a/data/presets/fields/height_building.json b/data/presets/fields/height_building.json deleted file mode 100644 index 3ad8324b50..0000000000 --- a/data/presets/fields/height_building.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "height", - "minValue": 0, - "type": "number", - "label": "Building Height (Meters)", - "prerequisiteTag": { - "key": "building", - "valueNot": "no" - } -} diff --git a/data/presets/fields/highspeed.json b/data/presets/fields/highspeed.json deleted file mode 100644 index 614ed3b9af..0000000000 --- a/data/presets/fields/highspeed.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "highspeed", - "type": "check", - "label": "High-Speed" -} diff --git a/data/presets/fields/highway.json b/data/presets/fields/highway.json deleted file mode 100644 index a70354f6d9..0000000000 --- a/data/presets/fields/highway.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "highway", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/historic.json b/data/presets/fields/historic.json deleted file mode 100644 index 3c4caccddf..0000000000 --- a/data/presets/fields/historic.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "historic", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/historic/civilization.json b/data/presets/fields/historic/civilization.json deleted file mode 100644 index 8410791a0e..0000000000 --- a/data/presets/fields/historic/civilization.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "historic:civilization", - "type": "combo", - "label": "Historic Civilization" -} diff --git a/data/presets/fields/historic/wreck/date_sunk.json b/data/presets/fields/historic/wreck/date_sunk.json deleted file mode 100644 index 6c923c9b0e..0000000000 --- a/data/presets/fields/historic/wreck/date_sunk.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "wreck:date_sunk", - "type": "text", - "label": "Date Sunk" -} diff --git a/data/presets/fields/historic/wreck/visible_at_high_tide.json b/data/presets/fields/historic/wreck/visible_at_high_tide.json deleted file mode 100644 index c08287fefa..0000000000 --- a/data/presets/fields/historic/wreck/visible_at_high_tide.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "wreck:visible_at_high_tide", - "type": "check", - "label": "Visible At High Tide" -} diff --git a/data/presets/fields/historic/wreck/visible_at_low_tide.json b/data/presets/fields/historic/wreck/visible_at_low_tide.json deleted file mode 100644 index 2013fe6e3a..0000000000 --- a/data/presets/fields/historic/wreck/visible_at_low_tide.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "wreck:visible_at_low_tide", - "type": "check", - "label": "Visible At Low Tide" -} diff --git a/data/presets/fields/hoops.json b/data/presets/fields/hoops.json deleted file mode 100644 index e5d98688fd..0000000000 --- a/data/presets/fields/hoops.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "hoops", - "type": "number", - "minValue": 0, - "label": "Hoops", - "placeholder": "1, 2, 4..." -} diff --git a/data/presets/fields/horse_dressage.json b/data/presets/fields/horse_dressage.json deleted file mode 100644 index 5c4653b392..0000000000 --- a/data/presets/fields/horse_dressage.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "sport", - "type": "check", - "label": "Dressage Riding", - "strings": { - "options": { - "undefined": "No", - "equestrian": "Yes" - } - }, - "reference": { - "key": "sport", - "value": "equestrian" - } -} diff --git a/data/presets/fields/horse_riding.json b/data/presets/fields/horse_riding.json deleted file mode 100644 index 88c7f9045e..0000000000 --- a/data/presets/fields/horse_riding.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "leisure", - "type": "check", - "label": "Horseback Riding", - "strings": { - "options": { - "undefined": "No", - "horse_riding": "Yes" - } - }, - "reference": { - "key": "leisure", - "value": "horse_riding" - } -} diff --git a/data/presets/fields/horse_scale.json b/data/presets/fields/horse_scale.json deleted file mode 100644 index 1c2dc6e112..0000000000 --- a/data/presets/fields/horse_scale.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "horse_scale", - "type": "combo", - "label": "Horseback Riding Difficulty", - "placeholder": "Difficult, Dangerous...", - "strings": { - "options": { - "common": "Easy: No problems or difficulties. (default)", - "demanding": "Use with caution: Uneven way, occasional difficult passages.", - "difficult": "Difficult: Way narrow and exposed. May contain obstacles to step over and narrow passages.", - "critical": "Borderline: Passable only for experienced riders and horses. Major obstacles. Bridges should be examined carefully.", - "dangerous": "Dangerous: Passable only for very experienced riders and horses and only in good weather. Dismount.", - "impossible": "Impassable: Way or bridge not passable for horses. Too narrow, insuffient support, obstacles like ladders. Danger of life." - } - } -} diff --git a/data/presets/fields/horse_stables.json b/data/presets/fields/horse_stables.json deleted file mode 100644 index 57dd3804bc..0000000000 --- a/data/presets/fields/horse_stables.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "amenity", - "type": "check", - "label": "Riding Stable", - "strings": { - "options": { - "undefined": "No", - "stables": "Yes" - } - }, - "reference": { - "key": "amenity", - "value": "stables" - } -} diff --git a/data/presets/fields/hot_water.json b/data/presets/fields/hot_water.json deleted file mode 100644 index 092d3a5651..0000000000 --- a/data/presets/fields/hot_water.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "hot_water", - "type": "check", - "label": "Hot Water" -} diff --git a/data/presets/fields/iata.json b/data/presets/fields/iata.json deleted file mode 100644 index 3b3851a89c..0000000000 --- a/data/presets/fields/iata.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "iata", - "type": "text", - "label": "IATA Airport Code" -} diff --git a/data/presets/fields/icao.json b/data/presets/fields/icao.json deleted file mode 100644 index a4a8e09b4f..0000000000 --- a/data/presets/fields/icao.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "icao", - "type": "text", - "label": "ICAO Airport Code" -} diff --git a/data/presets/fields/image.json b/data/presets/fields/image.json deleted file mode 100644 index 31fbec0180..0000000000 --- a/data/presets/fields/image.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "image", - "type": "url", - "label": "Image", - "placeholder": "https://example.com/photo.jpg", - "universal": true, - "terms": [ - "icon", - "image uri", - "photo", - "picture" - ] -} diff --git a/data/presets/fields/incline.json b/data/presets/fields/incline.json deleted file mode 100644 index 1e3f4d45cb..0000000000 --- a/data/presets/fields/incline.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "incline", - "type": "combo", - "label": "Incline" -} \ No newline at end of file diff --git a/data/presets/fields/incline_steps.json b/data/presets/fields/incline_steps.json deleted file mode 100644 index 0b54223449..0000000000 --- a/data/presets/fields/incline_steps.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "incline", - "type": "combo", - "label": "Incline", - "strings": { - "options": { - "up": "Up", - "down": "Down" - } - } -} diff --git a/data/presets/fields/indoor.json b/data/presets/fields/indoor.json deleted file mode 100644 index f27350d586..0000000000 --- a/data/presets/fields/indoor.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "indoor", - "type": "check", - "label": "Indoor" -} \ No newline at end of file diff --git a/data/presets/fields/indoor_type.json b/data/presets/fields/indoor_type.json deleted file mode 100644 index 2a3e1eaeed..0000000000 --- a/data/presets/fields/indoor_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "indoor", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/industrial.json b/data/presets/fields/industrial.json deleted file mode 100644 index e0878a0221..0000000000 --- a/data/presets/fields/industrial.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "industrial", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/informal.json b/data/presets/fields/informal.json deleted file mode 100644 index ebc4be5e54..0000000000 --- a/data/presets/fields/informal.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "informal", - "type": "check", - "label": "Informal" -} diff --git a/data/presets/fields/information.json b/data/presets/fields/information.json deleted file mode 100644 index b5fc7a9819..0000000000 --- a/data/presets/fields/information.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "information", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/inscription.json b/data/presets/fields/inscription.json deleted file mode 100644 index d20b6b0e59..0000000000 --- a/data/presets/fields/inscription.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "inscription", - "type": "textarea", - "label": "Inscription" -} diff --git a/data/presets/fields/intermittent.json b/data/presets/fields/intermittent.json deleted file mode 100644 index ffbe6aaa15..0000000000 --- a/data/presets/fields/intermittent.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "intermittent", - "type": "check", - "label": "Intermittent" -} diff --git a/data/presets/fields/intermittent_yes.json b/data/presets/fields/intermittent_yes.json deleted file mode 100644 index 1dfd8c31ce..0000000000 --- a/data/presets/fields/intermittent_yes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "intermittent", - "type": "check", - "label": "Intermittent", - "default": "yes" -} diff --git a/data/presets/fields/internet_access.json b/data/presets/fields/internet_access.json deleted file mode 100644 index b16fb84255..0000000000 --- a/data/presets/fields/internet_access.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "key": "internet_access", - "type": "combo", - "label": "Internet Connection", - "strings": { - "options": { - "yes": "Yes", - "no": "No", - "wlan": "Wifi", - "wired": "Wired", - "terminal": "Terminal" - } - }, - "terms": [ - "wifi", - "wlan" - ] -} diff --git a/data/presets/fields/internet_access/fee.json b/data/presets/fields/internet_access/fee.json deleted file mode 100644 index d2156a6d5c..0000000000 --- a/data/presets/fields/internet_access/fee.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "key": "internet_access:fee", - "type": "combo", - "label": "Internet Access", - "strings": { - "options": { - "no": "Free", - "yes": "Paid", - "customers": "Customers Only" - } - }, - "prerequisiteTag": { - "key": "internet_access", - "valueNot": "no" - }, - "terms": [ - "wifi fee" - ] -} diff --git a/data/presets/fields/internet_access/ssid.json b/data/presets/fields/internet_access/ssid.json deleted file mode 100644 index 3c5ac1cea4..0000000000 --- a/data/presets/fields/internet_access/ssid.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "internet_access:ssid", - "type": "text", - "label": "Wifi Network Name", - "prerequisiteTag": { - "key": "internet_access", - "valueNot": "no" - }, - "terms": [ - "ssid" - ] -} diff --git a/data/presets/fields/interval.json b/data/presets/fields/interval.json deleted file mode 100644 index 72c21b4eb6..0000000000 --- a/data/presets/fields/interval.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "interval", - "type": "text", - "label": "Interval" -} diff --git a/data/presets/fields/junction/ref_oneway.json b/data/presets/fields/junction/ref_oneway.json deleted file mode 100644 index d929f3372c..0000000000 --- a/data/presets/fields/junction/ref_oneway.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "junction:ref", - "type": "text", - "label": "Junction Number", - "prerequisiteTag": { - "key": "oneway", - "value": "yes" - } -} diff --git a/data/presets/fields/junction_line.json b/data/presets/fields/junction_line.json deleted file mode 100644 index f9f6159255..0000000000 --- a/data/presets/fields/junction_line.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "junction", - "type": "combo", - "label": "Junction", - "strings": { - "options": { - "roundabout": "Roundabout", - "circular": "Traffic Circle", - "jughandle": "Jughandle" - } - } -} diff --git a/data/presets/fields/kerb.json b/data/presets/fields/kerb.json deleted file mode 100644 index 2ce631547c..0000000000 --- a/data/presets/fields/kerb.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "kerb", - "type": "combo", - "label": "Curb" -} diff --git a/data/presets/fields/kerb/height.json b/data/presets/fields/kerb/height.json deleted file mode 100644 index 76de6fdd66..0000000000 --- a/data/presets/fields/kerb/height.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "kerb:height", - "type": "combo", - "snake_case": false, - "label": "Height" -} diff --git a/data/presets/fields/kneipp_water_cure_multi.json b/data/presets/fields/kneipp_water_cure_multi.json deleted file mode 100644 index 5844dd997b..0000000000 --- a/data/presets/fields/kneipp_water_cure_multi.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "kneipp_water_cure:", - "type": "multiCombo", - "label": "Basin Types" -} diff --git a/data/presets/fields/label.json b/data/presets/fields/label.json deleted file mode 100644 index 58292ec3a4..0000000000 --- a/data/presets/fields/label.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "label", - "type": "textarea", - "label": "Label" -} diff --git a/data/presets/fields/lamp_mount.json b/data/presets/fields/lamp_mount.json deleted file mode 100644 index 8c904f614d..0000000000 --- a/data/presets/fields/lamp_mount.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "lamp_mount", - "type": "combo", - "label": "Mount" -} diff --git a/data/presets/fields/lamp_type.json b/data/presets/fields/lamp_type.json deleted file mode 100644 index c7adadf30d..0000000000 --- a/data/presets/fields/lamp_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "lamp_type", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/landuse.json b/data/presets/fields/landuse.json deleted file mode 100644 index 43956fd6c0..0000000000 --- a/data/presets/fields/landuse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "landuse", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/lanes.json b/data/presets/fields/lanes.json deleted file mode 100644 index 250d3a6af9..0000000000 --- a/data/presets/fields/lanes.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "lanes", - "type": "number", - "minValue": 0, - "label": "Lanes", - "placeholder": "1, 2, 3..." -} diff --git a/data/presets/fields/language_multi.json b/data/presets/fields/language_multi.json deleted file mode 100644 index 29c1df6fb1..0000000000 --- a/data/presets/fields/language_multi.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "language:", - "type": "multiCombo", - "label": "Languages" -} diff --git a/data/presets/fields/layer.json b/data/presets/fields/layer.json deleted file mode 100644 index 29039f46a6..0000000000 --- a/data/presets/fields/layer.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "layer", - "type": "number", - "label": "Layer", - "placeholder": "0" -} diff --git a/data/presets/fields/leaf_cycle.json b/data/presets/fields/leaf_cycle.json deleted file mode 100644 index 96851b55b0..0000000000 --- a/data/presets/fields/leaf_cycle.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "key": "leaf_cycle", - "type": "combo", - "label": "Leaf Cycle", - "strings": { - "options": { - "evergreen": "Evergreen", - "deciduous": "Deciduous", - "semi_evergreen": "Semi-Evergreen", - "semi_deciduous": "Semi-Deciduous", - "mixed": "Mixed" - } - } -} diff --git a/data/presets/fields/leaf_cycle_singular.json b/data/presets/fields/leaf_cycle_singular.json deleted file mode 100644 index 32f60ce1fe..0000000000 --- a/data/presets/fields/leaf_cycle_singular.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "leaf_cycle", - "type": "combo", - "label": "Leaf Cycle", - "strings": { - "options": { - "evergreen": "Evergreen", - "deciduous": "Deciduous", - "semi_evergreen": "Semi-Evergreen", - "semi_deciduous": "Semi-Deciduous" - } - } -} diff --git a/data/presets/fields/leaf_type.json b/data/presets/fields/leaf_type.json deleted file mode 100644 index 864c0478e2..0000000000 --- a/data/presets/fields/leaf_type.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "leaf_type", - "type": "combo", - "label": "Leaf Type", - "strings": { - "options": { - "broadleaved": "Broadleaved", - "needleleaved": "Needleleaved", - "mixed": "Mixed", - "leafless": "Leafless" - } - } -} diff --git a/data/presets/fields/leaf_type_singular.json b/data/presets/fields/leaf_type_singular.json deleted file mode 100644 index 424eaad9ad..0000000000 --- a/data/presets/fields/leaf_type_singular.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "leaf_type", - "type": "combo", - "label": "Leaf Type", - "strings": { - "options": { - "broadleaved": "Broadleaved", - "needleleaved": "Needleleaved", - "leafless": "Leafless" - } - } -} diff --git a/data/presets/fields/leisure.json b/data/presets/fields/leisure.json deleted file mode 100644 index 8549f14dec..0000000000 --- a/data/presets/fields/leisure.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "leisure", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/length.json b/data/presets/fields/length.json deleted file mode 100644 index b4930c08dd..0000000000 --- a/data/presets/fields/length.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "length", - "type": "number", - "minValue": 0, - "label": "Length (Meters)" -} diff --git a/data/presets/fields/level.json b/data/presets/fields/level.json deleted file mode 100644 index 42c002dd87..0000000000 --- a/data/presets/fields/level.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "key": "level", - "type": "combo", - "label": "Level", - "terms": [ - "building floor", - "deck", - "storey", - "story" - ], - "prerequisiteTag": { - "keyNot": "building" - } -} diff --git a/data/presets/fields/level_semi.json b/data/presets/fields/level_semi.json deleted file mode 100644 index 673681d161..0000000000 --- a/data/presets/fields/level_semi.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "level", - "type": "semiCombo", - "label": "Levels", - "terms": [ - "building floors", - "decks", - "stories", - "storeys", - "storys" - ] -} diff --git a/data/presets/fields/liaison.json b/data/presets/fields/liaison.json deleted file mode 100644 index b9c0ea3ab6..0000000000 --- a/data/presets/fields/liaison.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "liaison", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/line_attachment.json b/data/presets/fields/line_attachment.json deleted file mode 100644 index b45ad11a5c..0000000000 --- a/data/presets/fields/line_attachment.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "line_attachment", - "type": "combo", - "label": "Line Attachment" -} diff --git a/data/presets/fields/line_management.json b/data/presets/fields/line_management.json deleted file mode 100644 index fbee6c7242..0000000000 --- a/data/presets/fields/line_management.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "line_management", - "type": "combo", - "label": "Line Management", - "terms": [ - "branching", - "line topology", - "termination" - ] -} diff --git a/data/presets/fields/lit.json b/data/presets/fields/lit.json deleted file mode 100644 index c825978b8e..0000000000 --- a/data/presets/fields/lit.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "lit", - "type": "check", - "label": "Lit", - "terms": [ - "lamp", - "lighting" - ] -} diff --git a/data/presets/fields/location.json b/data/presets/fields/location.json deleted file mode 100644 index c4d037184a..0000000000 --- a/data/presets/fields/location.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "location", - "type": "combo", - "label": "Location" -} diff --git a/data/presets/fields/location_pool.json b/data/presets/fields/location_pool.json deleted file mode 100644 index be692c4193..0000000000 --- a/data/presets/fields/location_pool.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "location", - "type": "typeCombo", - "label": "Location", - "strings": { - "options": { - "outdoor": "Outdoor", - "indoor": "Indoor", - "roof": "Rooftop" - } - } -} diff --git a/data/presets/fields/lock.json b/data/presets/fields/lock.json deleted file mode 100644 index 0276304021..0000000000 --- a/data/presets/fields/lock.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "lock", - "type": "check", - "label": "Lock" -} diff --git a/data/presets/fields/lockable.json b/data/presets/fields/lockable.json deleted file mode 100644 index b679ea4669..0000000000 --- a/data/presets/fields/lockable.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "lockable", - "type": "check", - "label": "Lockable" -} diff --git a/data/presets/fields/man_made.json b/data/presets/fields/man_made.json deleted file mode 100644 index eb612b08a1..0000000000 --- a/data/presets/fields/man_made.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "man_made", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/manhole.json b/data/presets/fields/manhole.json deleted file mode 100644 index ebedb95aae..0000000000 --- a/data/presets/fields/manhole.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "manhole", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/manufacturer.json b/data/presets/fields/manufacturer.json deleted file mode 100644 index b7c8dcaf40..0000000000 --- a/data/presets/fields/manufacturer.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "manufacturer", - "type": "combo", - "snake_case": false, - "caseSensitive": true, - "label": "Manufacturer" -} diff --git a/data/presets/fields/map_size.json b/data/presets/fields/map_size.json deleted file mode 100644 index 418fd5a8e1..0000000000 --- a/data/presets/fields/map_size.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "map_size", - "type": "typeCombo", - "label": "Coverage" -} diff --git a/data/presets/fields/map_type.json b/data/presets/fields/map_type.json deleted file mode 100644 index 4341ed6b55..0000000000 --- a/data/presets/fields/map_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "map_type", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/mapillary.json b/data/presets/fields/mapillary.json deleted file mode 100644 index 9dcfc52fd1..0000000000 --- a/data/presets/fields/mapillary.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "mapillary", - "type": "identifier", - "label": "Mapillary Image ID", - "urlFormat": "https://mapillary.com/app/?focus=photo&pKey={value}", - "pattern": "^[a-zA-Z0-9-_]{1,}$", - "universal": true -} diff --git a/data/presets/fields/marker.json b/data/presets/fields/marker.json deleted file mode 100644 index e50e5955d4..0000000000 --- a/data/presets/fields/marker.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "marker", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/material.json b/data/presets/fields/material.json deleted file mode 100644 index 50911c20e7..0000000000 --- a/data/presets/fields/material.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "material", - "type": "combo", - "label": "Material" -} diff --git a/data/presets/fields/max_age.json b/data/presets/fields/max_age.json deleted file mode 100644 index 39c429c3dc..0000000000 --- a/data/presets/fields/max_age.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "max_age", - "type": "number", - "minValue": 0, - "label": "Maximum Age", - "terms": [ - "upper age limit" - ] -} diff --git a/data/presets/fields/maxheight.json b/data/presets/fields/maxheight.json deleted file mode 100644 index b307ae441e..0000000000 --- a/data/presets/fields/maxheight.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "maxheight", - "type": "combo", - "label": "Max Height", - "placeholder": "4, 4.5, 5, 14'0\", 14'6\", 15'0\"", - "snake_case": false -} diff --git a/data/presets/fields/maxspeed.json b/data/presets/fields/maxspeed.json deleted file mode 100644 index 6dac8c8508..0000000000 --- a/data/presets/fields/maxspeed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "maxspeed", - "type": "maxspeed", - "label": "Speed Limit", - "placeholder": "40, 50, 60..." -} diff --git a/data/presets/fields/maxspeed/advisory.json b/data/presets/fields/maxspeed/advisory.json deleted file mode 100644 index ec1e593094..0000000000 --- a/data/presets/fields/maxspeed/advisory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "maxspeed:advisory", - "type": "maxspeed", - "label": "Advisory Speed Limit", - "placeholder": "40, 50, 60..." -} diff --git a/data/presets/fields/maxstay.json b/data/presets/fields/maxstay.json deleted file mode 100644 index 2924d372a6..0000000000 --- a/data/presets/fields/maxstay.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "key": "maxstay", - "type": "combo", - "label": "Max Stay", - "options": [ - "15 min", - "30 min", - "45 min", - "1 hr", - "1.5 hr", - "2 hr", - "2.5 hr", - "3 hr", - "4 hr", - "1 day", - "2 day" - ], - "snake_case": false -} diff --git a/data/presets/fields/maxweight.json b/data/presets/fields/maxweight.json deleted file mode 100644 index 973aa5bb48..0000000000 --- a/data/presets/fields/maxweight.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "maxweight", - "type": "combo", - "label": "Max Weight", - "snake_case": false -} diff --git a/data/presets/fields/maxweight_bridge.json b/data/presets/fields/maxweight_bridge.json deleted file mode 100644 index 181d8d124c..0000000000 --- a/data/presets/fields/maxweight_bridge.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "maxweight", - "type": "combo", - "label": "Max Weight", - "snake_case": false, - "prerequisiteTag": { - "key": "bridge", - "valueNot": "no" - } -} diff --git a/data/presets/fields/memorial.json b/data/presets/fields/memorial.json deleted file mode 100644 index 0fd2418af0..0000000000 --- a/data/presets/fields/memorial.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "memorial", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/microbrewery.json b/data/presets/fields/microbrewery.json deleted file mode 100644 index cdf5c9c6f8..0000000000 --- a/data/presets/fields/microbrewery.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "microbrewery", - "type": "check", - "label": "Microbrewery", - "terms": [ - "brewpub", - "craft beer" - ] -} diff --git a/data/presets/fields/mimics.json b/data/presets/fields/mimics.json deleted file mode 100644 index 2a476891a1..0000000000 --- a/data/presets/fields/mimics.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "mimics", - "type": "combo", - "label": "Mimics", - "terms": [ - "camoflauged", - "disguised", - "looks like", - "tree" - ] -} diff --git a/data/presets/fields/min_age.json b/data/presets/fields/min_age.json deleted file mode 100644 index 71284e5e63..0000000000 --- a/data/presets/fields/min_age.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "min_age", - "type": "number", - "minValue": 0, - "label": "Minimum Age", - "terms": [ - "lower age limit" - ] -} diff --git a/data/presets/fields/minspeed.json b/data/presets/fields/minspeed.json deleted file mode 100644 index d09d514679..0000000000 --- a/data/presets/fields/minspeed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "minspeed", - "type": "maxspeed", - "label": "Minimum Speed Limit", - "placeholder": "20, 30, 40..." -} diff --git a/data/presets/fields/monitoring_multi.json b/data/presets/fields/monitoring_multi.json deleted file mode 100644 index dd9630bf44..0000000000 --- a/data/presets/fields/monitoring_multi.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "monitoring:", - "type": "multiCombo", - "label": "Monitoring" -} diff --git a/data/presets/fields/mtb/scale.json b/data/presets/fields/mtb/scale.json deleted file mode 100644 index c7dbb65070..0000000000 --- a/data/presets/fields/mtb/scale.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "key": "mtb:scale", - "type": "combo", - "label": "Mountain Biking Difficulty", - "placeholder": "0, 1, 2, 3...", - "strings": { - "options": { - "0": "0: Solid gravel/packed earth, no obstacles, wide curves", - "1": "1: Some loose surface, small obstacles, wide curves", - "2": "2: Much loose surface, large obstacles, easy hairpins", - "3": "3: Slippery surface, large obstacles, tight hairpins", - "4": "4: Loose surface or boulders, dangerous hairpins", - "5": "5: Maximum difficulty, boulder fields, landslides", - "6": "6: Not rideable except by the very best mountain bikers" - } - } -} diff --git a/data/presets/fields/mtb/scale/imba.json b/data/presets/fields/mtb/scale/imba.json deleted file mode 100644 index a71234bf63..0000000000 --- a/data/presets/fields/mtb/scale/imba.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "mtb:scale:imba", - "type": "combo", - "label": "IMBA Trail Difficulty", - "placeholder": "Easy, Medium, Difficult...", - "strings": { - "options": { - "0": "Easiest (white circle)", - "1": "Easy (green circle)", - "2": "Medium (blue square)", - "3": "Difficult (black diamond)", - "4": "Extremely Difficult (double black diamond)" - } - } -} diff --git a/data/presets/fields/mtb/scale/uphill.json b/data/presets/fields/mtb/scale/uphill.json deleted file mode 100644 index fdfb0c0b32..0000000000 --- a/data/presets/fields/mtb/scale/uphill.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "mtb:scale:uphill", - "type": "combo", - "label": "Mountain Biking Uphill Difficulty", - "placeholder": "0, 1, 2, 3...", - "strings": { - "options": { - "0": "0: Avg. incline <10%, gravel/packed earth, no obstacles", - "1": "1: Avg. incline <15%, gravel/packed earth, few small objects", - "2": "2: Avg. incline <20%, stable surface, fistsize rocks/roots", - "3": "3: Avg. incline <25%, variable surface, fistsize rocks/branches", - "4": "4: Avg. incline <30%, poor condition, big rocks/branches", - "5": "5: Very steep, bike generally needs to be pushed or carried" - } - } -} diff --git a/data/presets/fields/museum.json b/data/presets/fields/museum.json deleted file mode 100644 index defc585de5..0000000000 --- a/data/presets/fields/museum.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "museum", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/name.json b/data/presets/fields/name.json deleted file mode 100644 index 9b6c8e5dd5..0000000000 --- a/data/presets/fields/name.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "name", - "type": "localized", - "label": "Name", - "universal": true, - "placeholder": "Common name (if any)", - "terms": [ - "label", - "title" - ] -} diff --git a/data/presets/fields/natural.json b/data/presets/fields/natural.json deleted file mode 100644 index f782ddc8f2..0000000000 --- a/data/presets/fields/natural.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "natural", - "type": "typeCombo", - "label": "Natural" -} \ No newline at end of file diff --git a/data/presets/fields/network.json b/data/presets/fields/network.json deleted file mode 100644 index 3c07eb997d..0000000000 --- a/data/presets/fields/network.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "network", - "type": "text", - "label": "Network" -} \ No newline at end of file diff --git a/data/presets/fields/network/type.json b/data/presets/fields/network/type.json deleted file mode 100644 index 6798d03271..0000000000 --- a/data/presets/fields/network/type.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "network:type", - "type": "combo", - "label": "Network Type", - "prerequisiteTag": { - "key": "network" - } -} diff --git a/data/presets/fields/network_bicycle.json b/data/presets/fields/network_bicycle.json deleted file mode 100644 index 05795a6259..0000000000 --- a/data/presets/fields/network_bicycle.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "key": "network", - "type": "combo", - "label": "Network Class", - "placeholder": "Local, Regional, National, International", - "strings": { - "options": { - "lcn": "Local", - "rcn": "Regional", - "ncn": "National", - "icn": "International" - } - } -} diff --git a/data/presets/fields/network_foot.json b/data/presets/fields/network_foot.json deleted file mode 100644 index 2c084a1ba9..0000000000 --- a/data/presets/fields/network_foot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "key": "network", - "type": "combo", - "label": "Network Class", - "placeholder": "Local, Regional, National, International", - "strings": { - "options": { - "lwn": "Local", - "rwn": "Regional", - "nwn": "National", - "iwn": "International" - } - } -} diff --git a/data/presets/fields/network_horse.json b/data/presets/fields/network_horse.json deleted file mode 100644 index 450c54921f..0000000000 --- a/data/presets/fields/network_horse.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "key": "network", - "type": "combo", - "label": "Network Class", - "placeholder": "Local, Regional, National, International", - "strings": { - "options": { - "lhn": "Local", - "rhn": "Regional", - "nhn": "National", - "ihn": "International" - } - } -} diff --git a/data/presets/fields/network_road.json b/data/presets/fields/network_road.json deleted file mode 100644 index abac5b20d6..0000000000 --- a/data/presets/fields/network_road.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "network", - "type": "networkCombo", - "label": "Network" -} \ No newline at end of file diff --git a/data/presets/fields/not/name.json b/data/presets/fields/not/name.json deleted file mode 100644 index 99e1c0a940..0000000000 --- a/data/presets/fields/not/name.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "not:name", - "type": "semiCombo", - "label": "Incorrect Names", - "terms": [ - "common mistake names", - "wrong names" - ] -} diff --git a/data/presets/fields/note.json b/data/presets/fields/note.json deleted file mode 100644 index b53905b1bc..0000000000 --- a/data/presets/fields/note.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "note", - "type": "textarea", - "universal": true, - "icon": "note", - "label": "Note", - "terms": [ - "comment" - ] -} diff --git a/data/presets/fields/office.json b/data/presets/fields/office.json deleted file mode 100644 index b032efa1e0..0000000000 --- a/data/presets/fields/office.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "office", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/oneway.json b/data/presets/fields/oneway.json deleted file mode 100644 index f83d22a3d9..0000000000 --- a/data/presets/fields/oneway.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "key": "oneway", - "type": "onewayCheck", - "label": "One Way", - "strings": { - "options": { - "undefined": "Assumed to be No", - "yes": "Yes", - "no": "No", - "reversible": "Reversible", - "alternating": "Alternating" - } - }, - "terms": [ - "bidirectional", - "oneway", - "unidirectional" - ] -} diff --git a/data/presets/fields/oneway/bicycle.json b/data/presets/fields/oneway/bicycle.json deleted file mode 100644 index f2f39be86c..0000000000 --- a/data/presets/fields/oneway/bicycle.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "oneway:bicycle", - "type": "check", - "label": "One Way (Bicycles)", - "prerequisiteTag": { - "key": "oneway" - } -} diff --git a/data/presets/fields/oneway_yes.json b/data/presets/fields/oneway_yes.json deleted file mode 100644 index 1914f203ab..0000000000 --- a/data/presets/fields/oneway_yes.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "key": "oneway", - "type": "onewayCheck", - "label": "One Way", - "strings": { - "options": { - "undefined": "Assumed to be Yes", - "yes": "Yes", - "no": "No", - "reversible": "Reversible", - "alternating": "Alternating" - } - } -} diff --git a/data/presets/fields/openfire.json b/data/presets/fields/openfire.json deleted file mode 100644 index ad416e36e8..0000000000 --- a/data/presets/fields/openfire.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "openfire", - "type": "check", - "label": "Open Fires Allowed" -} diff --git a/data/presets/fields/opening_date.json b/data/presets/fields/opening_date.json deleted file mode 100644 index 186b42f533..0000000000 --- a/data/presets/fields/opening_date.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "opening_date", - "type": "text", - "label": "Expected Opening Date", - "placeholder": "YYYY-MM-DD" -} diff --git a/data/presets/fields/opening_hours.json b/data/presets/fields/opening_hours.json deleted file mode 100644 index f3b445b116..0000000000 --- a/data/presets/fields/opening_hours.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "opening_hours", - "type": "combo", - "label": "Hours", - "placeholder": "Unknown", - "snake_case": false -} diff --git a/data/presets/fields/opening_hours/covid19.json b/data/presets/fields/opening_hours/covid19.json deleted file mode 100644 index a21dc55984..0000000000 --- a/data/presets/fields/opening_hours/covid19.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "opening_hours:covid19", - "type": "combo", - "label": "COVID-19 Pandemic Hours", - "terms": [ - "coronavirus", - "lockdown", - "opening hours", - "SARS‑CoV‑2" - ], - "snake_case": false -} diff --git a/data/presets/fields/operator.json b/data/presets/fields/operator.json deleted file mode 100644 index 893e74156e..0000000000 --- a/data/presets/fields/operator.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "operator", - "type": "text", - "label": "Operator" -} \ No newline at end of file diff --git a/data/presets/fields/operator/type.json b/data/presets/fields/operator/type.json deleted file mode 100644 index 1b0ba0716a..0000000000 --- a/data/presets/fields/operator/type.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "operator:type", - "type": "combo", - "label": "Operator Type", - "prerequisiteTag": { - "key": "operator" - } -} diff --git a/data/presets/fields/organic.json b/data/presets/fields/organic.json deleted file mode 100644 index aede47d250..0000000000 --- a/data/presets/fields/organic.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "organic", - "type": "combo", - "label": "Organic Products", - "strings": { - "options": { - "no": "None", - "yes": "Some", - "only": "Only" - } - }, - "terms": [ - "natural", - "non-gmo" - ] -} diff --git a/data/presets/fields/outdoor_seating.json b/data/presets/fields/outdoor_seating.json deleted file mode 100644 index 9fe8a01bf9..0000000000 --- a/data/presets/fields/outdoor_seating.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "outdoor_seating", - "type": "check", - "label": "Outdoor Seating" -} diff --git a/data/presets/fields/par.json b/data/presets/fields/par.json deleted file mode 100644 index 4dc30f99e1..0000000000 --- a/data/presets/fields/par.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "par", - "type": "number", - "minValue": 1, - "label": "Par", - "placeholder": "3, 4, 5..." -} diff --git a/data/presets/fields/park_ride.json b/data/presets/fields/park_ride.json deleted file mode 100644 index bdb6713a1a..0000000000 --- a/data/presets/fields/park_ride.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "park_ride", - "type": "check", - "label": "Park and Ride" -} diff --git a/data/presets/fields/parking.json b/data/presets/fields/parking.json deleted file mode 100644 index a0925767ba..0000000000 --- a/data/presets/fields/parking.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "key": "parking", - "type": "combo", - "label": "Type", - "strings": { - "options": { - "surface": "Surface", - "underground": "Underground", - "multi-storey": "Multilevel", - "lane": "Roadside Lane", - "carports": "Carports", - "garage_boxes": "Garage Boxes", - "rooftop": "Rooftop", - "sheds": "Sheds" - } - } -} diff --git a/data/presets/fields/parking_entrance.json b/data/presets/fields/parking_entrance.json deleted file mode 100644 index 1460465c6b..0000000000 --- a/data/presets/fields/parking_entrance.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "parking", - "type": "combo", - "label": "Type", - "strings": { - "options": { - "underground": "Underground", - "multi-storey": "Multilevel" - } - } -} diff --git a/data/presets/fields/parking_space.json b/data/presets/fields/parking_space.json deleted file mode 100644 index a7183080ff..0000000000 --- a/data/presets/fields/parking_space.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "parking_space", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/payment_multi.json b/data/presets/fields/payment_multi.json deleted file mode 100644 index 587fb013a4..0000000000 --- a/data/presets/fields/payment_multi.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "payment:", - "type": "multiCombo", - "label": "Payment Types" -} diff --git a/data/presets/fields/payment_multi_fee.json b/data/presets/fields/payment_multi_fee.json deleted file mode 100644 index b9ad35257a..0000000000 --- a/data/presets/fields/payment_multi_fee.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "payment:", - "type": "multiCombo", - "label": "Payment Types", - "prerequisiteTag": { - "key": "fee", - "valueNot": "no" - } -} diff --git a/data/presets/fields/phases.json b/data/presets/fields/phases.json deleted file mode 100644 index b365794d6a..0000000000 --- a/data/presets/fields/phases.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "phases", - "type": "number", - "minValue": 1, - "label": "Phases", - "placeholder": "1, 2, 3..." -} diff --git a/data/presets/fields/phone.json b/data/presets/fields/phone.json deleted file mode 100644 index 23ed71e20b..0000000000 --- a/data/presets/fields/phone.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "phone", - "type": "tel", - "icon": "maki-telephone", - "label": "Telephone", - "placeholder": "+31 42 123 4567", - "terms": [ - "phone number" - ] -} diff --git a/data/presets/fields/piste/difficulty.json b/data/presets/fields/piste/difficulty.json deleted file mode 100644 index a06a3d18b3..0000000000 --- a/data/presets/fields/piste/difficulty.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "key": "piste:difficulty", - "type": "combo", - "label": "Difficulty", - "placeholder": "Easy, Intermediate, Advanced...", - "strings": { - "options": { - "novice": "Novice", - "easy": "Easy", - "intermediate": "Intermediate", - "advanced": "Advanced", - "expert": "Expert", - "freeride": "Freeride", - "extreme": "Extreme" - } - } -} diff --git a/data/presets/fields/piste/difficulty_downhill.json b/data/presets/fields/piste/difficulty_downhill.json deleted file mode 100644 index 7d3b3608af..0000000000 --- a/data/presets/fields/piste/difficulty_downhill.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "key": "piste:difficulty", - "type": "combo", - "label": "Difficulty", - "placeholder": "Easy, Intermediate, Advanced...", - "strings": { - "options": { - "novice": "Novice (instructional)", - "easy": "Easy (green circle)", - "intermediate": "Intermediate (blue square)", - "advanced": "Advanced (black diamond)", - "expert": "Expert (double black diamond)", - "freeride": "Freeride (off-piste)", - "extreme": "Extreme (climbing equipment required)" - } - } -} diff --git a/data/presets/fields/piste/difficulty_nordic.json b/data/presets/fields/piste/difficulty_nordic.json deleted file mode 100644 index 52d1736677..0000000000 --- a/data/presets/fields/piste/difficulty_nordic.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "piste:difficulty", - "type": "combo", - "label": "Difficulty", - "placeholder": "Easy, Intermediate, Advanced...", - "strings": { - "options": { - "novice": "Novice - Flat, no effort needed", - "easy": "Easy - Soft hills, short steep section", - "intermediate": "Intermediate - Steep section", - "advanced": "Advanced - Narrow, steep or icy section, sharp turn", - "expert": "Expert - Dangerous terrain around" - } - } -} diff --git a/data/presets/fields/piste/difficulty_skitour.json b/data/presets/fields/piste/difficulty_skitour.json deleted file mode 100644 index f4b68e2094..0000000000 --- a/data/presets/fields/piste/difficulty_skitour.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "key": "piste:difficulty", - "type": "combo", - "label": "Difficulty", - "placeholder": "Easy, Intermediate, Advanced...", - "strings": { - "options": { - "novice": "Novice - L: <30° incline", - "easy": "Easy - WS: 30-35° incline", - "intermediate": "Intermediate - ZS: 35-40° incline", - "advanced": "Advanced - S: 40-45° incline", - "expert": "Expert - SS: 45–50° incline", - "freeride": "Freeride - AS: 50–55° incline", - "extreme": "Extreme - EX: >55° incline" - } - } -} diff --git a/data/presets/fields/piste/grooming.json b/data/presets/fields/piste/grooming.json deleted file mode 100644 index a96c9f5632..0000000000 --- a/data/presets/fields/piste/grooming.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "piste:grooming", - "type": "combo", - "label": "Grooming", - "strings": { - "options": { - "classic": "Classic", - "mogul": "Mogul", - "backcountry": "Backcountry", - "classic+skating": "Classic and Skating", - "scooter": "Scooter/Snowmobile", - "skating": "Skating" - } - } -} diff --git a/data/presets/fields/piste/grooming_downhill.json b/data/presets/fields/piste/grooming_downhill.json deleted file mode 100644 index ad415eb25a..0000000000 --- a/data/presets/fields/piste/grooming_downhill.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "piste:grooming", - "type": "combo", - "label": "Grooming", - "strings": { - "options": { - "classic": "Classic", - "mogul": "Mogul", - "backcountry": "Backcountry - no grooming" - } - } -} diff --git a/data/presets/fields/piste/grooming_hike.json b/data/presets/fields/piste/grooming_hike.json deleted file mode 100644 index 733b9da413..0000000000 --- a/data/presets/fields/piste/grooming_hike.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "piste:grooming", - "type": "combo", - "label": "Grooming", - "strings": { - "options": { - "classic": "Classic - Winter Hiking", - "backcountry": "Backcountry - Snowshoeing" - } - } -} diff --git a/data/presets/fields/piste/grooming_nordic.json b/data/presets/fields/piste/grooming_nordic.json deleted file mode 100644 index 71b07d9710..0000000000 --- a/data/presets/fields/piste/grooming_nordic.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "key": "piste:grooming", - "type": "combo", - "label": "Grooming", - "strings": { - "options": { - "classic": "Classic", - "backcountry": "Backcountry, no grooming", - "classic+skating": "Classic and Skating", - "scooter": "Scooter/Snowmobile", - "skating": "Skating" - } - } -} diff --git a/data/presets/fields/piste/type.json b/data/presets/fields/piste/type.json deleted file mode 100644 index ac3bee99a5..0000000000 --- a/data/presets/fields/piste/type.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "key": "piste:type", - "type": "typeCombo", - "label": "Type", - "strings": { - "options": { - "downhill": "Downhill", - "nordic": "Nordic", - "skitour": "Skitour", - "sled": "Sled", - "hike": "Hike", - "sleigh": "Sleigh", - "ice_skate": "Ice Skate", - "snow_park": "Snow Park", - "playground": "Playground", - "connection": "Connection" - } - } -} diff --git a/data/presets/fields/place.json b/data/presets/fields/place.json deleted file mode 100644 index 178ebad9b9..0000000000 --- a/data/presets/fields/place.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "place", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/plant.json b/data/presets/fields/plant.json deleted file mode 100644 index b79febe1dd..0000000000 --- a/data/presets/fields/plant.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "plant", - "type": "combo", - "label": "Plant" -} diff --git a/data/presets/fields/plant/method.json b/data/presets/fields/plant/method.json deleted file mode 100644 index fd91bc1f11..0000000000 --- a/data/presets/fields/plant/method.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "plant:method", - "type": "combo", - "label": "Generation Method" -} diff --git a/data/presets/fields/plant/output/electricity.json b/data/presets/fields/plant/output/electricity.json deleted file mode 100644 index 8e903cf862..0000000000 --- a/data/presets/fields/plant/output/electricity.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "plant:output:electricity", - "type": "typeCombo", - "label": "Power Output", - "placeholder": "500 MW, 1000 MW, 2000 MW...", - "snake_case": false -} diff --git a/data/presets/fields/plant/source.json b/data/presets/fields/plant/source.json deleted file mode 100644 index 63d3a713d4..0000000000 --- a/data/presets/fields/plant/source.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "plant:source", - "type": "combo", - "label": "Energy Source" -} diff --git a/data/presets/fields/playground.json b/data/presets/fields/playground.json deleted file mode 100644 index e1d674bc1c..0000000000 --- a/data/presets/fields/playground.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "playground", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/playground/theme.json b/data/presets/fields/playground/theme.json deleted file mode 100644 index 4d2d6eb2a4..0000000000 --- a/data/presets/fields/playground/theme.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "playground:theme", - "type": "combo", - "label": "Theme" -} diff --git a/data/presets/fields/plots.json b/data/presets/fields/plots.json deleted file mode 100644 index bb5f9b1360..0000000000 --- a/data/presets/fields/plots.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "plots", - "type": "number", - "minValue": 0, - "label": "Plots", - "placeholder": "10, 20, 30..." -} diff --git a/data/presets/fields/polling_station.json b/data/presets/fields/polling_station.json deleted file mode 100644 index 13c4efcef6..0000000000 --- a/data/presets/fields/polling_station.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "polling_station", - "type": "check", - "label": "Polling Place", - "terms": [ - "voting place" - ] -} diff --git a/data/presets/fields/population.json b/data/presets/fields/population.json deleted file mode 100644 index 9279162ac9..0000000000 --- a/data/presets/fields/population.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "population", - "type": "text", - "label": "Population" -} diff --git a/data/presets/fields/portable.json b/data/presets/fields/portable.json deleted file mode 100644 index 8c75dd0fab..0000000000 --- a/data/presets/fields/portable.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "portable", - "type": "check", - "label": "Portable", - "terms": [ - "detached", - "mobile", - "moveable" - ] -} diff --git a/data/presets/fields/post.json b/data/presets/fields/post.json deleted file mode 100644 index fb22ab382d..0000000000 --- a/data/presets/fields/post.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "address", - "key": "post", - "keys": [ - "post:block_number", - "post:city", - "post:block_number", - "post:conscriptionnumber", - "post:county", - "post:country", - "post:county", - "post:district", - "post:floor", - "post:hamlet", - "post:housename", - "post:housenumber", - "post:neighbourhood", - "post:place", - "post:postcode", - "post:province", - "post:quarter", - "post:state", - "post:street", - "post:subdistrict", - "post:suburb", - "post:unit" - ], - "label": "Delivery Address" -} diff --git a/data/presets/fields/power.json b/data/presets/fields/power.json deleted file mode 100644 index 840f8dc3f5..0000000000 --- a/data/presets/fields/power.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "power", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/power_supply.json b/data/presets/fields/power_supply.json deleted file mode 100644 index 79666c006f..0000000000 --- a/data/presets/fields/power_supply.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "power_supply", - "type": "check", - "label": "Power Supply" -} diff --git a/data/presets/fields/preschool.json b/data/presets/fields/preschool.json deleted file mode 100644 index e2ff613a4e..0000000000 --- a/data/presets/fields/preschool.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "preschool", - "type": "check", - "label": "Preschool" -} diff --git a/data/presets/fields/produce.json b/data/presets/fields/produce.json deleted file mode 100644 index 8bd8e07ff9..0000000000 --- a/data/presets/fields/produce.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "produce", - "type": "semiCombo", - "label": "Produce" -} diff --git a/data/presets/fields/product.json b/data/presets/fields/product.json deleted file mode 100644 index 4ba4326d4d..0000000000 --- a/data/presets/fields/product.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "product", - "type": "semiCombo", - "label": "Products" -} diff --git a/data/presets/fields/public_bookcase/type.json b/data/presets/fields/public_bookcase/type.json deleted file mode 100644 index 3f2339a3a1..0000000000 --- a/data/presets/fields/public_bookcase/type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "public_bookcase:type", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/pump.json b/data/presets/fields/pump.json deleted file mode 100644 index 9646056f0d..0000000000 --- a/data/presets/fields/pump.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "pump", - "type": "combo", - "label": "Pump", - "strings": { - "options": { - "yes": "Yes", - "manual": "Manual Hand Pump", - "powered": "Machine-Powered Pump", - "no": "None" - } - } -} diff --git a/data/presets/fields/railway.json b/data/presets/fields/railway.json deleted file mode 100644 index 4d77338414..0000000000 --- a/data/presets/fields/railway.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "railway", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/railway/position.json b/data/presets/fields/railway/position.json deleted file mode 100644 index 6573465158..0000000000 --- a/data/presets/fields/railway/position.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "railway:position", - "type": "text", - "placeholder": "Distance to one decimal (123.4)", - "label": "Milestone Position" -} diff --git a/data/presets/fields/railway/signal/direction.json b/data/presets/fields/railway/signal/direction.json deleted file mode 100644 index 8736efb54d..0000000000 --- a/data/presets/fields/railway/signal/direction.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "railway:signal:direction", - "type": "combo", - "label": "Direction Affected", - "strings": { - "options": { - "forward": "Forward", - "backward": "Backward", - "both": "Both / All" - } - } -} diff --git a/data/presets/fields/ramp.json b/data/presets/fields/ramp.json deleted file mode 100644 index 4fe83852bf..0000000000 --- a/data/presets/fields/ramp.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ramp", - "type": "check", - "label": "Embedded Ramp" -} diff --git a/data/presets/fields/rating.json b/data/presets/fields/rating.json deleted file mode 100644 index 334552d14c..0000000000 --- a/data/presets/fields/rating.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "rating", - "type": "combo", - "label": "Power Rating", - "snake_case": false -} diff --git a/data/presets/fields/rcn_ref.json b/data/presets/fields/rcn_ref.json deleted file mode 100644 index d9beb46a73..0000000000 --- a/data/presets/fields/rcn_ref.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "rcn_ref", - "type": "text", - "label": "Cycling Code" -} diff --git a/data/presets/fields/real_fire.json b/data/presets/fields/real_fire.json deleted file mode 100644 index 887e86dd3a..0000000000 --- a/data/presets/fields/real_fire.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "countryCodes": ["gb", "ie"], - "key": "real_fire", - "type": "check", - "label": "Real Fire", - "terms": [ - "fire place", - "fire" - ] -} diff --git a/data/presets/fields/recycling_accepts.json b/data/presets/fields/recycling_accepts.json deleted file mode 100644 index 0866f78841..0000000000 --- a/data/presets/fields/recycling_accepts.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "recycling:", - "type": "multiCombo", - "label": "Accepts" -} diff --git a/data/presets/fields/recycling_type.json b/data/presets/fields/recycling_type.json deleted file mode 100644 index 31e767816f..0000000000 --- a/data/presets/fields/recycling_type.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "recycling_type", - "type": "combo", - "label": "Type", - "placeholder": "Container, Center", - "strings": { - "options": { - "container": "Container", - "centre": "Center" - } - } -} diff --git a/data/presets/fields/ref.json b/data/presets/fields/ref.json deleted file mode 100644 index 2ef67a6eaa..0000000000 --- a/data/presets/fields/ref.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Reference Code" -} diff --git a/data/presets/fields/ref/isil.json b/data/presets/fields/ref/isil.json deleted file mode 100644 index fcf0a0ffe2..0000000000 --- a/data/presets/fields/ref/isil.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ref:isil", - "type": "text", - "label": "ISIL Code" -} diff --git a/data/presets/fields/ref/vatin.json b/data/presets/fields/ref/vatin.json deleted file mode 100644 index 4f5793fc35..0000000000 --- a/data/presets/fields/ref/vatin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "ref:vatin", - "type": "identifier", - "label": "VAT ID Number", - "notCountryCodes": [ - "ao", "ai", "bm", "bt", "io", "vg", "bn", "ky", "km", "cu", "dj", "er", "fk", "gi", "gg", "hk", "iq", "ki", "xk", "kw", "lr", "ly", "mo", "mv", "mh", "fm", "ms", "mm", "nr", "kp", "om", "pw", "pn", "qa", "sh", "sm", "st", "sb", "so", "gs", "ss", "sr", "sz", "sy", "tl", "tc", "tv", "us", "va", "ye" - ], - "terms": [ - "value added tax identification number", - "vatin" - ] -} diff --git a/data/presets/fields/ref_aeroway_gate.json b/data/presets/fields/ref_aeroway_gate.json deleted file mode 100644 index 8e05a76305..0000000000 --- a/data/presets/fields/ref_aeroway_gate.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Gate Number" -} diff --git a/data/presets/fields/ref_golf_hole.json b/data/presets/fields/ref_golf_hole.json deleted file mode 100644 index 05e57549ac..0000000000 --- a/data/presets/fields/ref_golf_hole.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Hole Number", - "placeholder": "1-18" -} diff --git a/data/presets/fields/ref_highway_junction.json b/data/presets/fields/ref_highway_junction.json deleted file mode 100644 index 581689c73b..0000000000 --- a/data/presets/fields/ref_highway_junction.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Junction Number" -} diff --git a/data/presets/fields/ref_platform.json b/data/presets/fields/ref_platform.json deleted file mode 100644 index 036f4001cf..0000000000 --- a/data/presets/fields/ref_platform.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Platform Number" -} diff --git a/data/presets/fields/ref_road_number.json b/data/presets/fields/ref_road_number.json deleted file mode 100644 index d23497c4ab..0000000000 --- a/data/presets/fields/ref_road_number.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Road Number" -} diff --git a/data/presets/fields/ref_room_number.json b/data/presets/fields/ref_room_number.json deleted file mode 100644 index e9664a4a8e..0000000000 --- a/data/presets/fields/ref_room_number.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Room Number" -} diff --git a/data/presets/fields/ref_route.json b/data/presets/fields/ref_route.json deleted file mode 100644 index 9efc25bb3b..0000000000 --- a/data/presets/fields/ref_route.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Route Number" -} diff --git a/data/presets/fields/ref_runway.json b/data/presets/fields/ref_runway.json deleted file mode 100644 index 02440ded9f..0000000000 --- a/data/presets/fields/ref_runway.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Runway Number", - "placeholder": "e.g. 01L/19R" -} diff --git a/data/presets/fields/ref_stop_position.json b/data/presets/fields/ref_stop_position.json deleted file mode 100644 index ddcebfa5aa..0000000000 --- a/data/presets/fields/ref_stop_position.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Stop Number" -} diff --git a/data/presets/fields/ref_taxiway.json b/data/presets/fields/ref_taxiway.json deleted file mode 100644 index 178ad944d8..0000000000 --- a/data/presets/fields/ref_taxiway.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "ref", - "type": "text", - "label": "Taxiway Name", - "placeholder": "e.g. A5" -} diff --git a/data/presets/fields/relation.json b/data/presets/fields/relation.json deleted file mode 100644 index ef52e3931d..0000000000 --- a/data/presets/fields/relation.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "type", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/religion.json b/data/presets/fields/religion.json deleted file mode 100644 index 36b5b67c69..0000000000 --- a/data/presets/fields/religion.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "religion", - "type": "combo", - "label": "Religion" -} diff --git a/data/presets/fields/reservation.json b/data/presets/fields/reservation.json deleted file mode 100644 index f48e00b6c6..0000000000 --- a/data/presets/fields/reservation.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "reservation", - "type": "combo", - "label": "Reservations", - "strings": { - "options": { - "yes": "Accepted", - "no": "Not Accepted", - "required": "Required", - "recommended": "Recommended" - } - } -} diff --git a/data/presets/fields/residential.json b/data/presets/fields/residential.json deleted file mode 100644 index 8de70a9ff5..0000000000 --- a/data/presets/fields/residential.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "residential", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/resort.json b/data/presets/fields/resort.json deleted file mode 100644 index de755e83dc..0000000000 --- a/data/presets/fields/resort.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "resort", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/resource.json b/data/presets/fields/resource.json deleted file mode 100644 index 29d011b3aa..0000000000 --- a/data/presets/fields/resource.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "resource", - "type": "semiCombo", - "label": "Resources" -} diff --git a/data/presets/fields/restriction.json b/data/presets/fields/restriction.json deleted file mode 100644 index cdde8def9a..0000000000 --- a/data/presets/fields/restriction.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "restriction", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/restrictions.json b/data/presets/fields/restrictions.json deleted file mode 100644 index 1b5f8871a0..0000000000 --- a/data/presets/fields/restrictions.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "restrictions", - "geometry": ["vertex"], - "icon": "iD-restrictions", - "usage": "manual", - "reference": { - "rtype": "restriction" - }, - "label": "Turn Restrictions" -} diff --git a/data/presets/fields/roof/colour.json b/data/presets/fields/roof/colour.json deleted file mode 100644 index 7f57588920..0000000000 --- a/data/presets/fields/roof/colour.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "roof:colour", - "type": "combo", - "label": "Roof Color" -} diff --git a/data/presets/fields/room.json b/data/presets/fields/room.json deleted file mode 100644 index 88973921eb..0000000000 --- a/data/presets/fields/room.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "room", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/rooms.json b/data/presets/fields/rooms.json deleted file mode 100644 index 7293823041..0000000000 --- a/data/presets/fields/rooms.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "rooms", - "type": "number", - "minValue": 0, - "label": "Rooms" -} diff --git a/data/presets/fields/roundtrip.json b/data/presets/fields/roundtrip.json deleted file mode 100644 index 58ddc0be20..0000000000 --- a/data/presets/fields/roundtrip.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "roundtrip", - "type": "check", - "label": "Forms Loop", - "terms": [ - "circular", - "closed", - "looping", - "roundtrip" - ] -} diff --git a/data/presets/fields/route.json b/data/presets/fields/route.json deleted file mode 100644 index 9d19199935..0000000000 --- a/data/presets/fields/route.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "route", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/route_master.json b/data/presets/fields/route_master.json deleted file mode 100644 index 3efb0fedbf..0000000000 --- a/data/presets/fields/route_master.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "route_master", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/ruins.json b/data/presets/fields/ruins.json deleted file mode 100644 index 84d4094029..0000000000 --- a/data/presets/fields/ruins.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "ruins", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/rwn_ref.json b/data/presets/fields/rwn_ref.json deleted file mode 100644 index 3ffd9546c4..0000000000 --- a/data/presets/fields/rwn_ref.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "rwn_ref", - "type": "text", - "label": "Walking Code" -} diff --git a/data/presets/fields/sac_scale.json b/data/presets/fields/sac_scale.json deleted file mode 100644 index e3f792b344..0000000000 --- a/data/presets/fields/sac_scale.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "sac_scale", - "type": "combo", - "label": "Hiking Difficulty", - "placeholder": "Mountain Hiking, Alpine Hiking...", - "strings": { - "options": { - "hiking": "T1: Hiking", - "mountain_hiking": "T2: Mountain Hiking", - "demanding_mountain_hiking": "T3: Demanding Mountain Hiking", - "alpine_hiking": "T4: Alpine Hiking", - "demanding_alpine_hiking": "T5: Demanding Alpine Hiking", - "difficult_alpine_hiking": "T6: Difficult Alpine Hiking" - } - } -} diff --git a/data/presets/fields/salt.json b/data/presets/fields/salt.json deleted file mode 100644 index 9370913020..0000000000 --- a/data/presets/fields/salt.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "salt", - "type": "check", - "label": "Salt", - "terms": [ - "saline", - "salinated" - ] -} diff --git a/data/presets/fields/sanitary_dump_station.json b/data/presets/fields/sanitary_dump_station.json deleted file mode 100644 index 419e6ee3b7..0000000000 --- a/data/presets/fields/sanitary_dump_station.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "sanitary_dump_station", - "type": "check", - "label": "Toilet Disposal" -} diff --git a/data/presets/fields/screen.json b/data/presets/fields/screen.json deleted file mode 100644 index 0ab289eb40..0000000000 --- a/data/presets/fields/screen.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "screen", - "type": "number", - "label": "Screens", - "placeholder": "1, 4, 8…", - "minValue": 0 -} diff --git a/data/presets/fields/scuba_diving.json b/data/presets/fields/scuba_diving.json deleted file mode 100644 index 560c660055..0000000000 --- a/data/presets/fields/scuba_diving.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "scuba_diving:", - "type": "multiCombo", - "label": "Services", - "options": [ - "repair", - "courses", - "rental", - "filling", - "air_filling", - "nitrox_filling", - "trimix_filling", - "oxygen_filling" - ] -} diff --git a/data/presets/fields/seamark/beacon_isolated_danger/shape.json b/data/presets/fields/seamark/beacon_isolated_danger/shape.json deleted file mode 100644 index b62f65467b..0000000000 --- a/data/presets/fields/seamark/beacon_isolated_danger/shape.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "seamark:beacon_isolated_danger:shape", - "type": "combo", - "label": "Shape" -} diff --git a/data/presets/fields/seamark/beacon_lateral/category.json b/data/presets/fields/seamark/beacon_lateral/category.json deleted file mode 100644 index 9974827dc9..0000000000 --- a/data/presets/fields/seamark/beacon_lateral/category.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "seamark:beacon_lateral:category", - "type": "combo", - "label": "Category", - "strings": { - "options": { - "port": "Port", - "starboard": "Starboard", - "waterway_left":"Waterway Left", - "waterway_right":"Waterway Right", - "danger_left":"Danger Left", - "danger_right":"Danger Right" - } - } -} diff --git a/data/presets/fields/seamark/beacon_lateral/colour.json b/data/presets/fields/seamark/beacon_lateral/colour.json deleted file mode 100644 index 94c35483cb..0000000000 --- a/data/presets/fields/seamark/beacon_lateral/colour.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "seamark:beacon_lateral:colour", - "type": "combo", - "label": "Color", - "strings": { - "options": { - "red": "Red", - "green": "Green", - "grey": "Grey" - } - } -} diff --git a/data/presets/fields/seamark/beacon_lateral/shape.json b/data/presets/fields/seamark/beacon_lateral/shape.json deleted file mode 100644 index 1ee070cbca..0000000000 --- a/data/presets/fields/seamark/beacon_lateral/shape.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "seamark:beacon_lateral:shape", - "type": "combo", - "label": "Shape" -} diff --git a/data/presets/fields/seamark/beacon_lateral/system.json b/data/presets/fields/seamark/beacon_lateral/system.json deleted file mode 100644 index 3b0046ac01..0000000000 --- a/data/presets/fields/seamark/beacon_lateral/system.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "seamark:beacon_lateral:system", - "type": "combo", - "label": "System", - "strings": { - "options": { - "iala-a": "IALA A", - "iala-b": "IALA B", - "cevni": "CEVNI", - "other": "Other" - } - } -} diff --git a/data/presets/fields/seamark/buoy_lateral/category.json b/data/presets/fields/seamark/buoy_lateral/category.json deleted file mode 100644 index f13a12cbe3..0000000000 --- a/data/presets/fields/seamark/buoy_lateral/category.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "key": "seamark:buoy_lateral:category", - "type": "combo", - "label": "Category", - "strings": { - "options": { - "port": "Port", - "starboard": "Starboard", - "channel_left":"Channel Left", - "channel_right":"Channel Right", - "waterway_left":"Waterway Left", - "waterway_right":"Waterway Right", - "danger_left":"Danger Left", - "danger_right":"Danger Right", - "preferred_channel_port":"Preferred Channel Port", - "preferred_channel_starboard":"Preferred Channel Starboard" - } - } -} diff --git a/data/presets/fields/seamark/buoy_lateral/colour.json b/data/presets/fields/seamark/buoy_lateral/colour.json deleted file mode 100644 index e95c4363ee..0000000000 --- a/data/presets/fields/seamark/buoy_lateral/colour.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "key": "seamark:buoy_lateral:colour", - "type": "combo", - "label": "Color", - "strings": { - "options": { - "red": "Red", - "green": "Green", - "red;white;red;white": "Red-White-Red-White", - "green;white;green;white":"Green-White-Green-White", - "red;green;red":"Red-Green-Red", - "green;red;green":"Green-Red-Green", - "white":"White", - "yellow":"Yellow" - } - } -} diff --git a/data/presets/fields/seamark/buoy_lateral/shape.json b/data/presets/fields/seamark/buoy_lateral/shape.json deleted file mode 100644 index c33ff92600..0000000000 --- a/data/presets/fields/seamark/buoy_lateral/shape.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "seamark:buoy_lateral:shape", - "type": "combo", - "label": "Shape" -} diff --git a/data/presets/fields/seamark/buoy_lateral/system.json b/data/presets/fields/seamark/buoy_lateral/system.json deleted file mode 100644 index c99107c523..0000000000 --- a/data/presets/fields/seamark/buoy_lateral/system.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "seamark:buoy_lateral:system", - "type": "combo", - "label": "System", - "strings": { - "options": { - "iala-a": "IALA A", - "iala-b": "IALA B", - "cevni": "CEVNI", - "other": "Other" - } - } -} diff --git a/data/presets/fields/seamark/mooring/category.json b/data/presets/fields/seamark/mooring/category.json deleted file mode 100644 index b5ed220173..0000000000 --- a/data/presets/fields/seamark/mooring/category.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "seamark:mooring:category", - "type": "combo", - "label": "Category" -} diff --git a/data/presets/fields/seamark/type.json b/data/presets/fields/seamark/type.json deleted file mode 100644 index 2dba42c9c3..0000000000 --- a/data/presets/fields/seamark/type.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "seamark:type", - "type": "combo", - "label": "Seamark", - "terms": [ - "marine" - ] -} diff --git a/data/presets/fields/seamark/wreck/category.json b/data/presets/fields/seamark/wreck/category.json deleted file mode 100644 index 6977bfa4d7..0000000000 --- a/data/presets/fields/seamark/wreck/category.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "seamark:wreck:category", - "type": "combo", - "label": "Category" -} diff --git a/data/presets/fields/seasonal.json b/data/presets/fields/seasonal.json deleted file mode 100644 index 71c2473116..0000000000 --- a/data/presets/fields/seasonal.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "seasonal", - "type": "check", - "label": "Seasonal" -} diff --git a/data/presets/fields/seats.json b/data/presets/fields/seats.json deleted file mode 100644 index e9655f8959..0000000000 --- a/data/presets/fields/seats.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "seats", - "type": "number", - "minValue": 0, - "label": "Seats", - "placeholder": "2, 4, 6..." -} diff --git a/data/presets/fields/second_hand.json b/data/presets/fields/second_hand.json deleted file mode 100644 index 84fb4a57e7..0000000000 --- a/data/presets/fields/second_hand.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "second_hand", - "type": "combo", - "label": "Sells Used", - "placeholder": "Yes, No, Only", - "strings": { - "options": { - "yes": "Yes", - "no": "No", - "only": "Only" - } - } -} diff --git a/data/presets/fields/segregated.json b/data/presets/fields/segregated.json deleted file mode 100644 index ef33716d32..0000000000 --- a/data/presets/fields/segregated.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "segregated", - "type": "check", - "label": "Bicycle-Pedestrian Separation" -} \ No newline at end of file diff --git a/data/presets/fields/self_service.json b/data/presets/fields/self_service.json deleted file mode 100644 index 062f88b099..0000000000 --- a/data/presets/fields/self_service.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "self_service", - "type": "check", - "label": "Self-Service" -} diff --git a/data/presets/fields/service.json b/data/presets/fields/service.json deleted file mode 100644 index aca8d6bcd0..0000000000 --- a/data/presets/fields/service.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "service", - "type": "combo", - "label": "Type", - "options": [ - "driveway", - "parking_aisle", - "alley", - "drive-through", - "emergency_access" - ] -} diff --git a/data/presets/fields/service/bicycle.json b/data/presets/fields/service/bicycle.json deleted file mode 100644 index 195c814541..0000000000 --- a/data/presets/fields/service/bicycle.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "service:bicycle:", - "type": "multiCombo", - "label": "Services" -} diff --git a/data/presets/fields/service/vehicle.json b/data/presets/fields/service/vehicle.json deleted file mode 100644 index ff976577f0..0000000000 --- a/data/presets/fields/service/vehicle.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "service:vehicle:", - "type": "multiCombo", - "label": "Services" -} diff --git a/data/presets/fields/service_rail.json b/data/presets/fields/service_rail.json deleted file mode 100644 index 8f4e09a929..0000000000 --- a/data/presets/fields/service_rail.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "service", - "type": "combo", - "label": "Service Type", - "strings": { - "options": { - "spur": "Spur", - "yard": "Yard", - "siding": "Siding", - "crossover": "Crossover" - } - } -} diff --git a/data/presets/fields/service_times.json b/data/presets/fields/service_times.json deleted file mode 100644 index cb12eca3bd..0000000000 --- a/data/presets/fields/service_times.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "service_times", - "type": "text", - "label": "Service Times" -} diff --git a/data/presets/fields/shelter.json b/data/presets/fields/shelter.json deleted file mode 100644 index d9676394dd..0000000000 --- a/data/presets/fields/shelter.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "shelter", - "type": "check", - "label": "Shelter" -} \ No newline at end of file diff --git a/data/presets/fields/shelter_type.json b/data/presets/fields/shelter_type.json deleted file mode 100644 index 2ea69ac6ba..0000000000 --- a/data/presets/fields/shelter_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "shelter_type", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/shop.json b/data/presets/fields/shop.json deleted file mode 100644 index 0579b7bcb4..0000000000 --- a/data/presets/fields/shop.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "shop", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/shower.json b/data/presets/fields/shower.json deleted file mode 100644 index 9fc28b1c8f..0000000000 --- a/data/presets/fields/shower.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "shower", - "type": "check", - "label": "Showers" -} diff --git a/data/presets/fields/siren/purpose.json b/data/presets/fields/siren/purpose.json deleted file mode 100644 index f2fb6d9a51..0000000000 --- a/data/presets/fields/siren/purpose.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "siren:purpose", - "type": "combo", - "label": "Purpose" -} diff --git a/data/presets/fields/siren/type.json b/data/presets/fields/siren/type.json deleted file mode 100644 index 3c17c67e66..0000000000 --- a/data/presets/fields/siren/type.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "siren:type", - "type": "combo", - "label": "Type", - "strings": { - "options": { - "pneumatic": "Pneumatic", - "electronic": "Electronic", - "other": "Other" - } - } -} diff --git a/data/presets/fields/site.json b/data/presets/fields/site.json deleted file mode 100644 index b233adb151..0000000000 --- a/data/presets/fields/site.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "site", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/site_type.json b/data/presets/fields/site_type.json deleted file mode 100644 index 4735f49599..0000000000 --- a/data/presets/fields/site_type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "site_type", - "type": "combo", - "label": "Site Type" -} diff --git a/data/presets/fields/smoking.json b/data/presets/fields/smoking.json deleted file mode 100644 index 43a8aaaf90..0000000000 --- a/data/presets/fields/smoking.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "smoking", - "type": "combo", - "label": "Smoking", - "placeholder": "No, Separated, Yes...", - "strings": { - "options": { - "no": "No smoking anywhere", - "separated": "In smoking areas, not physically isolated", - "isolated": "In smoking areas, physically isolated", - "outside": "Allowed outside", - "yes": "Allowed everywhere", - "dedicated": "Dedicated to smokers (e.g. smokers' club)" - } - } -} diff --git a/data/presets/fields/smoothness.json b/data/presets/fields/smoothness.json deleted file mode 100644 index fd90f82673..0000000000 --- a/data/presets/fields/smoothness.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "key": "smoothness", - "type": "combo", - "label": "Smoothness", - "placeholder": "Thin Rollers, Wheels, Off-Road...", - "strings": { - "options": { - "excellent": "Thin Rollers: rollerblade, skateboard", - "good": "Thin Wheels: racing bike", - "intermediate": "Wheels: city bike, wheelchair, scooter", - "bad": "Robust Wheels: trekking bike, car, rickshaw", - "very_bad": "High Clearance: light duty off-road vehicle", - "horrible": "Off-Road: heavy duty off-road vehicle", - "very_horrible": "Specialized off-road: tractor, ATV", - "impassable": "Impassable / No wheeled vehicle" - } - } -} diff --git a/data/presets/fields/sms.json b/data/presets/fields/sms.json deleted file mode 100644 index 003b500f7c..0000000000 --- a/data/presets/fields/sms.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "sms", - "type": "check", - "label": "SMS" -} diff --git a/data/presets/fields/social_facility.json b/data/presets/fields/social_facility.json deleted file mode 100644 index 901e38fa86..0000000000 --- a/data/presets/fields/social_facility.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "social_facility", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/social_facility_for.json b/data/presets/fields/social_facility_for.json deleted file mode 100644 index 960201be5a..0000000000 --- a/data/presets/fields/social_facility_for.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "social_facility:for", - "type": "combo", - "label": "People Served" -} diff --git a/data/presets/fields/source.json b/data/presets/fields/source.json deleted file mode 100644 index fd26f45e1d..0000000000 --- a/data/presets/fields/source.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "key": "source", - "type": "semiCombo", - "icon": "source", - "universal": true, - "label": "Sources", - "snake_case": false, - "caseSensitive": true, - "options": [ - "survey", - "local knowledge", - "gps", - "aerial imagery", - "streetlevel imagery" - ], - "terms": [ - "reference" - ] -} diff --git a/data/presets/fields/species/wikidata.json b/data/presets/fields/species/wikidata.json deleted file mode 100644 index a7f6c8bade..0000000000 --- a/data/presets/fields/species/wikidata.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "species:wikidata", - "keys": [ - "species:wikidata", - "species:wikipedia" - ], - "type": "wikidata", - "label": "Species Wikidata" -} diff --git a/data/presets/fields/sport.json b/data/presets/fields/sport.json deleted file mode 100644 index a3ebb3b70b..0000000000 --- a/data/presets/fields/sport.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "sport", - "type": "semiCombo", - "label": "Sports" -} diff --git a/data/presets/fields/sport_ice.json b/data/presets/fields/sport_ice.json deleted file mode 100644 index 014cb7021b..0000000000 --- a/data/presets/fields/sport_ice.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "sport", - "type": "semiCombo", - "label": "Sports", - "options": [ - "ice_skating", - "ice_hockey", - "multi", - "curling", - "ice_stock" - ] -} diff --git a/data/presets/fields/sport_racing_motor.json b/data/presets/fields/sport_racing_motor.json deleted file mode 100644 index e2c4d773dc..0000000000 --- a/data/presets/fields/sport_racing_motor.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "sport", - "type": "semiCombo", - "label": "Sports", - "options": [ - "motor", - "karting", - "motocross" - ] -} diff --git a/data/presets/fields/sport_racing_nonmotor.json b/data/presets/fields/sport_racing_nonmotor.json deleted file mode 100644 index 90688e1095..0000000000 --- a/data/presets/fields/sport_racing_nonmotor.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "sport", - "type": "semiCombo", - "label": "Sports", - "options": [ - "bmx", - "cycling", - "dog_racing", - "horse_racing", - "running" - ] -} diff --git a/data/presets/fields/stars.json b/data/presets/fields/stars.json deleted file mode 100644 index d231a63587..0000000000 --- a/data/presets/fields/stars.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "stars", - "type": "combo", - "label": "Stars", - "terms": [ - "rating" - ] -} diff --git a/data/presets/fields/start_date.json b/data/presets/fields/start_date.json deleted file mode 100644 index 533b4c7527..0000000000 --- a/data/presets/fields/start_date.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "start_date", - "type": "text", - "universal": true, - "label": "Start Date", - "placeholder": "YYYY-MM-DD", - "terms": [ - "inception" - ] -} diff --git a/data/presets/fields/step_count.json b/data/presets/fields/step_count.json deleted file mode 100644 index a345826473..0000000000 --- a/data/presets/fields/step_count.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "step_count", - "type": "number", - "minValue": 0, - "label": "Number of Steps" -} diff --git a/data/presets/fields/stile.json b/data/presets/fields/stile.json deleted file mode 100644 index ffb0fbb71d..0000000000 --- a/data/presets/fields/stile.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "stile", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/stop.json b/data/presets/fields/stop.json deleted file mode 100644 index fb5659e972..0000000000 --- a/data/presets/fields/stop.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "key": "stop", - "type": "combo", - "label": "Stop Type", - "strings": { - "options": { - "all": "All Ways", - "minor": "Minor Road" - } - } -} diff --git a/data/presets/fields/street_cabinet.json b/data/presets/fields/street_cabinet.json deleted file mode 100644 index 0393f9b149..0000000000 --- a/data/presets/fields/street_cabinet.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "street_cabinet", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/stroller.json b/data/presets/fields/stroller.json deleted file mode 100644 index 122ca4c057..0000000000 --- a/data/presets/fields/stroller.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "key": "stroller", - "type": "radio", - "strings": { - "options": { - "yes": "Yes", - "limited": "Limited", - "no": "No" - } - }, - "label": "Stroller Access", - "terms": [ - "baby carriage", - "perambulator", - "pram", - "pushchair" - ] -} diff --git a/data/presets/fields/structure.json b/data/presets/fields/structure.json deleted file mode 100644 index 095400a9e1..0000000000 --- a/data/presets/fields/structure.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "structureRadio", - "keys": [ - "bridge", - "tunnel", - "embankment", - "cutting", - "ford" - ], - "label": "Structure", - "placeholder": "Unknown", - "strings": { - "options": { - "bridge": "Bridge", - "tunnel": "Tunnel", - "embankment": "Embankment", - "cutting": "Cutting", - "ford": "Ford" - } - } -} diff --git a/data/presets/fields/structure_waterway.json b/data/presets/fields/structure_waterway.json deleted file mode 100644 index d2ee7dd113..0000000000 --- a/data/presets/fields/structure_waterway.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "type": "structureRadio", - "keys": [ - "tunnel" - ], - "label": "Structure", - "placeholder": "Unknown", - "strings": { - "options": { - "tunnel": "Tunnel" - } - } -} diff --git a/data/presets/fields/studio.json b/data/presets/fields/studio.json deleted file mode 100644 index 4dec22467f..0000000000 --- a/data/presets/fields/studio.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "studio", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/substance.json b/data/presets/fields/substance.json deleted file mode 100644 index 210721a249..0000000000 --- a/data/presets/fields/substance.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "substance", - "type": "combo", - "label": "Substance" -} diff --git a/data/presets/fields/substation.json b/data/presets/fields/substation.json deleted file mode 100644 index 07a8ed80c0..0000000000 --- a/data/presets/fields/substation.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "substation", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/supervised.json b/data/presets/fields/supervised.json deleted file mode 100644 index 112c16ca2c..0000000000 --- a/data/presets/fields/supervised.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "supervised", - "type": "check", - "label": "Supervised", - "terms": [ - "guarded", - "manned" - ] -} diff --git a/data/presets/fields/support.json b/data/presets/fields/support.json deleted file mode 100644 index d01e64ab6e..0000000000 --- a/data/presets/fields/support.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "support", - "type": "combo", - "label": "Support" -} diff --git a/data/presets/fields/surface.json b/data/presets/fields/surface.json deleted file mode 100644 index 615db54aac..0000000000 --- a/data/presets/fields/surface.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "surface", - "type": "combo", - "label": "Surface" -} \ No newline at end of file diff --git a/data/presets/fields/surveillance.json b/data/presets/fields/surveillance.json deleted file mode 100644 index 3f43651416..0000000000 --- a/data/presets/fields/surveillance.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "surveillance", - "type": "combo", - "label": "Surveillance Kind" -} diff --git a/data/presets/fields/surveillance/type.json b/data/presets/fields/surveillance/type.json deleted file mode 100644 index 1f5d7fa5a3..0000000000 --- a/data/presets/fields/surveillance/type.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "surveillance:type", - "type": "combo", - "label": "Surveillance Type", - "strings": { - "options": { - "camera": "Camera", - "guard": "Guard", - "ALPR": "Automatic License Plate Reader" - } - } -} diff --git a/data/presets/fields/surveillance/zone.json b/data/presets/fields/surveillance/zone.json deleted file mode 100644 index 4923161513..0000000000 --- a/data/presets/fields/surveillance/zone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "surveillance:zone", - "type": "combo", - "label": "Surveillance Zone" -} diff --git a/data/presets/fields/survey/date.json b/data/presets/fields/survey/date.json deleted file mode 100644 index e29075ebad..0000000000 --- a/data/presets/fields/survey/date.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "survey:date", - "type": "text", - "label": "Last Survey Date" -} diff --git a/data/presets/fields/swimming_pool.json b/data/presets/fields/swimming_pool.json deleted file mode 100644 index 6e4d07bd0b..0000000000 --- a/data/presets/fields/swimming_pool.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "swimming_pool", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/switch.json b/data/presets/fields/switch.json deleted file mode 100644 index c17d9b75ca..0000000000 --- a/data/presets/fields/switch.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "switch", - "type": "combo", - "label": "Type", - "strings": { - "options": { - "mechanical": "Mechanical", - "circuit_breaker": "Circuit Breaker", - "disconnector": "Disconnector", - "earthing": "Earthing" - } - } -} diff --git a/data/presets/fields/tactile_paving.json b/data/presets/fields/tactile_paving.json deleted file mode 100644 index be0f73ffd1..0000000000 --- a/data/presets/fields/tactile_paving.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "tactile_paving", - "type": "check", - "label": "Tactile Paving" -} \ No newline at end of file diff --git a/data/presets/fields/takeaway.json b/data/presets/fields/takeaway.json deleted file mode 100644 index 2791c56950..0000000000 --- a/data/presets/fields/takeaway.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "key": "takeaway", - "type": "combo", - "label": "Takeaway", - "placeholder": "Yes, No, Takeaway Only...", - "strings": { - "options": { - "yes": "Yes", - "no": "No", - "only": "Takeaway Only" - } - }, - "terms": [ - "take out", - "takeout" - ] -} diff --git a/data/presets/fields/target.json b/data/presets/fields/target.json deleted file mode 100644 index a3975ea62e..0000000000 --- a/data/presets/fields/target.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "target", - "type": "combo", - "label": "Target" -} diff --git a/data/presets/fields/telecom.json b/data/presets/fields/telecom.json deleted file mode 100644 index ffb3c83c3e..0000000000 --- a/data/presets/fields/telecom.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "telecom", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/telecom/medium.json b/data/presets/fields/telecom/medium.json deleted file mode 100644 index 081cdd577b..0000000000 --- a/data/presets/fields/telecom/medium.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "telecom:medium", - "type": "combo", - "label": "Medium" -} diff --git a/data/presets/fields/tidal.json b/data/presets/fields/tidal.json deleted file mode 100644 index 057c8184ee..0000000000 --- a/data/presets/fields/tidal.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "tidal", - "type": "check", - "label": "Tidal" -} diff --git a/data/presets/fields/to.json b/data/presets/fields/to.json deleted file mode 100644 index b95ac745d8..0000000000 --- a/data/presets/fields/to.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "to", - "type": "text", - "label": "To" -} diff --git a/data/presets/fields/toilets.json b/data/presets/fields/toilets.json deleted file mode 100644 index 56ee1764cf..0000000000 --- a/data/presets/fields/toilets.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "toilets", - "type": "check", - "label": "Toilets" -} diff --git a/data/presets/fields/toilets/disposal.json b/data/presets/fields/toilets/disposal.json deleted file mode 100644 index 3e42ebec8c..0000000000 --- a/data/presets/fields/toilets/disposal.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "toilets:disposal", - "type": "combo", - "label": "Disposal", - "strings": { - "options": { - "flush": "Flush", - "pitlatrine": "Pit Latrine", - "chemical": "Chemical", - "bucket": "Bucket" - } - } -} diff --git a/data/presets/fields/toilets/handwashing.json b/data/presets/fields/toilets/handwashing.json deleted file mode 100644 index ce776f9e34..0000000000 --- a/data/presets/fields/toilets/handwashing.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "toilets:handwashing", - "type": "check", - "label": "Handwashing" -} diff --git a/data/presets/fields/toilets/position.json b/data/presets/fields/toilets/position.json deleted file mode 100644 index 7d56d21d7d..0000000000 --- a/data/presets/fields/toilets/position.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "toilets:position", - "type": "semiCombo", - "label": "Positions" -} diff --git a/data/presets/fields/toll.json b/data/presets/fields/toll.json deleted file mode 100644 index 4c5cb4999a..0000000000 --- a/data/presets/fields/toll.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "toll", - "type": "check", - "label": "Toll" -} diff --git a/data/presets/fields/tomb.json b/data/presets/fields/tomb.json deleted file mode 100644 index c47d819ded..0000000000 --- a/data/presets/fields/tomb.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "tomb", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/tourism.json b/data/presets/fields/tourism.json deleted file mode 100644 index 5bf0aec8f1..0000000000 --- a/data/presets/fields/tourism.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "tourism", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/tower/construction.json b/data/presets/fields/tower/construction.json deleted file mode 100644 index d6723507d0..0000000000 --- a/data/presets/fields/tower/construction.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "tower:construction", - "type": "combo", - "label": "Construction", - "placeholder": "Guyed, Lattice, Concealed, ..." -} diff --git a/data/presets/fields/tower/type.json b/data/presets/fields/tower/type.json deleted file mode 100644 index f73bf97375..0000000000 --- a/data/presets/fields/tower/type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "tower:type", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/townhall/type.json b/data/presets/fields/townhall/type.json deleted file mode 100644 index ec2235c36c..0000000000 --- a/data/presets/fields/townhall/type.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "townhall:type", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/tracktype.json b/data/presets/fields/tracktype.json deleted file mode 100644 index b234fa79dd..0000000000 --- a/data/presets/fields/tracktype.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "tracktype", - "type": "combo", - "label": "Track Type", - "placeholder": "Solid, Mostly Solid, Soft...", - "strings": { - "options": { - "grade1": "Solid: paved or heavily compacted hardcore surface", - "grade2": "Mostly Solid: gravel/rock with some soft material mixed in", - "grade3": "Even mixture of hard and soft materials", - "grade4": "Mostly Soft: soil/sand/grass with some hard material mixed in", - "grade5": "Soft: soil/sand/grass" - } - } -} diff --git a/data/presets/fields/trade.json b/data/presets/fields/trade.json deleted file mode 100644 index e8e2b74201..0000000000 --- a/data/presets/fields/trade.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "trade", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/traffic_calming.json b/data/presets/fields/traffic_calming.json deleted file mode 100644 index d1f491b534..0000000000 --- a/data/presets/fields/traffic_calming.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "traffic_calming", - "type": "typeCombo", - "label": "Type" -} diff --git a/data/presets/fields/traffic_sign.json b/data/presets/fields/traffic_sign.json deleted file mode 100644 index 99b255e55b..0000000000 --- a/data/presets/fields/traffic_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "traffic_sign", - "type": "typeCombo", - "label": "Traffic Sign" -} diff --git a/data/presets/fields/traffic_sign/direction.json b/data/presets/fields/traffic_sign/direction.json deleted file mode 100644 index d6d417cc2f..0000000000 --- a/data/presets/fields/traffic_sign/direction.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "traffic_sign:direction", - "type": "combo", - "label": "Direction Affected", - "strings": { - "options": { - "forward": "Forward", - "backward": "Backward", - "both": "Both / All" - } - }, - "geometry": [ - "vertex" - ] -} diff --git a/data/presets/fields/traffic_signals.json b/data/presets/fields/traffic_signals.json deleted file mode 100644 index 57fe9547f5..0000000000 --- a/data/presets/fields/traffic_signals.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "traffic_signals", - "type": "combo", - "label": "Type", - "default": "signal" -} diff --git a/data/presets/fields/traffic_signals/direction.json b/data/presets/fields/traffic_signals/direction.json deleted file mode 100644 index b4633db673..0000000000 --- a/data/presets/fields/traffic_signals/direction.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "traffic_signals:direction", - "type": "combo", - "label": "Direction Affected", - "strings": { - "options": { - "forward": "Forward", - "backward": "Backward", - "both": "Both / All" - } - } -} diff --git a/data/presets/fields/trail_visibility.json b/data/presets/fields/trail_visibility.json deleted file mode 100644 index 03e3d01e19..0000000000 --- a/data/presets/fields/trail_visibility.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "trail_visibility", - "type": "combo", - "label": "Trail Visibility", - "placeholder": "Excellent, Good, Bad...", - "strings": { - "options": { - "excellent": "Excellent: unambiguous path or markers everywhere", - "good": "Good: markers visible, sometimes require searching", - "intermediate": "Intermediate: few markers, path mostly visible", - "bad": "Bad: no markers, path sometimes invisible/pathless", - "horrible": "Horrible: often pathless, some orientation skills required", - "no": "No: pathless, excellent orientation skills required" - } - } -} diff --git a/data/presets/fields/transformer.json b/data/presets/fields/transformer.json deleted file mode 100644 index 0c3720ed64..0000000000 --- a/data/presets/fields/transformer.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "key": "transformer", - "type": "combo", - "label": "Type", - "strings": { - "options": { - "distribution": "Distribution", - "generator": "Generator", - "converter": "Converter", - "traction": "Traction", - "auto": "Autotransformer", - "phase_angle_regulator": "Phase Angle Regulator", - "auxiliary": "Auxiliary", - "yes": "Unknown" - } - } -} diff --git a/data/presets/fields/trees.json b/data/presets/fields/trees.json deleted file mode 100644 index 9886a5f314..0000000000 --- a/data/presets/fields/trees.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "trees", - "type": "semiCombo", - "label": "Trees" -} diff --git a/data/presets/fields/trench.json b/data/presets/fields/trench.json deleted file mode 100644 index 1503664cda..0000000000 --- a/data/presets/fields/trench.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "trench", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/trolley_wire.json b/data/presets/fields/trolley_wire.json deleted file mode 100644 index cf8047d3d8..0000000000 --- a/data/presets/fields/trolley_wire.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "trolley_wire", - "type": "check", - "label": "Overhead Trolley Wires" -} diff --git a/data/presets/fields/tunnel.json b/data/presets/fields/tunnel.json deleted file mode 100644 index d626d60c0c..0000000000 --- a/data/presets/fields/tunnel.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "tunnel", - "type": "typeCombo", - "label": "Type", - "usage": "group", - "placeholder": "Default" -} diff --git a/data/presets/fields/tunnel_combo.json b/data/presets/fields/tunnel_combo.json deleted file mode 100644 index 832e5e2bd7..0000000000 --- a/data/presets/fields/tunnel_combo.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "tunnel", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/usage_rail.json b/data/presets/fields/usage_rail.json deleted file mode 100644 index f13963609e..0000000000 --- a/data/presets/fields/usage_rail.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "key": "usage", - "type": "combo", - "label": "Usage Type", - "strings": { - "options": { - "main": "Main", - "branch": "Branch", - "industrial": "Industrial", - "military": "Military", - "test": "Test", - "tourism": "Tourism" - } - } -} diff --git a/data/presets/fields/utility.json b/data/presets/fields/utility.json deleted file mode 100644 index e252424871..0000000000 --- a/data/presets/fields/utility.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "utility", - "type": "typeCombo", - "label": "Utility" -} diff --git a/data/presets/fields/utility_semi.json b/data/presets/fields/utility_semi.json deleted file mode 100644 index 3c1e13ab48..0000000000 --- a/data/presets/fields/utility_semi.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "utility", - "type": "semiCombo", - "label": "Utilities" -} diff --git a/data/presets/fields/valve.json b/data/presets/fields/valve.json deleted file mode 100644 index c1afedca95..0000000000 --- a/data/presets/fields/valve.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "valve", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/vehicles.json b/data/presets/fields/vehicles.json deleted file mode 100644 index c487d03830..0000000000 --- a/data/presets/fields/vehicles.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "keys": [ - "bus", - "trolleybus", - "tram", - "train", - "subway", - "light_rail", - "monorail", - "ferry" - ], - "type": "manyCombo", - "label": "Vehicles", - "strings": { - "options": { - "bus": "Bus", - "trolleybus": "Trolleybus", - "tram": "Tram", - "train": "Train", - "subway": "Subway", - "light_rail": "Light Rail", - "monorail": "Monorail", - "ferry": "Ferry" - } - }, - "reference": { - "key": "public_transport" - }, - "prerequisiteTag": { - "keyNot": "aerialway" - } -} diff --git a/data/presets/fields/vending.json b/data/presets/fields/vending.json deleted file mode 100644 index 0c8fcec6f8..0000000000 --- a/data/presets/fields/vending.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "vending", - "type": "semiCombo", - "label": "Types of Goods" -} diff --git a/data/presets/fields/vhf.json b/data/presets/fields/vhf.json deleted file mode 100644 index 98d76b14dc..0000000000 --- a/data/presets/fields/vhf.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "vhf", - "type": "text", - "label": "VHF Channel", - "terms": [ - "call sign", - "very high frequency" - ] -} diff --git a/data/presets/fields/video_calls.json b/data/presets/fields/video_calls.json deleted file mode 100644 index f3494176c6..0000000000 --- a/data/presets/fields/video_calls.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "video", - "type": "check", - "label": "Video Calls" -} diff --git a/data/presets/fields/visibility.json b/data/presets/fields/visibility.json deleted file mode 100644 index a36b273967..0000000000 --- a/data/presets/fields/visibility.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "visibility", - "type": "combo", - "label": "Visibility", - "strings": { - "options": { - "house": "Up to 5m (16ft)", - "street": "5 to 20m (16 to 65ft)", - "area": "Over 20m (65ft)" - } - } -} diff --git a/data/presets/fields/volcano/status.json b/data/presets/fields/volcano/status.json deleted file mode 100644 index 7ca3aa4a53..0000000000 --- a/data/presets/fields/volcano/status.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "volcano:status", - "type": "combo", - "label": "Volcano Status", - "strings": { - "options": { - "active": "Active", - "dormant": "Dormant", - "extinct": "Extinct" - } - } -} diff --git a/data/presets/fields/volcano/type.json b/data/presets/fields/volcano/type.json deleted file mode 100644 index 2738b630ff..0000000000 --- a/data/presets/fields/volcano/type.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "key": "volcano:type", - "type": "combo", - "label": "Volcano Type", - "strings": { - "options": { - "stratovolcano": "Stratovolcano", - "shield": "Shield", - "scoria": "Scoria" - } - } -} diff --git a/data/presets/fields/voltage.json b/data/presets/fields/voltage.json deleted file mode 100644 index d297c93717..0000000000 --- a/data/presets/fields/voltage.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "voltage", - "type": "combo", - "label": "Voltage" -} diff --git a/data/presets/fields/voltage/primary.json b/data/presets/fields/voltage/primary.json deleted file mode 100644 index b8f7af86f0..0000000000 --- a/data/presets/fields/voltage/primary.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "voltage:primary", - "type": "combo", - "label": "Primary Voltage" -} diff --git a/data/presets/fields/voltage/secondary.json b/data/presets/fields/voltage/secondary.json deleted file mode 100644 index 676c2cf0fd..0000000000 --- a/data/presets/fields/voltage/secondary.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "voltage:secondary", - "type": "combo", - "label": "Secondary Voltage" -} diff --git a/data/presets/fields/voltage/tertiary.json b/data/presets/fields/voltage/tertiary.json deleted file mode 100644 index f3a516e0d9..0000000000 --- a/data/presets/fields/voltage/tertiary.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "voltage:tertiary", - "type": "combo", - "label": "Tertiary Voltage" -} diff --git a/data/presets/fields/voltage_electrified.json b/data/presets/fields/voltage_electrified.json deleted file mode 100644 index 265272551e..0000000000 --- a/data/presets/fields/voltage_electrified.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "voltage", - "type": "combo", - "label": "Voltage", - "prerequisiteTag": { - "key": "electrified", - "valueNot": "no" - } -} diff --git a/data/presets/fields/wall.json b/data/presets/fields/wall.json deleted file mode 100644 index fcb1ecc1cf..0000000000 --- a/data/presets/fields/wall.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "wall", - "type": "combo", - "label": "Type" -} diff --git a/data/presets/fields/waste.json b/data/presets/fields/waste.json deleted file mode 100644 index 312ca185ef..0000000000 --- a/data/presets/fields/waste.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "waste", - "type": "semiCombo", - "label": "Waste" -} diff --git a/data/presets/fields/water.json b/data/presets/fields/water.json deleted file mode 100644 index 03e1606338..0000000000 --- a/data/presets/fields/water.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "water", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/water_point.json b/data/presets/fields/water_point.json deleted file mode 100644 index e3b2f56c75..0000000000 --- a/data/presets/fields/water_point.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "water_point", - "type": "check", - "label": "Water Point" -} diff --git a/data/presets/fields/water_source.json b/data/presets/fields/water_source.json deleted file mode 100644 index 4768b899d7..0000000000 --- a/data/presets/fields/water_source.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "water_source", - "default": "main", - "type": "combo", - "label": "Water Source" -} diff --git a/data/presets/fields/water_tank/volume.json b/data/presets/fields/water_tank/volume.json deleted file mode 100644 index 4e9cbb2faf..0000000000 --- a/data/presets/fields/water_tank/volume.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "water_tank:volume", - "type": "text", - "label": "Volume (Liters)", - "placeholder": "10000, 20000, 30000…" -} diff --git a/data/presets/fields/water_volume.json b/data/presets/fields/water_volume.json deleted file mode 100644 index 5d58143301..0000000000 --- a/data/presets/fields/water_volume.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "water_volume", - "type": "number", - "label": "Water Reserve Volume (m³)", - "snake_case": false -} diff --git a/data/presets/fields/waterway.json b/data/presets/fields/waterway.json deleted file mode 100644 index 133af3e4b0..0000000000 --- a/data/presets/fields/waterway.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "waterway", - "type": "typeCombo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/website.json b/data/presets/fields/website.json deleted file mode 100644 index ad70060cbf..0000000000 --- a/data/presets/fields/website.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "key": "website", - "type": "url", - "icon": "website", - "placeholder": "https://example.com", - "label": "Website", - "terms": [ - "internet presence", - "uri", - "url", - "webpage" - ] -} diff --git a/data/presets/fields/wetland.json b/data/presets/fields/wetland.json deleted file mode 100644 index bf1037181e..0000000000 --- a/data/presets/fields/wetland.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "wetland", - "type": "combo", - "label": "Type" -} \ No newline at end of file diff --git a/data/presets/fields/wheelchair.json b/data/presets/fields/wheelchair.json deleted file mode 100644 index 127042d86a..0000000000 --- a/data/presets/fields/wheelchair.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "wheelchair", - "type": "radio", - "strings": { - "options": { - "yes": "Yes", - "limited": "Limited", - "no": "No" - } - }, - "icon": "maki-wheelchair", - "label": "Wheelchair Access", - "terms": [ - "handicap access" - ] -} diff --git a/data/presets/fields/wholesale.json b/data/presets/fields/wholesale.json deleted file mode 100644 index d3d1fd9992..0000000000 --- a/data/presets/fields/wholesale.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "key": "wholesale", - "type": "typeCombo", - "label": "Wholesale" -} diff --git a/data/presets/fields/width.json b/data/presets/fields/width.json deleted file mode 100644 index 442a67d618..0000000000 --- a/data/presets/fields/width.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "key": "width", - "type": "number", - "minValue": 0, - "label": "Width (Meters)" -} diff --git a/data/presets/fields/wikidata.json b/data/presets/fields/wikidata.json deleted file mode 100644 index f5d5af4a62..0000000000 --- a/data/presets/fields/wikidata.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "wikidata", - "keys": ["wikidata", "wikipedia"], - "type": "wikidata", - "icon": "wikipedia", - "universal": true, - "label": "Wikidata" -} diff --git a/data/presets/fields/wikimedia_commons.json b/data/presets/fields/wikimedia_commons.json deleted file mode 100644 index 347c5ffc07..0000000000 --- a/data/presets/fields/wikimedia_commons.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "key": "wikimedia_commons", - "type": "identifier", - "label": "Wikimedia Commons Page", - "placeholder": "File:Example.jpg", - "urlFormat": "https://commons.wikimedia.org/wiki/{value}", - "pattern": "^(?:File|Category):.{1,}", - "universal": true -} diff --git a/data/presets/fields/wikipedia.json b/data/presets/fields/wikipedia.json deleted file mode 100644 index 466c95520d..0000000000 --- a/data/presets/fields/wikipedia.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "key": "wikipedia", - "keys": ["wikipedia", "wikidata"], - "type": "wikipedia", - "icon": "wikipedia", - "universal": true, - "label": "Wikipedia" -} diff --git a/data/presets/fields/windings.json b/data/presets/fields/windings.json deleted file mode 100644 index 81e43ea426..0000000000 --- a/data/presets/fields/windings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "key": "windings", - "type": "number", - "minValue": 1, - "label": "Windings", - "placeholder": "1, 2, 3..." -} diff --git a/data/presets/fields/windings/configuration.json b/data/presets/fields/windings/configuration.json deleted file mode 100644 index defe3ec2ca..0000000000 --- a/data/presets/fields/windings/configuration.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "key": "windings:configuration", - "type": "combo", - "label": "Windings Configuration", - "strings": { - "options": { - "star": "Star / Wye", - "delta": "Delta", - "open-delta": "Open Delta", - "zigzag": "Zig Zag", - "open": "Open", - "scott": "Scott", - "leblanc": "Leblanc" - } - } -} diff --git a/data/presets/groups.json b/data/presets/groups.json deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/data/presets/presets.json b/data/presets/presets.json deleted file mode 100644 index 48715c7ce5..0000000000 --- a/data/presets/presets.json +++ /dev/null @@ -1,6566 +0,0 @@ -{ - "aerialway": {"fields": ["name", "aerialway"], "moreFields": ["layer"], "geometry": ["point", "vertex", "line"], "tags": {"aerialway": "*"}, "searchable": false, "name": "Aerialway Feature"}, - "aeroway": {"icon": "maki-airport", "fields": ["aeroway"], "geometry": ["point", "vertex", "line", "area"], "tags": {"aeroway": "*"}, "searchable": false, "name": "Aeroway Feature"}, - "amenity": {"fields": ["amenity"], "geometry": ["point", "vertex", "line", "area"], "tags": {"amenity": "*"}, "searchable": false, "name": "Amenity"}, - "attraction": {"icon": "maki-star", "fields": ["name", "attraction", "operator", "opening_hours", "opening_hours/covid19", "fee", "charge_fee"], "moreFields": ["address", "email", "fax", "opening_hours", "opening_hours/covid19", "payment_multi", "phone", "website"], "geometry": ["point", "vertex", "line", "area"], "tags": {"attraction": "*"}, "searchable": false, "name": "Attraction"}, - "boundary": {"fields": ["boundary"], "geometry": ["line"], "tags": {"boundary": "*"}, "searchable": false, "name": "Boundary", "matchScore": 0.45}, - "building_point": {"icon": "maki-home", "fields": ["{building}"], "moreFields": ["{building}"], "geometry": ["point"], "tags": {"building": "*"}, "matchScore": 0.6, "searchable": false, "name": "Building"}, - "embankment": {"geometry": ["line"], "tags": {"embankment": "yes"}, "name": "Embankment", "matchScore": 0.2, "searchable": false}, - "emergency": {"fields": ["emergency_combo"], "geometry": ["point", "vertex", "area"], "tags": {"emergency": "*"}, "searchable": false, "name": "Emergency Feature"}, - "ford_line": {"geometry": ["line"], "tags": {"ford": "*"}, "name": "Ford", "searchable": false}, - "highway": {"fields": ["name", "highway"], "geometry": ["point", "vertex", "line", "area"], "tags": {"highway": "*"}, "searchable": false, "name": "Highway Feature"}, - "indoor": {"icon": "temaki-room", "fields": ["level", "indoor_type"], "geometry": ["point", "vertex", "line", "area"], "tags": {"indoor": "*"}, "matchScore": 0.8, "searchable": false, "name": "Indoor Feature"}, - "landuse": {"fields": ["name", "landuse"], "geometry": ["area"], "tags": {"landuse": "*"}, "matchScore": 0.9, "searchable": false, "name": "Land Use Feature"}, - "leisure": {"icon": "maki-pitch", "fields": ["name", "leisure"], "geometry": ["point", "vertex", "line", "area"], "tags": {"leisure": "*"}, "searchable": false, "name": "Leisure Feature"}, - "man_made": {"icon": "temaki-storage_tank", "fields": ["name", "man_made"], "moreFields": ["material"], "geometry": ["point", "vertex", "line", "area"], "tags": {"man_made": "*"}, "matchScore": 0.95, "searchable": false, "name": "Man Made Feature"}, - "natural": {"icon": "maki-natural", "fields": ["name", "natural"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "vertex", "line", "area"], "tags": {"natural": "*"}, "searchable": false, "name": "Natural Feature"}, - "place": {"fields": ["name", "place"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "vertex", "area"], "tags": {"place": "*"}, "searchable": false, "name": "Place"}, - "playground": {"icon": "maki-playground", "fields": ["playground", "playground/theme", "min_age", "max_age", "wheelchair", "blind", "height"], "moreFields": ["access_simple", "colour", "ref"], "geometry": ["point", "vertex", "line", "area"], "tags": {"playground": "*"}, "searchable": false, "name": "Playground Equipment"}, - "power": {"icon": "temaki-power", "geometry": ["point", "vertex", "line", "area"], "tags": {"power": "*"}, "fields": ["power"], "moreFields": ["material"], "searchable": false, "name": "Power Feature"}, - "railway": {"icon": "temaki-rail_profile", "fields": ["railway"], "geometry": ["point", "vertex", "line", "area"], "tags": {"railway": "*"}, "searchable": false, "name": "Railway Feature"}, - "seamark": {"icon": "maki-harbor", "fields": ["seamark/type"], "geometry": ["point", "vertex", "line", "area"], "tags": {"seamark:type": "*"}, "searchable": false, "name": "Seamark"}, - "telecom": {"icon": "temaki-cable", "fields": ["telecom", "operator"], "geometry": ["point", "vertex", "line", "area"], "tags": {"telecom": "*"}, "searchable": false, "name": "Telecom Feature"}, - "tourism": {"icon": "maki-attraction", "fields": ["name", "tourism"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "*"}, "searchable": false, "name": "Tourism Feature"}, - "waterway": {"fields": ["name", "waterway"], "geometry": ["point", "vertex", "line", "area"], "tags": {"waterway": "*"}, "searchable": false, "name": "Waterway Feature"}, - "addr/interpolation": {"fields": ["addr/interpolation"], "geometry": ["line"], "tags": {"addr:interpolation": "*"}, "name": "Address Interpolation", "searchable": false, "matchScore": 0.2}, - "address": {"fields": ["address"], "geometry": ["point", "vertex", "area"], "tags": {"addr:*": "*"}, "addTags": {}, "removeTags": {}, "reference": {"key": "addr"}, "name": "Address", "matchScore": 0.15}, - "advertising/billboard": {"icon": "temaki-billboard", "fields": ["operator", "lit", "support", "visibility"], "moreFields": ["access_simple", "direction", "height"], "geometry": ["point", "vertex", "line"], "tags": {"advertising": "billboard"}, "name": "Billboard"}, - "advertising/board": {"icon": "temaki-bulletin_board", "fields": ["operator", "lit", "support", "visibility"], "moreFields": ["access_simple", "direction", "height"], "geometry": ["point"], "tags": {"advertising": "board"}, "terms": ["advertising", "announcements", "blackboard", "bulletin board", "bulletinboard", "cork board", "corkboard", "fliers", "flyers", "noticeboard", "pin board", "pinboard", "sign", "whiteboard"], "name": "Notice Board"}, - "advertising/column": {"icon": "temaki-storage_tank", "fields": ["operator", "lit", "visibility"], "moreFields": ["access_simple", "height"], "geometry": ["point", "area"], "tags": {"advertising": "column"}, "name": "Advertising Column"}, - "advertising/poster_box": {"icon": "temaki-poster_box", "fields": ["operator", "lit", "support", "visibility"], "moreFields": ["access_simple", "direction", "height"], "geometry": ["point"], "tags": {"advertising": "poster_box"}, "name": "Poster Box"}, - "advertising/totem": {"fields": ["operator", "lit", "visibility"], "moreFields": ["access_simple", "direction", "height"], "geometry": ["point"], "tags": {"advertising": "totem"}, "name": "Advertising Totem"}, - "aerialway/cable_car": {"icon": "fas-tram", "geometry": ["line"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "cable_car"}, "terms": ["aerial cable", "lift", "ropeway", "skiing", "snowboarding", "tramway"], "name": "Cable Car"}, - "aerialway/chair_lift": {"icon": "temaki-chairlift", "geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "chair_lift"}, "terms": ["aerial cable", "skiing", "snowboarding"], "name": "Chair Lift"}, - "aerialway/drag_lift": {"icon": "temaki-drag_lift", "geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "drag_lift"}, "terms": ["skiing", "snowboarding", "surface cable"], "name": "Drag Lift"}, - "aerialway/gondola": {"icon": "temaki-gondola_lift", "geometry": ["line"], "fields": ["name", "oneway", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "gondola"}, "terms": ["aerial cable", "lift", "skiing", "snowboarding"], "name": "Gondola Lift"}, - "aerialway/goods": {"icon": "temaki-goods_lift", "geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "goods"}, "terms": ["aerial cable"], "name": "Goods Aerialway"}, - "aerialway/j-bar": {"icon": "temaki-j_bar_lift", "geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "j-bar"}, "terms": ["drag lift", "skiing", "snowboarding", "surface cable", "jaybar", "jbar"], "name": "J-Bar Lift"}, - "aerialway/magic_carpet": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "magic_carpet"}, "terms": ["conveyor belt", "skiing", "snowboarding", "surface lift"], "name": "Magic Carpet Lift"}, - "aerialway/mixed_lift": {"icon": "maki-aerialway", "geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "mixed_lift"}, "terms": ["aerial cable", "skiing", "snowboarding"], "name": "Mixed Lift"}, - "aerialway/platter": {"icon": "temaki-platter_lift", "geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "platter"}, "terms": ["button lift", "disc lift", "drag lift", "poma lift", "skiing", "snowboarding", "surface cable"], "name": "Platter Lift"}, - "aerialway/pylon": {"icon": "temaki-aerialway_pole", "geometry": ["point", "vertex"], "fields": ["ref"], "tags": {"aerialway": "pylon"}, "terms": ["chair lift pole", "skiing", "snowboarding", "lift tower"], "name": "Aerialway Pylon"}, - "aerialway/rope_tow": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "rope_tow"}, "terms": ["bugel lift", "drag lift", "handle tow", "skiing", "snowboarding", "surface cable"], "name": "Rope Tow Lift"}, - "aerialway/t-bar": {"icon": "temaki-t_bar_lift", "geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "t-bar"}, "terms": ["drag lift", "skiing", "surface cable", "tbar"], "name": "T-Bar Lift"}, - "aerialway/zip_line": {"geometry": ["line"], "fields": ["name", "oneway_yes", "aerialway/duration", "maxweight", "access_simple"], "tags": {"aerialway": "zip_line"}, "terms": ["aerial runway", "canopy", "flying fox", "foefie slide", "gravity propelled aerial ropeslide", "Tyrolean traverse", "zip wire", "zip-line", "zipline", "zipwire"], "name": "Zip Line"}, - "aeroway/aerodrome": {"icon": "temaki-airport", "fields": ["name", "iata", "icao", "address", "operator", "operator/type", "internet_access", "internet_access/fee", "internet_access/ssid"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website"], "geometry": ["area", "point"], "tags": {"aeroway": "aerodrome"}, "terms": ["aerodrome", "aeroway", "airplane", "airport", "jet", "plane"], "matchScore": 0.9, "name": "Airport"}, - "aeroway/apron": {"icon": "temaki-planes", "fields": ["ref", "surface"], "geometry": ["area"], "tags": {"aeroway": "apron"}, "terms": ["aircraft parking", "flight line", "hardstand", "ramp", "tarmac", "taxiway"], "name": "Airport Apron"}, - "aeroway/gate": {"icon": "fas-plane", "fields": ["ref_aeroway_gate"], "geometry": ["point", "vertex"], "tags": {"aeroway": "gate"}, "name": "Airport Gate"}, - "aeroway/hangar": {"icon": "temaki-hangar", "fields": ["name", "building_area"], "geometry": ["area"], "tags": {"aeroway": "hangar"}, "addTags": {"building": "hangar", "aeroway": "hangar"}, "name": "Hangar"}, - "aeroway/helipad": {"icon": "maki-heliport", "fields": ["name", "ref", "operator", "surface", "lit"], "moreFields": ["access_simple", "address", "charge_fee", "fee", "opening_hours", "opening_hours/covid19"], "geometry": ["area", "point"], "tags": {"aeroway": "helipad"}, "terms": ["helicopter", "helipad", "heliport"], "name": "Helipad"}, - "aeroway/holding_position": {"icon": "temaki-plane_taxiing", "fields": ["ref"], "geometry": ["vertex"], "tags": {"aeroway": "holding_position"}, "name": "Aircraft Holding Position"}, - "aeroway/jet_bridge": {"icon": "temaki-pedestrian_walled", "fields": ["ref_aeroway_gate", "width", "access_simple", "wheelchair"], "moreFields": ["manufacturer"], "geometry": ["line"], "tags": {"aeroway": "jet_bridge"}, "addTags": {"aeroway": "jet_bridge", "highway": "corridor"}, "terms": ["aerobridge", "air jetty", "airbridge", "airtube", "finger", "gangway", "jet bridge", "jetbridge", "jet way", "jetway", "passenger boarding bridge", "PBB", "portal", "skybridge", "terminal gate connector"], "matchScore": 1.05, "name": "Jetway"}, - "aeroway/parking_position": {"icon": "temaki-plane_taxiing", "fields": ["ref"], "geometry": ["vertex", "point", "line"], "tags": {"aeroway": "parking_position"}, "name": "Aircraft Parking Position"}, - "aeroway/runway": {"icon": "fas-plane-departure", "fields": ["ref_runway", "surface", "length", "width"], "geometry": ["line", "area"], "tags": {"aeroway": "runway"}, "terms": ["landing strip"], "name": "Runway"}, - "aeroway/spaceport": {"icon": "fas-space-shuttle", "fields": ["name", "operator", "access_simple", "website", "wikidata"], "moreFields": ["email", "fax", "internet_access", "internet_access/fee", "internet_access/ssid", "phone"], "geometry": ["area", "point"], "tags": {"aeroway": "spaceport"}, "terms": ["cosmodrome", "rocket launch center", "rocket launch complex", "rocket launch site", "rocket range", "space port"], "name": "Spaceport"}, - "aeroway/taxiway": {"icon": "temaki-plane_taxiing", "fields": ["ref_taxiway", "surface"], "geometry": ["line"], "tags": {"aeroway": "taxiway"}, "name": "Taxiway"}, - "aeroway/terminal": {"icon": "maki-airport", "fields": ["name", "operator", "building_area", "wheelchair", "baby_feeding"], "moreFields": ["air_conditioning", "smoking"], "geometry": ["point", "area"], "tags": {"aeroway": "terminal"}, "terms": ["airport", "aerodrome"], "name": "Airport Terminal"}, - "aeroway/windsock": {"icon": "temaki-windsock", "fields": ["ref", "lit", "height"], "moreFields": ["manufacturer"], "geometry": ["point", "vertex"], "tags": {"aeroway": "windsock"}, "name": "Windsock"}, - "allotments/plot": {"icon": "temaki-garden_bed", "geometry": ["area"], "fields": ["name", "ref"], "tags": {"allotments": "plot"}, "reference": {"key": "allotments", "value": "plot"}, "name": "Community Garden Plot"}, - "amenity/bus_station": {"icon": "temaki-bus", "fields": ["name", "building_area", "operator", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"amenity": "bus_station"}, "name": "Bus Station / Terminal", "searchable": false, "replacement": "public_transport/station_bus"}, - "amenity/coworking_space": {"icon": "maki-commercial", "fields": ["name", "address", "building_area", "opening_hours", "opening_hours/covid19", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"amenity": "coworking_space"}, "name": "Coworking Space", "searchable": false}, - "amenity/embassy": {"icon": "temaki-embassy", "fields": ["name", "country", "address", "building_area"], "moreFields": ["email", "fax", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "embassy"}, "searchable": false, "name": "Embassy"}, - "amenity/ferry_terminal": {"icon": "temaki-ferry", "fields": ["name", "network", "operator", "address", "building_area"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "ferry_terminal"}, "matchScore": 0.95, "name": "Ferry Terminal", "searchable": false, "replacement": "public_transport/station_ferry"}, - "amenity/nursing_home": {"icon": "maki-wheelchair", "fields": ["{amenity/social_facility}", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "nursing_home"}, "reference": {"key": "social_facility", "value": "nursing_home"}, "name": "Nursing Home", "searchable": false}, - "amenity/recycling": {"icon": "maki-recycling", "fields": ["recycling_type", "recycling_accepts", "collection_times"], "geometry": ["point", "area"], "tags": {"amenity": "recycling"}, "name": "Recycling", "searchable": false}, - "amenity/animal_boarding": {"icon": "maki-veterinary", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "animal_boarding"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["boarding", "cat", "cattery", "dog", "horse", "kennel", "kitten", "pet", "pet boarding", "pet care", "pet hotel", "puppy", "reptile"], "tags": {"amenity": "animal_boarding"}, "name": "Animal Boarding Facility"}, - "amenity/animal_breeding": {"icon": "maki-veterinary", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "animal_breeding"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["breeding", "bull", "cat", "cow", "dog", "horse", "husbandry", "kitten", "livestock", "pet breeding", "puppy", "reptile"], "tags": {"amenity": "animal_breeding"}, "name": "Animal Breeding Facility"}, - "amenity/animal_shelter": {"icon": "maki-veterinary", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "animal_shelter"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["adoption", "aspca", "cat", "dog", "horse", "kitten", "pet care", "pet rescue", "puppy", "raptor", "reptile", "rescue", "spca", "pound"], "tags": {"amenity": "animal_shelter"}, "name": "Animal Shelter"}, - "amenity/arts_centre": {"icon": "maki-theatre", "fields": ["name", "address", "building_area", "opening_hours", "opening_hours/covid19", "website"], "moreFields": ["charge_fee", "email", "fax", "fee", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "arts_centre"}, "name": "Arts Center"}, - "amenity/atm": {"icon": "maki-bank", "fields": ["operator", "network", "cash_in", "currency_multi", "drive_through"], "moreFields": ["brand", "covered", "height", "indoor", "level", "lit", "manufacturer", "name", "opening_hours", "opening_hours/covid19", "wheelchair"], "geometry": ["point", "vertex"], "terms": ["money", "cash", "machine"], "tags": {"amenity": "atm"}, "name": "ATM"}, - "amenity/bank": {"icon": "maki-bank", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "atm", "drive_through"], "moreFields": ["air_conditioning", "brand", "currency_multi", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "phone", "ref/vatin", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["credit union", "check", "deposit", "fund", "investment", "repository", "reserve", "safe", "savings", "stock", "treasury", "trust", "vault"], "tags": {"amenity": "bank"}, "name": "Bank"}, - "amenity/bar": {"icon": "maki-bar", "fields": ["name", "address", "building_area", "opening_hours", "opening_hours/covid19", "min_age", "brewery"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "microbrewery", "operator", "outdoor_seating", "payment_multi", "phone", "ref/vatin", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["dive", "beer", "bier", "booze"], "tags": {"amenity": "bar"}, "name": "Bar"}, - "amenity/bar/lgbtq": {"icon": "maki-bar", "geometry": ["point", "area"], "terms": ["gay bar", "lesbian bar", "lgbtq bar", "lgbt bar", "lgb bar"], "tags": {"amenity": "bar", "lgbtq": "primary"}, "name": "LGBTQ+ Bar"}, - "amenity/bbq": {"icon": "maki-bbq", "fields": ["covered", "fuel", "access_simple"], "moreFields": ["lit"], "geometry": ["point"], "terms": ["bbq", "grill"], "tags": {"amenity": "bbq"}, "name": "Barbecue/Grill"}, - "amenity/bench": {"icon": "temaki-bench", "fields": ["backrest", "material", "seats", "colour"], "moreFields": ["access_simple", "height", "inscription", "level", "lit", "manufacturer", "operator"], "geometry": ["point", "vertex", "line"], "terms": ["seat", "chair"], "tags": {"amenity": "bench"}, "name": "Bench"}, - "amenity/bicycle_parking": {"icon": "maki-bicycle", "fields": ["bicycle_parking", "capacity", "operator", "operator/type", "covered", "access_simple", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["colour", "indoor", "level", "lit"], "geometry": ["point", "vertex", "area"], "terms": ["bike", "cycle parking", "cycling"], "tags": {"amenity": "bicycle_parking"}, "name": "Bicycle Parking"}, - "amenity/bicycle_parking/building": {"icon": "temaki-bicycle_structure", "fields": ["{amenity/bicycle_parking}", "opening_hours", "opening_hours/covid19", "building_area"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "bicycle_parking", "bicycle_parking": "building"}, "reference": {"key": "bicycle_parking"}, "terms": ["Bike Parking Station", "cycle parking", "cycling", "Multi-Storey Bicycle Park", "Multi-Storey Bike Park"], "name": "Bicycle Parking Garage"}, - "amenity/bicycle_parking/lockers": {"icon": "temaki-bicycle_locker", "geometry": ["point", "vertex", "area"], "tags": {"amenity": "bicycle_parking", "bicycle_parking": "lockers"}, "reference": {"key": "bicycle_parking"}, "terms": ["cycle locker", "cycling", "Bike Lockers"], "name": "Bicycle Lockers"}, - "amenity/bicycle_parking/shed": {"icon": "maki-bicycle", "fields": ["{amenity/bicycle_parking}", "building_area"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "bicycle_parking", "bicycle_parking": "shed"}, "reference": {"key": "bicycle_parking"}, "terms": ["cycle shed", "cycling", "Bike Shed"], "name": "Bicycle Shed"}, - "amenity/bicycle_rental": {"icon": "temaki-bicycle_rental", "fields": ["capacity", "network", "operator", "operator/type", "fee", "payment_multi_fee"], "moreFields": ["address", "covered", "email", "fax", "level", "opening_hours", "opening_hours/covid19", "phone", "website", "wheelchair"], "geometry": ["point", "vertex", "area"], "terms": ["bike", "bicycle", "bikeshare", "bike share", "bicycle share", "cycle dock", "cycle hub", "cycleshare", "cycling"], "tags": {"amenity": "bicycle_rental"}, "name": "Bicycle Rental"}, - "amenity/bicycle_repair_station": {"icon": "temaki-bicycle_repair", "fields": ["operator", "brand", "opening_hours", "opening_hours/covid19", "fee", "payment_multi_fee", "charge_fee", "service/bicycle"], "moreFields": ["colour", "covered", "indoor", "level", "manufacturer"], "geometry": ["point", "vertex"], "terms": ["bike chain", "bike multitool", "bike repair", "bike tools", "cycle pump", "cycle repair", "cycling"], "tags": {"amenity": "bicycle_repair_station"}, "name": "Bicycle Repair Tool Stand"}, - "amenity/biergarten": {"icon": "fas-beer", "fields": ["name", "address", "opening_hours", "opening_hours/covid19", "outdoor_seating", "brewery"], "moreFields": ["{amenity/bar}", "building_area", "cuisine"], "geometry": ["point", "area"], "tags": {"amenity": "biergarten"}, "terms": ["beer", "bier", "booze"], "name": "Biergarten"}, - "amenity/binoculars": {"icon": "temaki-binoculars", "fields": ["operator", "access_simple", "fee", "payment_multi_fee", "charge_fee", "direction", "height", "ele_node"], "moreFields": ["colour", "covered", "indoor", "lit", "manufacturer", "ref"], "geometry": ["point"], "terms": ["observation viewer", "optical ranger", "spotting scope", "sight", "spyglass", "telescope", "tower viewer", "viewfinder", "viewing stand"], "tags": {"amenity": "binoculars"}, "name": "Mounted Binoculars"}, - "amenity/boat_rental": {"icon": "temaki-boat_rental", "fields": ["name", "operator", "operator/type", "opening_hours", "opening_hours/covid19", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["access_simple", "address", "email", "fax", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "boat_rental"}, "name": "Boat Rental"}, - "amenity/boat_storage": {"icon": "temaki-boat_dry_dock", "fields": ["name", "operator", "access_simple", "capacity"], "geometry": ["point", "area"], "tags": {"amenity": "boat_storage"}, "terms": ["boathouse", "dry dock", "marina"], "name": "Boat Storage"}, - "amenity/bureau_de_change": {"icon": "temaki-money_hand", "fields": ["name", "operator", "payment_multi", "currency_multi", "address", "building_area"], "moreFields": ["email", "fax", "level", "opening_hours", "opening_hours/covid19", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["bureau de change", "money changer"], "tags": {"amenity": "bureau_de_change"}, "name": "Currency Exchange"}, - "amenity/cafe": {"icon": "maki-cafe", "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "opening_hours/covid19", "outdoor_seating", "internet_access", "internet_access/fee", "internet_access/ssid", "phone", "website"], "moreFields": ["air_conditioning", "bar", "brand", "capacity", "delivery", "diet_multi", "email", "fax", "gnis/feature_id", "level", "min_age", "not/name", "payment_multi", "ref/vatin", "reservation", "smoking", "takeaway", "wheelchair"], "geometry": ["point", "area"], "terms": ["bistro", "coffee", "tea"], "tags": {"amenity": "cafe"}, "name": "Cafe"}, - "amenity/cafe/bubble_tea": {"icon": "temaki-bubble_tea", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "cuisine": "bubble_tea"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "terms": ["boba", "bubble milk tea", "pearl milk tea", "taiwanese tea drink", "tapioca", "pearl tea", "boba drink"], "name": "Bubble Tea Cafe"}, - "amenity/cafe/coffee_shop": {"icon": "temaki-hot_drink_cup", "geometry": ["point", "area"], "tags": {"amenity": "cafe", "cuisine": "coffee_shop"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": ["americano", "brew", "cafe", "café", "caffe", "caffè", "cappuccino", "cocoa", "coffee shop", "drip", "espresso", "hot drinks", "latte", "macchiato", "tea"], "name": "Coffeehouse"}, - "amenity/car_pooling": {"icon": "temaki-car_pool", "fields": ["name", "operator", "operator/type", "capacity", "address", "opening_hours", "opening_hours/covid19", "lit"], "moreFields": ["email", "fax", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "car_pooling"}, "terms": ["car sharing", "carpooling", "lift sharing", "ride sharing"], "name": "Car Pooling Station"}, - "amenity/car_rental": {"icon": "maki-car-rental", "fields": ["name", "operator", "address", "opening_hours", "opening_hours/covid19", "payment_multi"], "moreFields": ["brand", "email", "fax", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "car_rental"}, "name": "Car Rental"}, - "amenity/car_sharing": {"icon": "temaki-sign_and_car", "fields": ["name", "operator", "operator/type", "capacity", "address", "payment_multi", "supervised"], "moreFields": ["brand", "email", "fax", "lit", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "car_sharing"}, "name": "Car Sharing Station"}, - "amenity/car_wash": {"icon": "temaki-car_wash", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "payment_multi", "self_service", "automated"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "car_wash"}, "name": "Car Wash"}, - "amenity/casino": {"icon": "maki-casino", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "gambling", "smoking"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "min_age", "payment_multi", "phone", "ref/vatin", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["gambling", "roulette", "craps", "poker", "blackjack"], "tags": {"amenity": "casino"}, "name": "Casino"}, - "amenity/charging_station": {"icon": "fas-charging-station", "fields": ["name", "operator", "capacity", "access_simple", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["brand", "covered", "level", "manufacturer"], "geometry": ["point"], "tags": {"amenity": "charging_station"}, "terms": ["EV", "Electric Vehicle", "Supercharger"], "name": "Charging Station"}, - "amenity/childcare": {"icon": "fas-child", "fields": ["name", "operator", "operator/type", "address", "building_area", "opening_hours", "opening_hours/covid19", "website"], "moreFields": ["baby_feeding", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "max_age", "min_age", "not/name", "payment_multi", "phone", "wheelchair"], "geometry": ["point", "area"], "terms": ["daycare", "orphanage", "playgroup"], "tags": {"amenity": "childcare"}, "name": "Nursery/Childcare"}, - "amenity/cinema": {"icon": "maki-cinema", "fields": ["name", "address", "screen", "building_area", "opening_hours", "opening_hours/covid19", "payment_multi"], "moreFields": ["air_conditioning", "brand", "email", "fax", "gnis/feature_id", "level", "min_age", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["drive-in", "film", "flick", "movie", "theater", "picture", "show", "screen"], "tags": {"amenity": "cinema"}, "name": "Cinema"}, - "amenity/clinic": {"icon": "maki-doctor", "fields": ["name", "operator", "operator/type", "healthcare/speciality", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["air_conditioning", "brand", "email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["medical", "urgentcare"], "tags": {"amenity": "clinic"}, "addTags": {"amenity": "clinic", "healthcare": "clinic"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Clinic"}, - "amenity/clinic/abortion": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "abortion"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Abortion Clinic"}, - "amenity/clinic/fertility": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["egg", "fertility", "reproductive", "sperm", "ovulation"], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "fertility"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Fertility Clinic"}, - "amenity/clock": {"icon": "temaki-clock", "fields": ["name", "support", "display", "visibility", "date", "faces"], "moreFields": ["covered", "height", "indoor", "level", "lit", "manufacturer"], "geometry": ["point", "vertex"], "terms": ["time"], "tags": {"amenity": "clock"}, "name": "Clock"}, - "amenity/clock/sundial": {"icon": "temaki-clock", "fields": ["name", "support", "visibility", "inscription"], "moreFields": [], "geometry": ["point", "vertex"], "terms": ["gnomon", "shadow"], "tags": {"amenity": "clock", "display": "sundial"}, "reference": {"key": "display", "value": "sundial"}, "name": "Sundial"}, - "amenity/college": {"icon": "maki-college", "fields": ["name", "operator", "operator/type", "address", "website", "internet_access", "internet_access/fee", "internet_access/ssid"], "moreFields": ["denomination", "email", "fax", "gnis/feature_id", "not/name", "phone", "religion", "wheelchair"], "geometry": ["area", "point"], "terms": ["university", "undergraduate school"], "tags": {"amenity": "college"}, "name": "College Grounds"}, - "amenity/community_centre": {"icon": "maki-town-hall", "fields": ["name", "operator", "operator/type", "address", "building_area", "opening_hours", "opening_hours/covid19", "website"], "moreFields": ["air_conditioning", "baby_feeding", "email", "fax", "gnis/feature_id", "phone", "polling_station", "wheelchair"], "geometry": ["point", "area"], "terms": ["event", "hall"], "tags": {"amenity": "community_centre"}, "name": "Community Center"}, - "amenity/community_centre/lgbtq": {"icon": "maki-town-hall", "geometry": ["point", "area"], "terms": ["lgbtq event", "lgbtq hall", "lgbt event", "lgbt hall", "lgb event", "lgb hall"], "tags": {"amenity": "community_centre", "lgbtq": "primary"}, "name": "LGBTQ+ Community Center"}, - "amenity/compressed_air": {"icon": "fas-tachometer-alt", "fields": ["operator", "access_simple", "fee", "payment_multi_fee", "charge_fee", "covered", "lit"], "moreFields": ["brand", "manufacturer"], "geometry": ["point", "area"], "tags": {"amenity": "compressed_air"}, "name": "Compressed Air"}, - "amenity/conference_centre": {"icon": "fas-user-tie", "fields": ["name", "operator", "operator/type", "building_area", "address", "website", "internet_access", "internet_access/fee", "internet_access/ssid"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "not/name", "phone", "smoking", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "conference_centre"}, "terms": ["auditorium", "conference", "exhibition", "exposition", "lecture"], "name": "Convention Center"}, - "amenity/courthouse": {"icon": "fas-gavel", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "phone", "polling_station", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "courthouse"}, "name": "Courthouse"}, - "amenity/crematorium": {"icon": "maki-cemetery", "fields": ["name", "website", "phone", "opening_hours", "opening_hours/covid19", "wheelchair"], "moreFields": ["address", "email", "fax", "gnis/feature_id", "level", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "crematorium"}, "terms": ["cemetery", "funeral"], "name": "Crematorium"}, - "amenity/dentist": {"icon": "maki-dentist", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["tooth", "teeth"], "tags": {"amenity": "dentist"}, "addTags": {"amenity": "dentist", "healthcare": "dentist"}, "reference": {"key": "amenity", "value": "dentist"}, "name": "Dentist"}, - "amenity/dive_centre": {"icon": "temaki-scuba_diving", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "scuba_diving"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["diving", "scuba"], "tags": {"amenity": "dive_centre"}, "name": "Dive Center"}, - "amenity/doctors": {"icon": "maki-doctor", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["medic*", "physician"], "tags": {"amenity": "doctors"}, "addTags": {"amenity": "doctors", "healthcare": "doctor"}, "reference": {"key": "amenity", "value": "doctors"}, "name": "Doctor"}, - "amenity/dojo": {"icon": "maki-pitch", "fields": ["name", "sport", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["martial arts", "dojang"], "tags": {"amenity": "dojo"}, "name": "Dojo / Martial Arts Academy"}, - "amenity/dressing_room": {"icon": "maki-clothing-store", "fields": ["operator", "access_simple", "gender", "wheelchair", "building_area"], "moreFields": ["charge_fee", "fee", "level", "opening_hours", "opening_hours/covid19", "payment_multi_fee", "ref"], "geometry": ["point", "area"], "terms": ["changeroom", "dressing room", "fitting room", "locker room"], "tags": {"amenity": "dressing_room"}, "name": "Changing Room"}, - "amenity/drinking_water": {"icon": "maki-drinking-water", "fields": ["operator", "access_simple", "fee", "payment_multi_fee", "charge_fee", "wheelchair", "bottle"], "moreFields": ["covered", "indoor", "level", "lit"], "geometry": ["point"], "tags": {"amenity": "drinking_water"}, "terms": ["potable water source", "water fountain", "drinking fountain", "bubbler", "water tap"], "name": "Drinking Water"}, - "amenity/driving_school": {"icon": "maki-car", "fields": ["name", "operator", "operator/type", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "driving_school"}, "name": "Driving School"}, - "amenity/events_venue": {"icon": "fas-users", "fields": ["name", "operator", "building_area", "address", "website", "internet_access", "internet_access/fee", "internet_access/ssid"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "level", "min_age", "phone", "smoking", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "events_venue"}, "terms": ["banquet hall", "baptism", "Bar Mitzvah", "Bat Mitzvah", "birthdays", "celebrations", "conferences", "confirmation", "meetings", "parties", "party", "quinceañera", "reunions", "weddings"], "name": "Events Venue"}, - "amenity/exhibition_centre": {"icon": "fas-user-tie", "fields": ["name", "operator", "operator/type", "building_area", "address", "website", "internet_access", "internet_access/fee", "internet_access/ssid"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "not/name", "phone", "smoking", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "exhibition_centre"}, "terms": ["exhibition center", "fair", "exhibition", "exposition", "trade fair", "trade show", "trade exhibition", "expo", "tradeshow"], "name": "Exposition Center"}, - "amenity/fast_food": {"icon": "maki-fast-food", "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "drive_through", "phone", "website"], "moreFields": ["air_conditioning", "brand", "capacity", "delivery", "diet_multi", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "opening_hours", "opening_hours/covid19", "outdoor_seating", "payment_multi", "ref/vatin", "smoking", "takeaway", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "fast_food"}, "terms": ["restaurant", "takeaway"], "name": "Fast Food"}, - "amenity/fast_food/ice_cream": {"icon": "fas-ice-cream", "geometry": ["point", "area"], "tags": {"amenity": "fast_food", "cuisine": "ice_cream"}, "reference": {"key": "cuisine", "value": "ice_cream"}, "name": "Ice Cream Fast Food", "searchable": false}, - "amenity/fast_food/burger": {"icon": "maki-fast-food", "geometry": ["point", "area"], "terms": ["breakfast", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "fast_food", "cuisine": "burger"}, "reference": {"key": "cuisine", "value": "burger"}, "name": "Burger Fast Food"}, - "amenity/fast_food/chicken": {"icon": "fas-drumstick-bite", "geometry": ["point", "area"], "terms": ["breakfast", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "fast_food", "cuisine": "chicken"}, "reference": {"key": "cuisine", "value": "chicken"}, "name": "Chicken Fast Food"}, - "amenity/fast_food/donut": {"icon": "temaki-donut", "geometry": ["point", "area"], "terms": ["breakfast", "brunch", "cafe", "canteen", "coffee", "dine", "diner", "donut", "doughnut", "dining", "eat", "lunch", "table"], "tags": {"amenity": "fast_food", "cuisine": "donut"}, "reference": {"key": "cuisine", "value": "donut"}, "name": "Donut Fast Food"}, - "amenity/fast_food/fish_and_chips": {"icon": "fas-fish", "geometry": ["point", "area"], "terms": ["breakfast", "cafe", "café", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table", "french fries"], "tags": {"amenity": "fast_food", "cuisine": "fish_and_chips"}, "reference": {"key": "cuisine", "value": "fish_and_chips"}, "name": "Fish & Chips Fast Food"}, - "amenity/fast_food/hot_dog": {"icon": "fas-hotdog", "geometry": ["point", "area"], "terms": ["ballpark", "frankfurter", "frank", "hotdog stand", "sandwich", "sausage", "wiener"], "tags": {"amenity": "fast_food", "cuisine": "hot_dog"}, "reference": {"key": "cuisine", "value": "hot_dog"}, "name": "Hot Dog Fast Food"}, - "amenity/fast_food/juice": {"icon": "temaki-drink_cup", "geometry": ["point", "area"], "terms": ["cafe", "café", "beverages", "fruit drinks", "juice bar", "shakes", "smoothies"], "tags": {"amenity": "fast_food", "cuisine": "juice"}, "reference": {"key": "cuisine", "value": "juice"}, "name": "Juice Fast Food"}, - "amenity/fast_food/kebab": {"icon": "temaki-vertical_rotisserie", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "fast_food", "cuisine": "kebab"}, "reference": {"key": "cuisine", "value": "kebab"}, "name": "Kebab Fast Food"}, - "amenity/fast_food/mexican": {"icon": "fas-pepper-hot", "geometry": ["point", "area"], "terms": ["breakfast", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table", "tacos", "burritos", "enchiladas", "fajitas", "nachos", "tortillas", "salsa", "tamales", "quesadillas"], "tags": {"amenity": "fast_food", "cuisine": "mexican"}, "reference": {"key": "cuisine", "value": "mexican"}, "name": "Mexican Fast Food"}, - "amenity/fast_food/pizza": {"icon": "maki-restaurant-pizza", "geometry": ["point", "area"], "terms": ["dine", "dining", "dinner", "drive-in", "eat", "lunch", "table", "deep dish", "thin crust", "slice"], "tags": {"amenity": "fast_food", "cuisine": "pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "name": "Pizza Fast Food"}, - "amenity/fast_food/sandwich": {"icon": "temaki-sandwich", "geometry": ["point", "area"], "terms": ["breakfast", "cafe", "café", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "fast_food", "cuisine": "sandwich"}, "reference": {"key": "cuisine", "value": "sandwich"}, "name": "Sandwich Fast Food"}, - "amenity/fire_station": {"icon": "maki-fire-station", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "polling_station", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "fire_station"}, "name": "Fire Station"}, - "amenity/food_court": {"icon": "maki-restaurant", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "internet_access", "internet_access/fee", "internet_access/ssid"], "moreFields": ["capacity", "diet_multi", "email", "fax", "gnis/feature_id", "level", "not/name", "outdoor_seating", "phone", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["fast food", "restaurant", "food"], "tags": {"amenity": "food_court"}, "name": "Food Court"}, - "amenity/fountain": {"icon": "temaki-fountain", "fields": ["name", "operator", "fountain", "drinking_water", "height", "lit"], "moreFields": ["covered", "indoor", "level", "manufacturer"], "geometry": ["point", "area"], "tags": {"amenity": "fountain"}, "terms": ["basin", "water"], "name": "Fountain"}, - "amenity/fuel": {"icon": "maki-fuel", "fields": ["name", "brand", "operator", "address", "fuel_multi", "self_service"], "moreFields": ["brand", "building", "email", "fax", "gnis/feature_id", "opening_hours", "opening_hours/covid19", "payment_multi", "phone", "ref/vatin", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["petrol", "fuel", "gasoline", "propane", "diesel", "lng", "cng", "biodiesel"], "tags": {"amenity": "fuel"}, "name": "Gas Station"}, - "amenity/gambling": {"icon": "fas-coins", "fields": ["{amenity/casino}"], "moreFields": ["{amenity/casino}"], "geometry": ["point", "area"], "terms": ["betting", "bingo", "blackjack", "casino", "craps", "gamble", "gambling", "keno", "lottery", "pachinko", "poker", "roulette", "slot machines", "slots"], "tags": {"amenity": "gambling"}, "name": "Gambling Hall"}, - "amenity/give_box": {"icon": "fas-box-open", "fields": ["name", "operator", "opening_hours", "opening_hours/covid19", "access_simple", "website"], "moreFields": ["address", "brand", "capacity", "covered", "email", "indoor", "level", "lit", "location", "phone", "ref", "wheelchair"], "geometry": ["point", "area"], "terms": ["donations", "free box", "free table", "freebox", "give box", "give shelf", "givebox", "library", "share shelf"], "tags": {"amenity": "give_box"}, "name": "Free Box"}, - "amenity/grave_yard": {"icon": "maki-cemetery", "fields": ["religion", "address"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website"], "geometry": ["point", "area"], "tags": {"amenity": "grave_yard"}, "terms": ["burial ground", "cemetary", "cemetery", "churchyard", "columbarium", "grave yard", "graveyard", "mausoleum", "tomb"], "name": "Graveyard"}, - "amenity/grit_bin": {"icon": "fas-box", "fields": ["operator", "access_simple", "material", "collection_times"], "moreFields": ["colour", "height", "lit"], "geometry": ["point", "vertex"], "tags": {"amenity": "grit_bin"}, "terms": ["salt", "sand"], "name": "Grit Bin"}, - "amenity/hospital": {"icon": "maki-hospital", "fields": ["name", "operator", "operator/type", "healthcare/speciality", "address", "emergency"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "phone", "website", "wheelchair"], "geometry": ["area", "point"], "terms": ["clinic", "doctor", "emergency room", "health", "infirmary", "institution", "sanatorium", "sanitarium", "sick", "surgery", "ward"], "tags": {"amenity": "hospital"}, "addTags": {"amenity": "hospital", "healthcare": "hospital"}, "reference": {"key": "amenity", "value": "hospital"}, "name": "Hospital Grounds"}, - "amenity/hunting_stand": {"icon": "temaki-hunting_blind", "fields": ["access_simple", "lockable"], "geometry": ["point", "vertex", "area"], "terms": ["game", "gun", "lookout", "rifle", "shoot*", "wild", "watch"], "tags": {"amenity": "hunting_stand"}, "name": "Hunting Stand"}, - "amenity/ice_cream": {"icon": "fas-ice-cream", "fields": ["name", "address", "building_area", "opening_hours", "opening_hours/covid19", "outdoor_seating"], "moreFields": ["delivery", "diet_multi", "drive_through", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "payment_multi", "phone", "takeaway", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["gelato", "sorbet", "sherbet", "frozen", "yogurt"], "tags": {"amenity": "ice_cream"}, "name": "Ice Cream Shop"}, - "amenity/internet_cafe": {"icon": "temaki-antenna", "fields": ["name", "operator", "operator/type", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid", "phone", "website"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "level", "min_age", "opening_hours", "opening_hours/covid19", "outdoor_seating", "payment_multi", "ref/vatin", "smoking", "wheelchair"], "geometry": ["point", "area"], "terms": ["cybercafe", "taxiphone", "teleboutique", "coffee", "cafe", "net", "lanhouse"], "tags": {"amenity": "internet_cafe"}, "name": "Internet Cafe"}, - "amenity/karaoke_box": {"icon": "maki-karaoke", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "website"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "level", "min_age", "payment_multi", "phone", "ref/vatin", "smoking", "wheelchair"], "geometry": ["point", "area"], "terms": ["karaoke club", "karaoke room", "karaoke television", "KTV"], "tags": {"amenity": "karaoke_box"}, "name": "Karaoke Box"}, - "amenity/kindergarten": {"icon": "temaki-school", "fields": ["name", "operator", "operator/type", "address", "phone", "preschool"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "max_age", "min_age", "not/name", "opening_hours", "opening_hours/covid19", "payment_multi", "website", "wheelchair"], "geometry": ["area", "point"], "terms": ["kindergarten", "kindergarden", "pre-school"], "tags": {"amenity": "kindergarten"}, "name": "Preschool / Kindergarten Grounds"}, - "amenity/kneipp_water_cure": {"icon": "maki-hospital", "fields": ["kneipp_water_cure_multi", "opening_hours", "opening_hours/covid19", "fee"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "kneipp_water_cure"}, "reference": {"key": "amenity", "value": "kneipp_water_cure"}, "name": "Kneipp Water Cure"}, - "amenity/language_school": {"icon": "temaki-school", "fields": ["name", "operator", "operator/type", "address", "building_area", "opening_hours", "opening_hours/covid19", "language_multi"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["esl"], "tags": {"amenity": "language_school"}, "name": "Language School"}, - "amenity/lavoir": {"icon": "temaki-detergent_bottle", "fields": ["name", "operator", "operator/type", "address", "access_simple", "building_area"], "moreFields": ["gnis/feature_id", "smoking", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "lavoir"}, "terms": ["clothing", "laundry", "washing"], "name": "Lavoir"}, - "amenity/letter_box": {"icon": "temaki-letter_box", "fields": ["post", "access_simple", "height"], "moreFields": ["covered", "indoor", "level", "lit", "lockable", "manufacturer", "material", "operator", "wheelchair"], "geometry": ["point", "vertex"], "tags": {"amenity": "letter_box"}, "terms": ["curbside delivery box", "home delivery box", "direct-to-door delivery box", "letter hole", "letter plate", "letter slot", "letterbox", "letterhole", "letterplate", "letterslot", "mail box", "mail hole", "mail slot", "mailbox", "mailhole", "mailslot", "through-door delivery box"], "name": "Letter Box"}, - "amenity/library": {"icon": "maki-library", "fields": ["name", "operator", "operator/type", "building_area", "address", "ref/isil", "internet_access", "internet_access/fee", "internet_access/ssid"], "moreFields": ["access_simple", "air_conditioning", "baby_feeding", "email", "fax", "gnis/feature_id", "level", "not/name", "opening_hours", "opening_hours/covid19", "payment_multi", "phone", "polling_station", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["book"], "tags": {"amenity": "library"}, "name": "Library"}, - "amenity/loading_dock": {"icon": "fas-truck-loading", "fields": ["ref", "operator", "access_simple", "door", "width", "height"], "moreFields": ["address", "colour", "level", "lit", "wheelchair"], "geometry": ["vertex"], "terms": ["door", "loading bay", "shipping", "unloading", "warehouse"], "tags": {"amenity": "loading_dock"}, "name": "Loading Dock"}, - "amenity/lounger": {"icon": "temaki-lounger", "fields": ["material", "colour", "access_simple", "lit"], "moreFields": ["height", "inscription", "level", "manufacturer", "operator"], "geometry": ["point"], "tags": {"amenity": "lounger"}, "terms": ["seat", "chair", "bench"], "name": "Lounger"}, - "amenity/love_hotel": {"icon": "maki-heart", "fields": ["name", "operator", "address", "building_area", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "moreFields": ["email", "fax", "gnis/feature_id", "min_age", "payment_multi", "phone", "ref/vatin", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "love_hotel"}, "name": "Love Hotel"}, - "amenity/marketplace": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "marketplace"}, "name": "Marketplace"}, - "amenity/monastery": {"icon": "maki-place-of-worship", "fields": ["name", "religion", "denomination", "address"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website", "wheelchair"], "geometry": ["area", "point"], "terms": ["abbey", "basilica", "bethel", "cathedral", "chancel", "chantry", "chapel", "church", "fold", "house of God", "house of prayer", "house of worship", "minster", "mission", "monastery", "mosque", "oratory", "parish", "sacellum", "sanctuary", "shrine", "synagogue", "tabernacle", "temple"], "tags": {"amenity": "monastery"}, "name": "Monastery Grounds"}, - "amenity/money_transfer": {"icon": "temaki-money_hand", "fields": ["name", "brand", "address", "building_area", "payment_multi", "currency_multi"], "moreFields": ["email", "fax", "level", "opening_hours", "opening_hours/covid19", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["money order", "check", "bill", "currency", "finance", "wire transfer", "cable", "person to person", "cash to cash", "exchange"], "tags": {"amenity": "money_transfer"}, "name": "Money Transfer Station"}, - "amenity/mortuary": {"icon": "maki-cemetery", "fields": ["name", "operator", "address"], "moreFields": ["religion", "denomination"], "geometry": ["point", "area"], "terms": ["crematorium", "funeral home", "memorial home", "morgue", "mortuary", "undertaker"], "tags": {"amenity": "mortuary"}, "name": "Morgue"}, - "amenity/motorcycle_parking": {"icon": "fas-motorcycle", "fields": ["capacity_parking", "operator", "covered", "access_simple"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "motorcycle_parking"}, "name": "Motorcycle Parking"}, - "amenity/music_school": {"icon": "fas-music", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["school of music"], "tags": {"amenity": "music_school"}, "name": "Music School"}, - "amenity/nightclub": {"icon": "fas-cocktail", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "min_age", "smoking"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair", "fee"], "geometry": ["point", "area"], "tags": {"amenity": "nightclub"}, "terms": ["disco*", "night club", "dancing", "dance club"], "name": "Nightclub"}, - "amenity/nightclub/lgbtq": {"icon": "fas-cocktail", "geometry": ["point", "area"], "tags": {"amenity": "nightclub", "lgbtq": "primary"}, "terms": ["gay nightclub", "lesbian nightclub", "lgbtq nightclub", "lgbt nightclub", "lgb nightclub"], "name": "LGBTQ+ Nightclub"}, - "amenity/parking_entrance": {"icon": "maki-entrance-alt1", "fields": ["parking_entrance", "ref", "access_simple", "address", "level"], "geometry": ["vertex"], "tags": {"amenity": "parking_entrance"}, "name": "Parking Garage Entrance / Exit"}, - "amenity/parking_space": {"icon": "temaki-parking_space", "fields": ["parking_space", "capacity"], "geometry": ["area", "point", "vertex"], "tags": {"amenity": "parking_space"}, "addTags": {"amenity": "parking_space", "capacity": "1"}, "terms": ["parking spot", "parking stall"], "matchScore": 0.95, "name": "Parking Space"}, - "amenity/parking_space/disabled": {"icon": "temaki-accessible_space", "geometry": ["area", "point", "vertex"], "tags": {"amenity": "parking_space", "parking_space": "disabled"}, "addTags": {"amenity": "parking_space", "parking_space": "disabled", "capacity": "1"}, "terms": ["disability", "disabled parking stall", "handicap parking spot", "wheelchair"], "matchScore": 0.95, "name": "Accessible Parking Space"}, - "amenity/parking": {"icon": "temaki-car_parked", "fields": ["operator", "operator/type", "parking", "capacity_parking", "capacity/disabled_parking", "access_simple", "fee", "payment_multi_fee", "charge_fee", "surface"], "moreFields": ["address", "covered", "email", "fax", "maxstay", "name", "opening_hours", "opening_hours/covid19", "park_ride", "phone", "ref", "supervised", "website", "wheelchair"], "geometry": ["area", "point", "vertex"], "tags": {"amenity": "parking"}, "terms": ["automobile parking", "car lot", "car parking", "rv parking", "truck parking", "vehicle parking"], "name": "Parking Lot"}, - "amenity/parking/multi-storey": {"icon": "temaki-car_structure", "fields": ["name", "{amenity/parking}", "building"], "moreFields": ["{amenity/parking}", "height", "building/levels"], "geometry": ["area"], "tags": {"amenity": "parking", "parking": "multi-storey"}, "addTags": {"building": "parking", "amenity": "parking", "parking": "multi-storey"}, "reference": {"key": "parking", "value": "multi-storey"}, "terms": ["car", "indoor parking", "multistorey car park", "parkade", "parking building", "parking deck", "parking garage", "parking ramp", "parking structure"], "name": "Multilevel Parking Garage"}, - "amenity/parking/park_ride": {"icon": "temaki-sign_and_car", "fields": ["name", "{amenity/parking}"], "geometry": ["area", "point", "vertex"], "tags": {"amenity": "parking", "park_ride": "yes"}, "reference": {"key": "park_ride", "value": "yes"}, "terms": ["commuter parking lot", "incentive parking lot", "metro parking lot", "park and pool lot", "park and ride lot", "P+R", "public transport parking lot", "public transit parking lot", "train parking lot"], "matchScore": 0.95, "name": "Park & Ride Lot"}, - "amenity/parking/underground": {"icon": "temaki-car_structure", "fields": ["{amenity/parking}", "layer"], "geometry": ["area", "point", "vertex"], "tags": {"amenity": "parking", "parking": "underground"}, "addTags": {"amenity": "parking", "parking": "underground", "layer": "-1"}, "reference": {"key": "parking", "value": "underground"}, "terms": ["automobile parking", "car lot", "car parking", "rv parking", "subsurface parking", "truck parking", "vehicle parking"], "name": "Underground Parking"}, - "amenity/payment_centre": {"icon": "temaki-money_hand", "fields": ["name", "brand", "address", "building_area", "opening_hours", "opening_hours/covid19", "payment_multi"], "moreFields": ["currency_multi", "email", "fax", "level", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["check", "tax pay", "bill pay", "currency", "finance", "cash", "money"], "tags": {"amenity": "payment_centre"}, "name": "Payment Center"}, - "amenity/payment_terminal": {"icon": "far-credit-card", "fields": ["name", "brand", "address", "opening_hours", "opening_hours/covid19", "payment_multi"], "moreFields": ["covered", "currency_multi", "indoor", "level", "wheelchair"], "geometry": ["point"], "terms": ["interactive kiosk", "ekiosk", "atm", "bill pay", "tax pay", "phone pay", "finance", "cash", "money transfer", "card"], "tags": {"amenity": "payment_terminal"}, "name": "Payment Terminal"}, - "amenity/pharmacy": {"icon": "maki-pharmacy", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "dispensing", "drive_through"], "moreFields": ["brand", "email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "healthcare": "pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "terms": ["apothecary", "drug store", "drugstore", "med*", "prescription"], "name": "Pharmacy Counter"}, - "amenity/photo_booth": {"icon": "fas-person-booth", "fields": ["name", "operator", "payment_multi", "wheelchair"], "moreFields": ["brand", "indoor", "level"], "geometry": ["point", "area"], "terms": ["photobooth", "photo", "booth", "kiosk", "camera"], "tags": {"amenity": "photo_booth"}, "name": "Photo Booth"}, - "amenity/place_of_worship": {"icon": "maki-place-of-worship", "fields": ["name", "religion", "denomination", "address", "building_area", "service_times"], "moreFields": ["air_conditioning", "baby_feeding", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/ssid", "level", "opening_hours", "opening_hours/covid19", "phone", "polling_station", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["abbey", "basilica", "bethel", "cathedral", "chancel", "chantry", "chapel", "church", "fold", "house of God", "house of prayer", "house of worship", "minster", "mission", "mosque", "oratory", "parish", "sacellum", "sanctuary", "shrine", "synagogue", "tabernacle", "temple"], "tags": {"amenity": "place_of_worship"}, "name": "Place of Worship"}, - "amenity/place_of_worship/buddhist": {"icon": "maki-religious-buddhist", "fields": ["name", "religion", "denomination", "{amenity/place_of_worship}"], "geometry": ["point", "area"], "terms": ["stupa", "vihara", "monastery", "temple", "pagoda", "zendo", "dojo"], "tags": {"amenity": "place_of_worship", "religion": "buddhist"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Buddhist Temple"}, - "amenity/place_of_worship/christian": {"icon": "maki-religious-christian", "fields": ["name", "religion", "denomination", "{amenity/place_of_worship}"], "geometry": ["point", "area"], "terms": ["christian", "abbey", "basilica", "bethel", "cathedral", "chancel", "chantry", "chapel", "fold", "house of God", "house of prayer", "house of worship", "minster", "mission", "oratory", "parish", "sacellum", "sanctuary", "shrine", "tabernacle", "temple"], "tags": {"amenity": "place_of_worship", "religion": "christian"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Christian Church"}, - "amenity/place_of_worship/christian/jehovahs_witness": {"icon": "maki-place-of-worship", "geometry": ["point", "area"], "terms": ["christian", "church", "house of God", "house of prayer", "house of worship"], "tags": {"amenity": "place_of_worship", "religion": "christian", "denomination": "jehovahs_witness"}, "reference": {"key": "denomination", "value": "jehovahs_witness"}, "name": "Kingdom Hall of Jehovah's Witnesses"}, - "amenity/place_of_worship/christian/la_luz_del_mundo": {"icon": "maki-place-of-worship", "geometry": ["point", "area"], "terms": ["christian", "church", "house of God", "house of prayer", "house of worship", "the light of the world church"], "tags": {"amenity": "place_of_worship", "religion": "christian", "denomination": "la_luz_del_mundo"}, "reference": {"key": "denomination", "value": "la_luz_del_mundo"}, "name": "La Luz del Mundo Temple"}, - "amenity/place_of_worship/christian/quaker": {"icon": "temaki-quakerism", "geometry": ["point", "area"], "terms": ["christian", "church", "house of God", "house of prayer", "house of worship"], "tags": {"amenity": "place_of_worship", "religion": "christian", "denomination": "quaker"}, "reference": {"key": "denomination", "value": "quaker"}, "name": "Quaker Friends Meeting House"}, - "amenity/place_of_worship/hindu": {"icon": "temaki-hinduism", "fields": ["name", "religion", "denomination", "{amenity/place_of_worship}"], "geometry": ["point", "area"], "terms": ["kovil", "devasthana", "mandir", "kshetram", "alayam", "shrine", "temple"], "tags": {"amenity": "place_of_worship", "religion": "hindu"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Hindu Temple"}, - "amenity/place_of_worship/jewish": {"icon": "maki-religious-jewish", "fields": ["name", "religion", "denomination", "{amenity/place_of_worship}"], "geometry": ["point", "area"], "terms": ["jewish"], "tags": {"amenity": "place_of_worship", "religion": "jewish"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Jewish Synagogue"}, - "amenity/place_of_worship/muslim": {"icon": "maki-religious-muslim", "fields": ["name", "religion", "denomination", "{amenity/place_of_worship}"], "geometry": ["point", "area"], "terms": ["islam", "islamic center", "muslim"], "tags": {"amenity": "place_of_worship", "religion": "muslim"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Muslim Mosque"}, - "amenity/place_of_worship/shinto": {"icon": "temaki-shinto", "fields": ["name", "religion", "denomination", "{amenity/place_of_worship}"], "geometry": ["point", "area"], "terms": ["kami", "torii"], "tags": {"amenity": "place_of_worship", "religion": "shinto"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Shinto Shrine"}, - "amenity/place_of_worship/sikh": {"icon": "temaki-sikhism", "fields": ["name", "religion", "denomination", "{amenity/place_of_worship}"], "geometry": ["point", "area"], "terms": ["gurudwara", "temple"], "tags": {"amenity": "place_of_worship", "religion": "sikh"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Sikh Temple"}, - "amenity/place_of_worship/taoist": {"icon": "temaki-taoism", "fields": ["name", "religion", "denomination", "{amenity/place_of_worship}"], "geometry": ["point", "area"], "terms": ["daoist", "monastery", "temple"], "tags": {"amenity": "place_of_worship", "religion": "taoist"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Taoist Temple"}, - "amenity/planetarium": {"icon": "maki-globe", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["air_conditioning", "charge_fee", "email", "fax", "fee", "gnis/feature_id", "payment_multi_fee", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["museum", "astronomy", "observatory"], "tags": {"amenity": "planetarium"}, "name": "Planetarium"}, - "amenity/police": {"icon": "temaki-police_officer", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "phone", "polling_station", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["badge", "constable", "constabulary", "cop", "detective", "fed", "law", "enforcement", "officer", "patrol"], "tags": {"amenity": "police"}, "name": "Police"}, - "amenity/polling_station": {"icon": "fas-vote-yea", "fields": ["name", "ref", "operator", "address", "opening_hours", "opening_hours/covid19", "building_area"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["ballot box", "ballot drop", "democracy", "elections", "polling place", "vote", "voting booth", "voting machine"], "tags": {"amenity": "polling_station"}, "addTags": {"amenity": "polling_station", "polling_station": "yes"}, "name": "Permanent Polling Place"}, - "amenity/post_box": {"icon": "temaki-post_box", "fields": ["operator", "collection_times", "drive_through", "ref"], "moreFields": ["access_simple", "brand", "colour", "covered", "gnis/feature_id", "height", "indoor", "level", "manufacturer", "material", "support", "wheelchair"], "geometry": ["point", "vertex"], "tags": {"amenity": "post_box"}, "terms": ["drop box", "dropbox", "letter drop", "mail box", "mail collection box", "mail drop", "mail dropoff", "mailbox", "package drop", "pillar box", "pillarbox", "post box", "postal box", "postbox"], "name": "Mail Drop Box"}, - "amenity/post_depot": {"icon": "fas-mail-bulk", "fields": ["name", "operator", "address", "building_area", "phone"], "moreFields": ["email", "fax", "gnis/feature_id", "opening_hours", "opening_hours/covid19", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["mail processing and distribution center", "post depot"], "tags": {"amenity": "post_depot"}, "name": "Post Sorting Office"}, - "amenity/post_office": {"icon": "maki-post", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["brand", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "payment_multi", "phone", "polling_station", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["letter", "mail"], "tags": {"amenity": "post_office"}, "name": "Post Office"}, - "amenity/prep_school": {"icon": "temaki-school", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["academic", "ACT", "SAT", "homework", "math", "reading", "test prep", "tutoring", "writing"], "tags": {"amenity": "prep_school"}, "name": "Test Prep / Tutoring School"}, - "amenity/prison": {"icon": "maki-prison", "fields": ["name", "operator", "operator/type", "address"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website", "wheelchair"], "geometry": ["area", "point"], "terms": ["cell", "jail", "correction"], "tags": {"amenity": "prison"}, "name": "Prison Grounds"}, - "amenity/pub": {"icon": "maki-beer", "fields": ["name", "address", "building_area", "opening_hours", "opening_hours/covid19", "smoking", "brewery"], "moreFields": ["air_conditioning", "cuisine", "diet_multi", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "microbrewery", "min_age", "outdoor_seating", "payment_multi", "phone", "ref/vatin", "real_fire", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "pub"}, "terms": ["alcohol", "drink", "dive", "beer", "bier", "booze"], "name": "Pub"}, - "amenity/pub/irish": {"name": "Irish Pub", "icon": "maki-beer", "geometry": ["point", "area"], "tags": {"amenity": "pub", "theme": "irish"}, "reference": {"key": "theme", "value": "irish"}, "terms": ["irish pub", "irish bar"], "notCountryCodes": ["ie"]}, - "amenity/pub/lgbtq": {"icon": "maki-beer", "geometry": ["point", "area"], "tags": {"amenity": "pub", "lgbtq": "primary"}, "terms": ["gay pub", "lesbian pub", "lgbtq pub", "lgbt pub", "lgb pub"], "name": "LGBTQ+ Pub"}, - "amenity/pub/microbrewery": {"icon": "maki-beer", "geometry": ["point", "area"], "tags": {"amenity": "pub", "microbrewery": "yes"}, "reference": {"key": "microbrewery"}, "terms": ["alcohol", "drink", "dive", "beer", "bier", "booze", "craft brewery", "microbrewery", "small batch brewery"], "name": "Brewpub"}, - "amenity/public_bath": {"icon": "maki-water", "fields": ["name", "bath/type", "bath/open_air", "bath/sand_bath", "address", "building_area", "fee", "charge_fee"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "opening_hours", "opening_hours/covid19", "payment_multi_fee", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "public_bath"}, "terms": ["onsen", "foot bath", "hot springs"], "name": "Public Bath"}, - "amenity/public_bookcase": {"icon": "maki-library", "fields": ["name", "public_bookcase/type", "operator", "opening_hours", "opening_hours/covid19", "capacity", "website", "lit"], "moreFields": ["access_simple", "address", "brand", "covered", "email", "indoor", "level", "location", "phone", "ref", "wheelchair"], "geometry": ["point", "area"], "terms": ["library", "bookcrossing"], "tags": {"amenity": "public_bookcase"}, "name": "Public Bookcase"}, - "amenity/ranger_station": {"icon": "maki-ranger-station", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["visitor center", "visitor centre", "permit center", "permit centre", "backcountry office", "warden office", "warden center"], "tags": {"amenity": "ranger_station"}, "name": "Ranger Station"}, - "amenity/recycling_centre": {"icon": "maki-recycling", "fields": ["name", "operator", "operator/type", "address", "building", "opening_hours", "opening_hours/covid19", "recycling_accepts"], "moreFields": ["charge_fee", "email", "fax", "fee", "payment_multi_fee", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["bottle", "can", "dump", "glass", "garbage", "rubbish", "scrap", "trash"], "tags": {"amenity": "recycling", "recycling_type": "centre"}, "reference": {"key": "recycling_type", "value": "*"}, "name": "Recycling Center"}, - "amenity/recycling_container": {"icon": "maki-recycling", "fields": ["operator", "recycling_accepts", "opening_hours", "opening_hours/covid19", "collection_times"], "moreFields": ["colour", "covered", "indoor", "level", "manufacturer", "material", "ref"], "geometry": ["point", "area"], "terms": ["bin", "can", "bottle", "glass", "garbage", "rubbish", "scrap", "trash"], "tags": {"amenity": "recycling", "recycling_type": "container"}, "reference": {"key": "amenity", "value": "recycling"}, "name": "Recycling Container"}, - "amenity/recycling/container/electrical_items": {"icon": "maki-recycling", "fields": ["{amenity/recycling_container}"], "moreFields": ["{amenity/recycling_container}"], "geometry": ["point", "area"], "terms": ["computers", "electronic waste", "electronics recycling", "ewaste bin", "phones", "tablets"], "tags": {"amenity": "recycling", "recycling_type": "container", "recycling:electrical_items": "yes"}, "reference": {"key": "recycling:electrical_items", "value": "yes"}, "name": "E-Waste Container"}, - "amenity/recycling/container/green_waste": {"icon": "maki-recycling", "fields": ["{amenity/recycling_container}"], "moreFields": ["{amenity/recycling_container}"], "geometry": ["point", "area"], "terms": ["biodegradable", "biological", "compost", "decomposable", "garbage bin", "garden waste", "organic", "rubbish", "food scrap"], "tags": {"amenity": "recycling", "recycling_type": "container", "recycling:green_waste": "yes"}, "reference": {"key": "recycling:green_waste", "value": "yes"}, "name": "Green Waste Container"}, - "amenity/refugee_site": {"icon": "temaki-tents", "fields": ["name", "operator", "operator/type", "informal", "start_date", "capacity", "population"], "moreFields": ["internet_access", "internet_access/fee", "internet_access/ssid", "website"], "geometry": ["point", "area"], "tags": {"amenity": "refugee_site"}, "terms": ["displaced people", "evacuees", "migrants", "ngo", "refugee site"], "name": "Refugee Camp"}, - "amenity/research_institute": {"icon": "fas-flask", "fields": ["name", "operator", "operator/type", "address", "website", "internet_access", "internet_access/fee"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access/ssid", "phone", "wheelchair"], "geometry": ["point", "area"], "terms": ["applied research", "experimentation", "r&d", "r & d", "r and d", "research and development", "research institution", "research laboratory", "research labs"], "tags": {"amenity": "research_institute"}, "name": "Research Institute Grounds"}, - "amenity/restaurant": {"icon": "maki-restaurant", "fields": ["name", "cuisine", "diet_multi", "address", "building_area", "opening_hours", "opening_hours/covid19", "phone", "website"], "moreFields": ["air_conditioning", "bar", "brand", "brewery", "capacity", "delivery", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "microbrewery", "min_age", "not/name", "outdoor_seating", "ref/vatin", "reservation", "smoking", "stars", "takeaway", "wheelchair"], "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "coffee", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant"}, "name": "Restaurant"}, - "amenity/restaurant/american": {"icon": "maki-restaurant", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "coffee", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "american"}, "reference": {"key": "cuisine", "value": "american"}, "name": "American Restaurant"}, - "amenity/restaurant/asian": {"icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "asian"}, "reference": {"key": "cuisine", "value": "asian"}, "name": "Asian Restaurant"}, - "amenity/restaurant/chinese": {"icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "chinese"}, "reference": {"key": "cuisine", "value": "chinese"}, "name": "Chinese Restaurant"}, - "amenity/restaurant/french": {"icon": "maki-restaurant", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "french"}, "reference": {"key": "cuisine", "value": "french"}, "name": "French Restaurant"}, - "amenity/restaurant/german": {"icon": "maki-restaurant", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "german"}, "reference": {"key": "cuisine", "value": "german"}, "name": "German Restaurant"}, - "amenity/restaurant/greek": {"icon": "maki-restaurant", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table", "gyros", "pitas", "olives"], "tags": {"amenity": "restaurant", "cuisine": "greek"}, "reference": {"key": "cuisine", "value": "greek"}, "name": "Greek Restaurant"}, - "amenity/restaurant/indian": {"icon": "maki-restaurant", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table", "curry"], "tags": {"amenity": "restaurant", "cuisine": "indian"}, "reference": {"key": "cuisine", "value": "indian"}, "name": "Indian Restaurant"}, - "amenity/restaurant/italian": {"icon": "maki-restaurant", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table", "pasta", "pizza"], "tags": {"amenity": "restaurant", "cuisine": "italian"}, "reference": {"key": "cuisine", "value": "italian"}, "name": "Italian Restaurant"}, - "amenity/restaurant/japanese": {"icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "japanese"}, "reference": {"key": "cuisine", "value": "japanese"}, "name": "Japanese Restaurant"}, - "amenity/restaurant/mexican": {"icon": "fas-pepper-hot", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table", "tacos", "burritos", "enchiladas", "fajitas", "nachos", "tortillas", "salsa", "tamales", "quesadillas"], "tags": {"amenity": "restaurant", "cuisine": "mexican"}, "reference": {"key": "cuisine", "value": "mexican"}, "name": "Mexican Restaurant"}, - "amenity/restaurant/noodle": {"icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table", "ramen noodles", "soup", "soba noodles", "cellophane noodles", "rice noodles"], "tags": {"amenity": "restaurant", "cuisine": "noodle"}, "reference": {"key": "cuisine", "value": "noodle"}, "name": "Noodle Restaurant"}, - "amenity/restaurant/pizza": {"icon": "maki-restaurant-pizza", "geometry": ["point", "area"], "terms": ["bar", "dine", "dining", "dinner", "drive-in", "eat", "lunch", "table", "deep dish", "thin crust", "slice"], "tags": {"amenity": "restaurant", "cuisine": "pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "name": "Pizza Restaurant"}, - "amenity/restaurant/seafood": {"icon": "maki-restaurant-seafood", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table", "fish", "shellfish", "molluscs", "crustaceans", "clams", "oysters", "lobsters", "crab", "shrimp", "squid", "octopus"], "tags": {"amenity": "restaurant", "cuisine": "seafood"}, "reference": {"key": "cuisine", "value": "seafood"}, "name": "Seafood Restaurant"}, - "amenity/restaurant/steakhouse": {"icon": "maki-slaughterhouse", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table", "steak house", "chop house", "beef"], "tags": {"amenity": "restaurant", "cuisine": "steak_house"}, "reference": {"key": "cuisine", "value": "steak_house"}, "name": "Steakhouse"}, - "amenity/restaurant/sushi": {"icon": "temaki-temaki", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "sushi"}, "reference": {"key": "cuisine", "value": "sushi"}, "name": "Sushi Restaurant"}, - "amenity/restaurant/thai": {"icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "thai"}, "reference": {"key": "cuisine", "value": "thai"}, "name": "Thai Restaurant"}, - "amenity/restaurant/turkish": {"icon": "maki-restaurant", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "turkish"}, "reference": {"key": "cuisine", "value": "turkish"}, "name": "Turkish Restaurant"}, - "amenity/restaurant/vietnamese": {"icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "vietnamese"}, "reference": {"key": "cuisine", "value": "vietnamese"}, "name": "Vietnamese Restaurant"}, - "amenity/sanitary_dump_station": {"icon": "temaki-camper_trailer_dump", "fields": ["operator", "access_simple", "fee", "payment_multi_fee", "charge_fee", "water_point"], "moreFields": ["opening_hours", "opening_hours/covid19"], "geometry": ["point", "vertex", "area"], "terms": ["Motor Home", "Camper", "Sanitary", "Dump Station", "Elsan", "CDP", "CTDP", "Chemical Toilet"], "tags": {"amenity": "sanitary_dump_station"}, "name": "RV Toilet Disposal"}, - "amenity/school": {"icon": "temaki-school", "fields": ["name", "operator", "operator/type", "address", "grades", "religion", "denomination", "website"], "moreFields": ["charge_fee", "email", "fax", "fee", "gnis/feature_id", "internet_access", "internet_access/ssid", "level", "phone", "polling_station", "wheelchair"], "geometry": ["area", "point"], "terms": ["academy", "elementary school", "middle school", "high school"], "tags": {"amenity": "school"}, "name": "School Grounds"}, - "amenity/shelter": {"icon": "maki-shelter", "fields": ["name", "operator", "shelter_type", "building_area", "bench", "bin"], "moreFields": ["gnis/feature_id", "lit", "lockable", "wheelchair"], "geometry": ["point", "vertex", "area"], "terms": ["lean-to", "gazebo", "picnic"], "tags": {"amenity": "shelter"}, "name": "Shelter"}, - "amenity/shelter/gazebo": {"icon": "maki-shelter", "fields": ["name", "building_area", "bench", "lit"], "geometry": ["point", "area"], "tags": {"amenity": "shelter", "shelter_type": "gazebo"}, "name": "Gazebo"}, - "amenity/shelter/lean_to": {"icon": "temaki-sleep_shelter", "fields": ["name", "operator", "building_area"], "geometry": ["point", "area"], "tags": {"amenity": "shelter", "shelter_type": "lean_to"}, "terms": ["alpine hut", "cabin", "leanto", "lodging", "overnight accommodations", "sleeping shelter", "wilderness hut"], "name": "Lean-To"}, - "amenity/shelter/picnic_shelter": {"icon": "temaki-picnic_shelter", "fields": ["name", "operator", "building_area", "lit", "bin"], "geometry": ["point", "area"], "tags": {"amenity": "shelter", "shelter_type": "picnic_shelter"}, "reference": {"key": "shelter_type", "value": "picnic_shelter"}, "terms": ["pavilion"], "name": "Picnic Shelter"}, - "amenity/shelter/public_transport": {"icon": "temaki-transit_shelter", "fields": ["name", "operator", "building_area", "bench", "lit", "bin"], "geometry": ["point", "area"], "terms": ["bus stop", "metro stop", "public transit shelter", "public transport shelter", "tram stop shelter", "waiting"], "tags": {"amenity": "shelter", "shelter_type": "public_transport"}, "reference": {"key": "shelter_type", "value": "public_transport"}, "name": "Transit Shelter"}, - "amenity/shower": {"icon": "temaki-shower", "fields": ["opening_hours", "opening_hours/covid19", "access_simple", "fee", "payment_multi_fee", "charge_fee", "supervised", "building_area", "hot_water", "wheelchair"], "moreFields": ["address", "gender", "level", "operator"], "geometry": ["point", "vertex", "area"], "terms": ["rain closet"], "tags": {"amenity": "shower"}, "name": "Shower"}, - "amenity/smoking_area": {"icon": "fas-smoking", "fields": ["name", "shelter", "bin", "bench", "opening_hours", "opening_hours/covid19"], "moreFields": ["covered", "level", "lit", "wheelchair"], "geometry": ["point", "vertex", "area"], "terms": [], "tags": {"amenity": "smoking_area"}, "name": "Smoking Area"}, - "amenity/social_centre": {"icon": "fas-handshake", "fields": ["name", "brand", "operator", "operator/type", "address", "building_area"], "moreFields": ["air_conditioning", "baby_feeding", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "phone", "polling_station", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["event", "fraternal", "fraternity", "hall", "organization", "professional", "society", "sorority", "union", "vetern"], "tags": {"amenity": "social_centre"}, "name": "Social Center"}, - "amenity/social_facility": {"icon": "temaki-social_facility", "fields": ["name", "operator", "operator/type", "address", "building_area", "social_facility", "social_facility_for"], "moreFields": ["baby_feeding", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "opening_hours", "opening_hours/covid19", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "social_facility"}, "name": "Social Facility"}, - "amenity/social_facility/ambulatory_care": {"icon": "maki-wheelchair", "geometry": ["point", "area"], "tags": {"amenity": "social_facility", "social_facility": "ambulatory_care"}, "reference": {"key": "social_facility", "value": "ambulatory_care"}, "name": "Ambulatory Care"}, - "amenity/social_facility/food_bank": {"icon": "temaki-social_facility", "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "social_facility", "social_facility": "food_bank"}, "reference": {"key": "social_facility", "value": "food_bank"}, "name": "Food Bank"}, - "amenity/social_facility/group_home": {"icon": "maki-wheelchair", "fields": ["{amenity/social_facility}", "wheelchair"], "geometry": ["point", "area"], "terms": ["old", "senior", "living", "care home", "assisted living"], "tags": {"amenity": "social_facility", "social_facility": "group_home", "social_facility:for": "senior"}, "reference": {"key": "social_facility", "value": "group_home"}, "name": "Elderly Group Home"}, - "amenity/social_facility/homeless_shelter": {"icon": "temaki-social_facility", "geometry": ["point", "area"], "terms": ["houseless", "unhoused", "displaced"], "tags": {"amenity": "social_facility", "social_facility": "shelter", "social_facility:for": "homeless"}, "reference": {"key": "social_facility", "value": "shelter"}, "name": "Homeless Shelter"}, - "amenity/social_facility/nursing_home": {"icon": "maki-wheelchair", "fields": ["{amenity/social_facility}", "wheelchair"], "geometry": ["point", "area"], "terms": ["elderly", "living", "nursing", "old", "senior", "assisted living"], "tags": {"amenity": "social_facility", "social_facility": "nursing_home", "social_facility:for": "senior"}, "reference": {"key": "social_facility", "value": "nursing_home"}, "name": "Nursing Home"}, - "amenity/studio": {"icon": "fas-microphone", "fields": ["name", "studio", "address", "building_area", "website"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "phone", "wheelchair"], "geometry": ["point", "area"], "terms": ["recording", "radio", "television"], "tags": {"amenity": "studio"}, "name": "Studio"}, - "amenity/studio/audio": {"icon": "fas-microphone", "geometry": ["point", "area"], "terms": ["audio mixing", "audio production", "audio recording", "audio studio"], "tags": {"amenity": "studio", "studio": "audio"}, "reference": {"key": "studio", "value": "audio"}, "name": "Recording Studio"}, - "amenity/studio/radio": {"icon": "fas-microphone", "geometry": ["point", "area"], "terms": ["am radio", "fm radio", "radio broadcast", "radio studio"], "tags": {"amenity": "studio", "studio": "radio"}, "reference": {"key": "studio", "value": "radio"}, "name": "Radio Station"}, - "amenity/studio/television": {"icon": "fas-video", "geometry": ["point", "area"], "terms": ["television broadcast", "television studio", "tv broadcast", "tv station", "tv studio"], "tags": {"amenity": "studio", "studio": "television"}, "reference": {"key": "studio", "value": "television"}, "name": "Television Station"}, - "amenity/studio/video": {"icon": "fas-video", "geometry": ["point", "area"], "terms": ["movie production", "movie studio", "video production", "video recording", "video studio"], "tags": {"amenity": "studio", "studio": "video"}, "reference": {"key": "studio", "value": "video"}, "name": "Film Studio"}, - "amenity/taxi": {"icon": "fas-taxi", "fields": ["name", "operator", "capacity", "address"], "moreFields": ["access_simple", "brand", "opening_hours", "opening_hours/covid19", "wheelchair"], "geometry": ["point", "vertex", "area"], "terms": ["cab"], "tags": {"amenity": "taxi"}, "name": "Taxi Stand"}, - "amenity/telephone": {"icon": "fas-phone-alt", "fields": ["operator", "phone", "fee", "payment_multi_fee", "charge_fee", "booth"], "moreFields": ["covered", "indoor", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "lit", "ref", "sms", "video_calls", "wheelchair"], "geometry": ["point", "vertex"], "tags": {"amenity": "telephone"}, "terms": ["phone"], "name": "Telephone"}, - "amenity/theatre": {"icon": "maki-theatre", "fields": ["name", "operator", "address", "building_area", "website"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "min_age", "payment_multi", "phone", "wheelchair"], "geometry": ["point", "area"], "terms": ["theatre", "performance", "play", "musical"], "tags": {"amenity": "theatre"}, "name": "Theater"}, - "amenity/theatre/type/amphi": {"icon": "maki-theatre", "fields": ["name", "operator", "address", "lit"], "geometry": ["point", "area"], "terms": ["open air", "outdoor", "greek", "ampi"], "tags": {"amenity": "theatre", "theatre:type": "amphi"}, "name": "Amphitheatre"}, - "amenity/toilets": {"icon": "maki-toilet", "fields": ["toilets/disposal", "access_simple", "gender", "changing_table", "wheelchair", "building_area"], "moreFields": ["charge_fee", "fee", "level", "opening_hours", "opening_hours/covid19", "operator", "payment_multi_fee", "portable", "toilets/handwashing", "toilets/position"], "geometry": ["point", "vertex", "area"], "terms": ["bathroom", "restroom", "outhouse", "privy", "head", "lavatory", "latrine", "water closet", "WC", "W.C."], "tags": {"amenity": "toilets"}, "name": "Toilets"}, - "amenity/toilets/disposal/flush": {"icon": "fas-toilet", "fields": ["toilets/disposal", "{amenity/toilets}"], "moreFields": ["{amenity/toilets}"], "geometry": ["point", "vertex", "area"], "terms": ["bathroom", "head", "lavatory", "privy", "restroom", "water closet", "WC", "W.C."], "tags": {"amenity": "toilets", "toilets:disposal": "flush"}, "reference": {"key": "toilets:disposal", "value": "flush"}, "name": "Flush Toilets"}, - "amenity/toilets/disposal/pitlatrine": {"icon": "temaki-latrine", "fields": ["toilets/disposal", "{amenity/toilets}", "toilets/handwashing"], "moreFields": ["{amenity/toilets}"], "geometry": ["point", "vertex", "area"], "terms": ["head", "lavatory", "long drop", "outhouse", "pit toilet", "privy"], "tags": {"amenity": "toilets", "toilets:disposal": "pitlatrine"}, "reference": {"key": "toilets:disposal", "value": "pitlatrine"}, "name": "Pit Latrine"}, - "amenity/toilets/portable": {"icon": "temaki-latrine", "fields": ["toilets/disposal", "{amenity/toilets}", "toilets/handwashing"], "moreFields": ["{amenity/toilets}"], "geometry": ["point", "area", "vertex"], "terms": ["restroom", "privy", "porta john", "porta potty", "portapot", "chemical toilet"], "tags": {"amenity": "toilets", "portable": "yes"}, "name": "Portable Toilet"}, - "amenity/townhall": {"icon": "temaki-town_hall", "fields": ["name", "operator", "townhall/type", "address", "building_area"], "moreFields": ["baby_feeding", "email", "fax", "gnis/feature_id", "phone", "polling_station", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["village", "city", "government", "courthouse", "municipal"], "tags": {"amenity": "townhall"}, "name": "Town Hall"}, - "amenity/townhall/city": {"icon": "temaki-capitol", "geometry": ["point", "area"], "terms": ["council", "courthouse", "government", "mayor", "municipality"], "tags": {"amenity": "townhall", "townhall:type": "city"}, "reference": {"key": "townhall:type", "value": "city"}, "name": "City Hall"}, - "amenity/toy_library": {"icon": "fas-chess-knight", "fields": ["operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["level", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["game", "toy"], "tags": {"amenity": "toy_library"}, "name": "Toy Library"}, - "amenity/university": {"icon": "maki-college", "fields": ["{amenity/college}"], "moreFields": ["{amenity/college}"], "geometry": ["area", "point"], "terms": ["college", "graduate school", "PhD program", "master's degree program"], "tags": {"amenity": "university"}, "name": "University Grounds"}, - "amenity/vacuum_cleaner": {"icon": "temaki-vacuum_station", "fields": ["operator", "access_simple", "fee", "payment_multi_fee", "charge_fee", "covered", "lit"], "moreFields": ["brand", "manufacturer", "opening_hours", "ref"], "geometry": ["point"], "tags": {"amenity": "vacuum_cleaner"}, "terms": ["car vacuum cleaner", "car wash", "carvac", "suction"], "name": "Vacuum Cleaning Station"}, - "amenity/vehicle_inspection": {"icon": "maki-car", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["car inspection"], "tags": {"amenity": "vehicle_inspection"}, "name": "Vehicle Inspection"}, - "amenity/vending_machine": {"icon": "temaki-vending_machine", "fields": ["vending", "ref", "operator", "payment_multi", "currency_multi"], "moreFields": ["blind", "brand", "covered", "height", "indoor", "level", "manufacturer"], "geometry": ["point", "vertex"], "terms": [], "tags": {"amenity": "vending_machine"}, "matchScore": 0.9, "name": "Vending Machine"}, - "amenity/vending_machine/bottle_return": {"icon": "temaki-vending_machine", "fields": ["vending", "operator"], "geometry": ["point", "vertex"], "terms": ["bottle return"], "tags": {"amenity": "vending_machine", "vending": "bottle_return"}, "reference": {"key": "vending", "value": "bottle_return"}, "name": "Bottle Return Machine"}, - "amenity/vending_machine/bread": {"icon": "temaki-vending_bread", "geometry": ["point", "vertex"], "terms": ["baguette", "bread"], "tags": {"amenity": "vending_machine", "vending": "bread"}, "reference": {"key": "vending", "value": "bread"}, "name": "Bread Vending Machine"}, - "amenity/vending_machine/cigarettes": {"icon": "temaki-vending_cigarettes", "moreFields": ["{amenity/vending_machine}", "min_age"], "geometry": ["point", "vertex"], "terms": ["cigarette"], "tags": {"amenity": "vending_machine", "vending": "cigarettes"}, "reference": {"key": "vending", "value": "cigarettes"}, "name": "Cigarette Vending Machine"}, - "amenity/vending_machine/coffee": {"icon": "temaki-vending_hot_drink", "geometry": ["point", "vertex"], "terms": ["coffee"], "tags": {"amenity": "vending_machine", "vending": "coffee"}, "reference": {"key": "vending", "value": "coffee"}, "name": "Coffee Vending Machine"}, - "amenity/vending_machine/condoms": {"icon": "temaki-vending_love", "geometry": ["point", "vertex"], "terms": ["condom"], "tags": {"amenity": "vending_machine", "vending": "condoms"}, "reference": {"key": "vending", "value": "condoms"}, "name": "Condom Vending Machine"}, - "amenity/vending_machine/drinks": {"icon": "temaki-vending_cold_drink", "fields": ["vending", "drink_multi", "{amenity/vending_machine}"], "geometry": ["point", "vertex"], "terms": ["drink", "soda", "beverage", "juice", "pop"], "tags": {"amenity": "vending_machine", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "name": "Drink Vending Machine"}, - "amenity/vending_machine/eggs": {"icon": "temaki-vending_eggs", "geometry": ["point", "vertex"], "terms": ["egg"], "tags": {"amenity": "vending_machine", "vending": "eggs"}, "reference": {"key": "vending", "value": "eggs"}, "name": "Egg Vending Machine"}, - "amenity/vending_machine/electronics": {"icon": "temaki-vending_machine", "geometry": ["point", "vertex"], "terms": ["cable", "charger", "earbud", "headphone", "phone", "tablet"], "tags": {"amenity": "vending_machine", "vending": "electronics"}, "reference": {"key": "vending", "value": "electronics"}, "name": "Electronics Vending Machine"}, - "amenity/vending_machine/elongated_coin": {"icon": "temaki-vending_flat_coin", "geometry": ["point", "vertex"], "terms": ["coin", "crush", "elongated", "flatten", "penny", "souvenir"], "tags": {"amenity": "vending_machine", "vending": "elongated_coin"}, "reference": {"key": "vending", "value": "elongated_coin"}, "name": "Flat Coin Vending Machine"}, - "amenity/vending_machine/excrement_bags": {"icon": "temaki-vending_pet_waste", "geometry": ["point", "vertex"], "terms": ["excrement bags", "poop", "waste", "dog", "animal"], "tags": {"amenity": "vending_machine", "vending": "excrement_bags"}, "reference": {"key": "vending", "value": "excrement_bags"}, "name": "Excrement Bag Dispenser"}, - "amenity/vending_machine/feminine_hygiene": {"icon": "temaki-vending_venus", "geometry": ["point", "vertex"], "terms": ["condom", "tampon", "pad", "woman", "women", "menstrual hygiene products", "personal care"], "tags": {"amenity": "vending_machine", "vending": "feminine_hygiene"}, "reference": {"key": "vending", "value": "feminine_hygiene"}, "name": "Feminine Hygiene Vending Machine"}, - "amenity/vending_machine/food": {"icon": "temaki-vending_machine", "geometry": ["point", "vertex"], "terms": ["food"], "tags": {"amenity": "vending_machine", "vending": "food"}, "reference": {"key": "vending", "value": "food"}, "name": "Food Vending Machine"}, - "amenity/vending_machine/fuel": {"icon": "maki-fuel", "geometry": ["point", "vertex"], "terms": ["petrol", "fuel", "gasoline", "propane", "diesel", "lng", "cng", "biodiesel"], "tags": {"amenity": "vending_machine", "vending": "fuel"}, "reference": {"key": "vending", "value": "fuel"}, "name": "Gas Pump", "matchScore": 0.5}, - "amenity/vending_machine/ice_cream": {"icon": "temaki-vending_ice_cream", "geometry": ["point", "vertex"], "terms": ["chocolate", "ice cream", "frozen", "popsicle", "vanilla"], "tags": {"amenity": "vending_machine", "vending": "ice_cream"}, "reference": {"key": "vending", "value": "ice_cream"}, "name": "Ice Cream Vending Machine"}, - "amenity/vending_machine/ice_cubes": {"icon": "temaki-vending_ice", "geometry": ["point", "vertex"], "terms": ["cubes", "ice"], "tags": {"amenity": "vending_machine", "vending": "ice_cubes"}, "reference": {"key": "vending", "value": "ice_cubes"}, "name": "Ice Vending Machine"}, - "amenity/vending_machine/newspapers": {"icon": "temaki-vending_newspaper", "fields": ["vending", "ref", "operator", "fee", "payment_multi_fee", "charge_fee", "currency_multi"], "geometry": ["point", "vertex"], "terms": ["newspaper"], "tags": {"amenity": "vending_machine", "vending": "newspapers"}, "reference": {"key": "vending", "value": "newspapers"}, "name": "Newspaper Vending Machine"}, - "amenity/vending_machine/parcel_pickup_dropoff": {"icon": "temaki-vending_lockers", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point", "vertex"], "terms": ["mail", "packstation", "parcel", "pickup"], "tags": {"amenity": "vending_machine", "vending": "parcel_pickup;parcel_mail_in"}, "reference": {"key": "vending", "value": "parcel_pickup;parcel_mail_in"}, "name": "Parcel Pickup/Dropoff Locker"}, - "amenity/vending_machine/parcel_pickup": {"icon": "temaki-vending_lockers", "fields": ["vending", "operator"], "geometry": ["point", "vertex"], "terms": ["amazon", "locker", "mail", "packstation", "parcel", "pickup"], "tags": {"amenity": "vending_machine", "vending": "parcel_pickup"}, "reference": {"key": "vending", "value": "parcel_pickup"}, "name": "Parcel Pickup Locker"}, - "amenity/vending_machine/parking_tickets": {"icon": "temaki-vending_tickets", "geometry": ["point", "vertex"], "terms": ["parking", "ticket"], "tags": {"amenity": "vending_machine", "vending": "parking_tickets"}, "reference": {"key": "vending", "value": "parking_tickets"}, "matchScore": 0.94, "name": "Parking Ticket Vending Machine"}, - "amenity/vending_machine/public_transport_tickets": {"icon": "temaki-vending_tickets", "geometry": ["point", "vertex"], "terms": ["bus", "train", "ferry", "rail", "ticket", "transportation"], "tags": {"amenity": "vending_machine", "vending": "public_transport_tickets"}, "reference": {"key": "vending", "value": "public_transport_tickets"}, "name": "Transit Ticket Vending Machine"}, - "amenity/vending_machine/stamps": {"icon": "temaki-vending_stamps", "geometry": ["point", "vertex"], "terms": ["mail", "postage", "stamp"], "tags": {"amenity": "vending_machine", "vending": "stamps"}, "reference": {"key": "vending", "value": "stamps"}, "name": "Postage Vending Machine"}, - "amenity/vending_machine/sweets": {"icon": "temaki-vending_machine", "geometry": ["point", "vertex"], "terms": ["candy", "gum", "chip", "pretzel", "cookie", "cracker"], "tags": {"amenity": "vending_machine", "vending": "sweets"}, "reference": {"key": "vending", "value": "sweets"}, "name": "Snack Vending Machine"}, - "amenity/veterinary": {"icon": "temaki-veterinary_care", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["charge_fee", "email", "fax", "fee", "gnis/feature_id", "level", "payment_multi_fee", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["pet clinic", "veterinarian", "animal hospital", "pet doctor"], "tags": {"amenity": "veterinary"}, "name": "Veterinary"}, - "amenity/waste_basket": {"icon": "maki-waste-basket", "fields": ["operator", "waste", "collection_times", "material", "colour"], "moreFields": ["covered", "indoor", "manufacturer"], "geometry": ["point", "vertex"], "tags": {"amenity": "waste_basket"}, "terms": ["bin", "garbage", "rubbish", "litter", "trash"], "name": "Waste Basket"}, - "amenity/waste_disposal": {"icon": "fas-dumpster", "fields": ["operator", "waste", "collection_times", "access_simple"], "moreFields": ["brand", "colour", "height", "manufacturer", "material"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "waste_disposal"}, "terms": ["garbage", "rubbish", "litter", "trash"], "name": "Garbage Dumpster"}, - "amenity/waste_transfer_station": {"icon": "fas-trash-restore", "fields": ["name", "operator", "operator/type", "waste", "address", "opening_hours", "opening_hours/covid19", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["email", "fax", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["dump", "garbage", "recycling", "rubbish", "scrap", "trash"], "tags": {"amenity": "waste_transfer_station"}, "name": "Waste Transfer Station"}, - "amenity/waste/dog_excrement": {"icon": "maki-waste-basket", "fields": ["collection_times"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "waste_basket", "waste": "dog_excrement"}, "reference": {"key": "waste", "value": "dog_excrement"}, "terms": ["bin", "garbage", "rubbish", "litter", "trash", "poo", "dog"], "name": "Dog Excrement Bin"}, - "amenity/water_point": {"icon": "maki-drinking-water", "fields": ["operator", "access_simple", "fee", "payment_multi_fee", "charge_fee", "opening_hours", "opening_hours/covid19"], "moreFields": ["covered", "drinking_water", "lit", "ref"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "water_point"}, "terms": ["water faucet", "water point", "water tap", "water source", "water spigot"], "name": "RV Drinking Water"}, - "amenity/watering_place": {"icon": "maki-drinking-water", "fields": ["operator", "fee", "payment_multi_fee", "charge_fee", "opening_hours", "opening_hours/covid19"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "watering_place"}, "name": "Animal Watering Place"}, - "amenity/weighbridge": {"icon": "fas-weight", "fields": ["ref", "operator", "access_simple", "maxweight"], "moreFields": ["address", "colour", "lit", "manufacturer", "material", "wheelchair"], "geometry": ["point", "vertex"], "terms": ["weigh station", "weighbridge"], "tags": {"amenity": "weighbridge"}, "name": "Truck Scale"}, - "area": {"fields": ["name"], "geometry": ["area"], "tags": {"area": "yes"}, "terms": ["polygon"], "name": "Area", "matchScore": 0.1}, - "area/highway": {"fields": ["name", "area/highway", "surface"], "geometry": ["area"], "terms": ["area:highway", "edge of pavement", "highway area", "highway shape", "pavement", "road shape", "street area"], "tags": {"area:highway": "*"}, "name": "Road Area"}, - "attraction/amusement_ride": {"icon": "maki-amusement-park", "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "area"], "terms": ["theme park", "carnival ride"], "tags": {"attraction": "amusement_ride"}, "name": "Amusement Ride"}, - "attraction/animal": {"icon": "maki-zoo", "fields": ["name", "operator", "species/wikidata"], "geometry": ["point", "area"], "terms": ["amphibian", "animal park", "aquarium", "bear", "bird", "fish", "insect", "lion", "mammal", "monkey", "penguin", "reptile", "safari", "theme park", "tiger", "zoo"], "tags": {"attraction": "animal"}, "name": "Animal Enclosure"}, - "attraction/big_wheel": {"icon": "maki-amusement-park", "fields": ["{attraction}", "height"], "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point"], "terms": ["ferris wheel", "theme park", "amusement ride"], "tags": {"attraction": "big_wheel"}, "name": "Big Wheel"}, - "attraction/bumper_car": {"icon": "fas-car-crash", "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "area"], "terms": ["theme park", "dodgem cars", "autoscooter"], "tags": {"attraction": "bumper_car"}, "name": "Bumper Cars"}, - "attraction/bungee_jumping": {"icon": "maki-pitch", "fields": ["{attraction}", "height"], "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "area"], "terms": ["theme park", "bungy jumping", "jumping platform"], "tags": {"attraction": "bungee_jumping"}, "name": "Bungee Jumping"}, - "attraction/carousel": {"icon": "temaki-amusement_park", "fields": ["{attraction}", "building_area"], "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "area"], "terms": ["theme park", "roundabout", "merry-go-round", "galloper", "jumper", "horseabout", "flying horses"], "tags": {"attraction": "carousel"}, "name": "Carousel"}, - "attraction/dark_ride": {"icon": "maki-rail-metro", "fields": ["{attraction}", "building_area"], "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "line", "area"], "terms": ["theme park", "ghost train"], "tags": {"attraction": "dark_ride"}, "name": "Dark Ride"}, - "attraction/drop_tower": {"icon": "temaki-tower", "fields": ["{attraction}", "height"], "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "area"], "terms": ["theme park", "amusement ride", "gondola", "tower", "big drop"], "tags": {"attraction": "drop_tower"}, "name": "Drop Tower Ride"}, - "attraction/kiddie_ride": {"icon": "temaki-amusement_park", "fields": ["{attraction}", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point"], "tags": {"attraction": "kiddie_ride"}, "name": "Kiddie Ride"}, - "attraction/log_flume": {"icon": "maki-ferry", "fields": ["{attraction}", "height"], "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "area"], "terms": ["theme park", "amusement ride", "flume"], "tags": {"attraction": "log_flume"}, "name": "Log Flume"}, - "attraction/maze": {"icon": "maki-amusement-park", "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "area"], "terms": ["theme park", "amusement ride", "labyrinth"], "tags": {"attraction": "maze"}, "name": "Maze"}, - "attraction/pirate_ship": {"icon": "maki-danger", "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point"], "terms": ["theme park", "carnival ride", "amusement ride"], "tags": {"attraction": "pirate_ship"}, "name": "Pirate Ship Ride"}, - "attraction/river_rafting": {"icon": "maki-ferry", "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "line"], "terms": ["theme park", "aquatic park", "water park", "rafting simulator", "river rafting ride", "river rapids ride"], "tags": {"attraction": "river_rafting"}, "name": "River Rapids Ride"}, - "attraction/roller_coaster": {"icon": "temaki-roller_coaster", "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "area"], "terms": ["theme park", "amusement ride"], "tags": {"attraction": "roller_coaster"}, "name": "Roller Coaster"}, - "attraction/summer_toboggan": {"icon": "temaki-sledding", "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["line"], "terms": ["alpine slide", "mountain coaster"], "tags": {"attraction": "summer_toboggan"}, "name": "Summer Toboggan"}, - "attraction/swing_carousel": {"icon": "temaki-tower", "fields": ["{attraction}", "height"], "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["point", "area"], "terms": ["theme park", "amusement ride", "carousel", "tower", "carousel tower"], "tags": {"attraction": "swing_carousel"}, "name": "Swing Carousel"}, - "attraction/train": {"icon": "temaki-train_kids", "fields": ["{attraction}", "fee", "charge_fee"], "geometry": ["point", "line"], "terms": ["theme park", "rackless train", "road train", "Tschu-Tschu train", "dotto train", "park train"], "tags": {"attraction": "train"}, "name": "Tourist Train"}, - "attraction/water_slide": {"icon": "temaki-slide", "fields": ["{attraction}", "height"], "moreFields": ["{attraction}", "max_age", "min_age"], "geometry": ["line", "area"], "terms": ["theme park", "aquatic park", "water park", "flumes", "water chutes", "hydroslides"], "tags": {"attraction": "water_slide"}, "name": "Water Slide"}, - "barrier": {"icon": "maki-roadblock", "geometry": ["point", "vertex", "line", "area"], "tags": {"barrier": "*"}, "fields": ["barrier"], "moreFields": ["level"], "name": "Barrier", "matchScore": 0.4}, - "barrier/entrance": {"icon": "maki-entrance-alt1", "geometry": ["vertex"], "tags": {"barrier": "entrance"}, "name": "Entrance", "searchable": false}, - "barrier/block": {"icon": "fas-cube", "fields": ["access", "material"], "geometry": ["point", "vertex"], "tags": {"barrier": "block"}, "name": "Block"}, - "barrier/bollard_line": {"icon": "temaki-bollard_row", "fields": ["access", "bollard", "height", "material", "colour"], "geometry": ["line"], "tags": {"barrier": "bollard"}, "name": "Bollard Row"}, - "barrier/bollard": {"icon": "temaki-bollard", "fields": ["access", "bollard", "height", "width", "material", "colour"], "geometry": ["point", "vertex"], "tags": {"barrier": "bollard"}, "name": "Bollard"}, - "barrier/border_control": {"icon": "temaki-passport_checkpoint", "fields": ["access", "building_area"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["vertex", "area"], "tags": {"barrier": "border_control"}, "terms": ["checkpoint", "customs", "international boundary", "passport check", "port of entry", "visa"], "name": "Border Control"}, - "barrier/cattle_grid": {"icon": "temaki-cattle_grid", "geometry": ["vertex"], "tags": {"barrier": "cattle_grid"}, "terms": ["cattle guard", "cattle stop", "livestock grid", "stock gate", "stock grid", "stock stop", "Texas gate", "vehicle pass"], "name": "Cattle Grid"}, - "barrier/chain": {"icon": "temaki-rope_fence", "fields": ["access"], "geometry": ["vertex", "line"], "tags": {"barrier": "chain"}, "name": "Chain"}, - "barrier/city_wall": {"icon": "temaki-wall", "fields": ["height", "material"], "geometry": ["line", "area"], "tags": {"barrier": "city_wall"}, "name": "City Wall"}, - "barrier/cycle_barrier": {"icon": "temaki-cycle_barrier", "fields": ["access"], "geometry": ["vertex"], "tags": {"barrier": "cycle_barrier"}, "terms": ["bicycle barrier", "bicycling barrier", "bike gates", "cycling barrier"], "name": "Cycle Barrier"}, - "barrier/ditch": {"icon": "temaki-trench", "geometry": ["line", "area"], "tags": {"barrier": "ditch"}, "name": "Trench", "matchScore": 0.25}, - "barrier/fence": {"icon": "maki-fence", "fields": ["fence_type", "height", "material"], "geometry": ["line"], "tags": {"barrier": "fence"}, "name": "Fence", "matchScore": 0.25}, - "barrier/fence/railing": {"icon": "temaki-railing", "geometry": ["line"], "tags": {"barrier": "fence", "fence_type": "railing"}, "terms": ["railing", "handrail", "guard rail"], "name": "Railing", "matchScore": 0.5}, - "barrier/gate": {"icon": "temaki-gate", "fields": ["access", "wheelchair", "opening_hours", "opening_hours/covid19", "height", "material"], "moreFields": ["colour", "manufacturer", "operator", "ref"], "geometry": ["vertex", "line"], "tags": {"barrier": "gate"}, "name": "Gate"}, - "barrier/guard_rail": {"icon": "temaki-guard_rail", "fields": ["material"], "geometry": ["line"], "tags": {"barrier": "guard_rail"}, "name": "Guard Rail", "terms": ["guardrail", "traffic barrier", "crash barrier", "median barrier", "roadside barrier", "Armco barrier"], "matchScore": 0.75}, - "barrier/hedge": {"icon": "temaki-hedge", "fields": ["height"], "geometry": ["line", "area"], "tags": {"barrier": "hedge"}, "name": "Hedge", "matchScore": 0.25}, - "barrier/height_restrictor": {"icon": "temaki-height_restrictor", "fields": ["maxheight"], "geometry": ["vertex"], "tags": {"barrier": "height_restrictor"}, "terms": ["height barrier", "height restriction barrier", "maxheight", "maximum height measurer"], "name": "Height Restrictor"}, - "barrier/kerb": {"icon": "temaki-kerb-raised", "fields": ["kerb", "tactile_paving", "wheelchair"], "moreFields": ["material"], "geometry": ["vertex", "line"], "tags": {"barrier": "kerb"}, "matchScore": 0.5, "name": "Curb"}, - "barrier/kerb/flush": {"icon": "temaki-kerb-flush", "fields": ["kerb", "{barrier/kerb}"], "geometry": ["vertex", "line"], "tags": {"kerb": "flush"}, "addTags": {"barrier": "kerb", "kerb": "flush"}, "reference": {"key": "kerb", "value": "flush"}, "terms": ["even curb", "level curb", "tactile curb"], "matchScore": 0.55, "name": "Flush Curb"}, - "barrier/kerb/lowered": {"icon": "temaki-kerb-lowered", "fields": ["kerb", "{barrier/kerb}", "kerb/height"], "geometry": ["vertex", "line"], "tags": {"kerb": "lowered"}, "addTags": {"barrier": "kerb", "kerb": "lowered"}, "reference": {"key": "kerb", "value": "lowered"}, "terms": ["curb cut", "curb ramp", "kerb ramp", "dropped kerb", "pram ramp"], "matchScore": 0.55, "name": "Lowered Curb"}, - "barrier/kerb/raised": {"icon": "temaki-kerb-raised", "fields": ["kerb", "{barrier/kerb}", "kerb/height"], "geometry": ["vertex", "line"], "tags": {"kerb": "raised"}, "addTags": {"barrier": "kerb", "kerb": "raised"}, "reference": {"key": "kerb", "value": "raised"}, "terms": [], "matchScore": 0.55, "name": "Raised Curb"}, - "barrier/kerb/rolled": {"icon": "temaki-kerb-rolled", "fields": ["kerb", "{barrier/kerb}", "kerb/height"], "geometry": ["vertex", "line"], "tags": {"kerb": "rolled"}, "addTags": {"barrier": "kerb", "kerb": "rolled"}, "reference": {"key": "kerb", "value": "rolled"}, "terms": ["gutter"], "matchScore": 0.55, "name": "Rolled Curb"}, - "barrier/kissing_gate": {"icon": "temaki-gate", "fields": ["access"], "geometry": ["vertex"], "tags": {"barrier": "kissing_gate"}, "name": "Kissing Gate"}, - "barrier/lift_gate": {"icon": "temaki-lift_gate", "fields": ["access", "opening_hours", "opening_hours/covid19"], "geometry": ["vertex", "line"], "tags": {"barrier": "lift_gate"}, "terms": ["boom barrier", "boom gate", "boom lift", "hinged bar", "pivoted pole"], "name": "Lift Gate"}, - "barrier/retaining_wall": {"icon": "temaki-wall", "fields": ["height", "material"], "geometry": ["line", "area"], "tags": {"barrier": "retaining_wall"}, "name": "Retaining Wall"}, - "barrier/sally_port": {"icon": "fas-dungeon", "geometry": ["vertex"], "tags": {"barrier": "sally_port"}, "terms": ["Postern", "castle side gate"], "name": "Sally Port"}, - "barrier/spikes": {"icon": "temaki-spike_strip", "fields": ["direction_vertex", "access", "height", "colour"], "geometry": ["vertex"], "tags": {"barrier": "spikes"}, "terms": ["one-way traffic treadles", "stingers", "stop sticks", "tire deflation device", "tire shredders", "traffic spikes"], "name": "Spike Strip", "matchScore": 0.5}, - "barrier/stile": {"icon": "temaki-stile_squeezer", "fields": ["access", "stile", "material"], "geometry": ["vertex"], "tags": {"barrier": "stile"}, "name": "Stile"}, - "barrier/swing_gate": {"icon": "temaki-gate", "fields": ["{barrier/gate}"], "moreFields": ["{barrier/gate}"], "geometry": ["vertex"], "tags": {"barrier": "swing_gate"}, "name": "Swing Gate"}, - "barrier/toll_booth": {"icon": "maki-roadblock", "fields": ["access", "building_area", "payment_multi", "currency_multi"], "moreFields": ["address", "email", "fax", "opening_hours", "opening_hours/covid19", "phone", "website"], "geometry": ["vertex", "area"], "tags": {"barrier": "toll_booth"}, "name": "Toll Booth"}, - "barrier/turnstile": {"icon": "temaki-turnstile", "fields": ["access"], "geometry": ["vertex"], "terms": ["baffle gate", "turnstyle"], "tags": {"barrier": "turnstile"}, "name": "Turnstile"}, - "barrier/wall": {"icon": "temaki-wall", "fields": ["wall", "height", "material"], "geometry": ["line", "area"], "tags": {"barrier": "wall"}, "name": "Wall", "matchScore": 0.25}, - "barrier/wall/noise_barrier": {"icon": "temaki-wall", "geometry": ["line", "area"], "tags": {"barrier": "wall", "wall": "noise_barrier"}, "terms": ["acoustical barrier", "noise wall", "noisewall", "sound barrier", "sound berm", "sound wall", "soundberm", "soundwall"], "name": "Noise Barrier", "matchScore": 0.27}, - "boundary/administrative": {"fields": ["name", "admin_level"], "geometry": ["line"], "tags": {"boundary": "administrative"}, "name": "Administrative Boundary", "matchScore": 0.5}, - "bridge/support": {"icon": "fas-archway", "fields": ["bridge/support", "height", "layer", "material"], "moreFields": ["colour", "seamark/type"], "geometry": ["point", "vertex", "area"], "tags": {"bridge:support": "*"}, "name": "Bridge Support"}, - "bridge/support/pier": {"icon": "fas-archway", "fields": ["bridge/support", "{bridge/support}"], "geometry": ["point", "vertex", "area"], "tags": {"bridge:support": "pier"}, "name": "Bridge Pier"}, - "building_part": {"icon": "maki-building", "fields": ["building/levels", "height", "building/material", "roof/colour"], "moreFields": ["layer"], "geometry": ["area"], "tags": {"building:part": "*"}, "matchScore": 0.5, "terms": ["roof", "simple 3D buildings"], "name": "Building Part"}, - "building": {"icon": "maki-home", "fields": ["name", "building", "building/levels", "height", "address"], "moreFields": ["architect", "building/levels/underground", "building/material", "ele", "gnis/feature_id", "layer", "not/name", "operator", "roof/colour", "smoking", "wheelchair"], "geometry": ["area"], "tags": {"building": "*"}, "matchScore": 0.6, "terms": [], "name": "Building"}, - "building/bunker": {"icon": "temaki-bunker", "geometry": ["area"], "tags": {"building": "bunker"}, "matchScore": 0.5, "name": "Bunker", "searchable": false}, - "building/entrance": {"icon": "maki-entrance-alt1", "fields": [], "moreFields": [], "geometry": ["vertex"], "tags": {"building": "entrance"}, "name": "Entrance/Exit", "searchable": false}, - "building/train_station": {"icon": "maki-building", "geometry": ["point", "vertex", "area"], "tags": {"building": "train_station"}, "matchScore": 0.5, "name": "Train Station Building", "searchable": false}, - "building/apartments": {"icon": "maki-building", "fields": ["{building}", "building/flats"], "geometry": ["area"], "tags": {"building": "apartments"}, "matchScore": 0.5, "name": "Apartment Building"}, - "building/barn": {"icon": "temaki-barn", "geometry": ["area"], "tags": {"building": "barn"}, "matchScore": 0.5, "name": "Barn"}, - "building/boathouse": {"icon": "maki-harbor", "geometry": ["area"], "tags": {"building": "boathouse"}, "matchScore": 0.5, "terms": [], "name": "Boathouse"}, - "building/bungalow": {"icon": "maki-home", "geometry": ["area"], "tags": {"building": "bungalow"}, "terms": ["home", "detached"], "matchScore": 0.5, "name": "Bungalow"}, - "building/cabin": {"icon": "temaki-cabin", "geometry": ["area"], "tags": {"building": "cabin"}, "matchScore": 0.5, "name": "Cabin"}, - "building/carport": {"icon": "temaki-carport", "fields": ["{building}", "capacity"], "geometry": ["area"], "tags": {"building": "carport"}, "matchScore": 0.5, "terms": ["covered parking space", "garage", "car", "porch"], "name": "Carport"}, - "building/cathedral": {"icon": "fas-church", "geometry": ["area"], "tags": {"building": "cathedral"}, "matchScore": 0.5, "name": "Cathedral Building"}, - "building/chapel": {"icon": "maki-place-of-worship", "geometry": ["area"], "tags": {"building": "chapel"}, "matchScore": 0.5, "name": "Chapel Building"}, - "building/church": {"icon": "fas-church", "geometry": ["area"], "tags": {"building": "church"}, "matchScore": 0.5, "name": "Church Building"}, - "building/civic": {"icon": "maki-building", "fields": ["{building}", "smoking"], "moreFields": ["{building}", "polling_station"], "geometry": ["area"], "tags": {"building": "civic"}, "matchScore": 0.5, "name": "Civic Building"}, - "building/college": {"icon": "fas-school", "moreFields": ["{building}", "polling_station"], "geometry": ["area"], "terms": ["university"], "tags": {"building": "college"}, "matchScore": 0.5, "name": "College Building"}, - "building/commercial": {"icon": "maki-suitcase", "fields": ["{building}", "smoking"], "moreFields": ["{building}", "phone", "website"], "geometry": ["area"], "tags": {"building": "commercial"}, "matchScore": 0.5, "name": "Commercial Building"}, - "building/construction": {"icon": "maki-building", "geometry": ["area"], "tags": {"building": "construction"}, "matchScore": 0.5, "name": "Building Under Construction"}, - "building/cowshed": {"icon": "temaki-barn", "geometry": ["area"], "tags": {"building": "cowshed"}, "matchScore": 0.5, "terms": ["byre", "cow barn", "cow house", "cow shed", "cowbarn", "cowhouse", "dairy barn", "milking barn"], "name": "Cowshed"}, - "building/detached": {"icon": "maki-home", "geometry": ["area"], "tags": {"building": "detached"}, "terms": ["home", "single", "family", "residence", "dwelling"], "matchScore": 0.5, "name": "Detached House"}, - "building/dormitory": {"icon": "maki-building", "fields": ["{building}", "smoking"], "geometry": ["area"], "tags": {"building": "dormitory"}, "matchScore": 0.5, "name": "Dormitory"}, - "building/farm_auxiliary": {"icon": "maki-farm", "geometry": ["area"], "tags": {"building": "farm_auxiliary"}, "terms": ["agriculture", "auxiliary", "auxilary", "chicken coop", "farm auxiliary", "pigsty", "sty"], "matchScore": 0.5, "name": "Farm Building"}, - "building/farm": {"icon": "maki-farm", "geometry": ["area"], "tags": {"building": "farm"}, "matchScore": 0.5, "name": "Farm House"}, - "building/garage": {"icon": "fas-warehouse", "fields": ["{building}", "capacity"], "geometry": ["area"], "tags": {"building": "garage"}, "matchScore": 0.5, "name": "Garage"}, - "building/garages": {"icon": "fas-warehouse", "fields": ["{building}", "capacity"], "geometry": ["area"], "tags": {"building": "garages"}, "matchScore": 0.5, "name": "Garages"}, - "building/grandstand": {"icon": "maki-building", "geometry": ["area"], "tags": {"building": "grandstand"}, "terms": ["tribune", "stand", "stands", "bleachers"], "matchScore": 0.5, "name": "Grandstand"}, - "building/greenhouse": {"icon": "maki-garden-centre", "geometry": ["area"], "tags": {"building": "greenhouse"}, "matchScore": 0.5, "name": "Greenhouse"}, - "building/hangar": {"icon": "fas-warehouse", "fields": ["name"], "geometry": ["area"], "tags": {"building": "hangar"}, "matchScore": 0.5, "name": "Hangar Building"}, - "building/hospital": {"icon": "fas-hospital-alt", "geometry": ["area"], "tags": {"building": "hospital"}, "matchScore": 0.5, "name": "Hospital Building"}, - "building/hotel": {"icon": "fas-hotel", "fields": ["{building}", "smoking"], "geometry": ["area"], "tags": {"building": "hotel"}, "matchScore": 0.5, "name": "Hotel Building"}, - "building/house": {"icon": "maki-home", "geometry": ["area"], "tags": {"building": "house"}, "terms": ["home", "family", "residence", "dwelling"], "matchScore": 0.5, "name": "House"}, - "building/houseboat": {"icon": "temaki-houseboat", "geometry": ["area"], "tags": {"building": "houseboat"}, "terms": ["home", "family", "residence", "dwelling"], "matchScore": 0.5, "name": "Houseboat"}, - "building/hut": {"icon": "maki-home", "geometry": ["area"], "tags": {"building": "hut"}, "matchScore": 0.5, "name": "Hut"}, - "building/industrial": {"icon": "maki-industry", "geometry": ["area"], "tags": {"building": "industrial"}, "matchScore": 0.5, "name": "Industrial Building"}, - "building/kindergarten": {"icon": "fas-school", "geometry": ["area"], "terms": ["kindergarten", "kindergarden", "pre-school"], "tags": {"building": "kindergarten"}, "matchScore": 0.5, "name": "Preschool / Kindergarten Building"}, - "building/mosque": {"icon": "fas-mosque", "geometry": ["area"], "tags": {"building": "mosque"}, "matchScore": 0.5, "name": "Mosque Building"}, - "building/office": {"icon": "maki-suitcase", "fields": ["{building}", "smoking"], "moreFields": ["{building}", "phone", "website"], "geometry": ["area"], "tags": {"building": "office"}, "matchScore": 0.5, "terms": ["business center", "office block"], "name": "Office Building"}, - "building/pavilion": {"icon": "maki-building", "fields": ["{building}", "smoking"], "geometry": ["area"], "terms": ["sports"], "tags": {"building": "pavilion"}, "matchScore": 0.5, "name": "Pavilion Building"}, - "building/public": {"icon": "maki-building", "fields": ["{building}", "smoking"], "moreFields": ["{building}", "polling_station"], "geometry": ["area"], "tags": {"building": "public"}, "matchScore": 0.5, "name": "Public Building"}, - "building/residential": {"icon": "maki-residential-community", "geometry": ["area"], "tags": {"building": "residential"}, "matchScore": 0.5, "name": "Residential Building"}, - "building/retail": {"icon": "maki-commercial", "fields": ["{building}", "smoking"], "geometry": ["area"], "tags": {"building": "retail"}, "terms": ["shop building", "store building"], "matchScore": 0.5, "name": "Retail Building"}, - "building/roof": {"icon": "maki-shelter", "fields": ["{building}", "layer"], "geometry": ["area"], "tags": {"building": "roof"}, "matchScore": 0.5, "name": "Roof"}, - "building/ruins": {"icon": "temaki-ruins", "geometry": ["area"], "tags": {"building": "ruins"}, "matchScore": 0.5, "name": "Building Ruins"}, - "building/school": {"icon": "fas-school", "moreFields": ["{building}", "polling_station"], "geometry": ["area"], "terms": ["academy", "elementary school", "middle school", "high school"], "tags": {"building": "school"}, "matchScore": 0.5, "name": "School Building"}, - "building/semidetached_house": {"icon": "maki-home", "geometry": ["area"], "tags": {"building": "semidetached_house"}, "terms": ["home", "double", "duplex", "twin", "family", "residence", "dwelling"], "matchScore": 0.5, "name": "Semi-Detached House"}, - "building/service": {"icon": "maki-building", "geometry": ["area"], "tags": {"building": "service"}, "matchScore": 0.5, "name": "Service Building"}, - "building/shed": {"icon": "fas-warehouse", "fields": ["{building}", "lockable"], "geometry": ["area"], "tags": {"building": "shed"}, "matchScore": 0.5, "name": "Shed"}, - "building/stable": {"icon": "temaki-horse_shelter", "geometry": ["area"], "tags": {"building": "stable"}, "terms": ["horse shelter"], "matchScore": 0.5, "name": "Stable"}, - "building/stadium": {"icon": "maki-stadium", "fields": ["{building}", "smoking"], "geometry": ["area"], "tags": {"building": "stadium"}, "matchScore": 0.5, "name": "Stadium Building"}, - "building/static_caravan": {"icon": "temaki-manufactured_home", "geometry": ["area"], "tags": {"building": "static_caravan"}, "terms": ["house trailer", "manufactured home", "mobile home", "prefabricated home", "residential caravan", "static caravan", "trailer home"], "matchScore": 0.5, "name": "Static Mobile Home"}, - "building/sty": {"icon": "temaki-barn", "geometry": ["area"], "tags": {"building": "sty"}, "matchScore": 0.5, "terms": ["hog parlor", "hog pen", "pig ark", "pig barn", "pig parlor", "pig pen", "pig shed", "pig shelter", "pig-cote", "piggery", "pigpen", "pigshed", "sty"], "name": "Pigsty"}, - "building/temple": {"icon": "maki-place-of-worship", "geometry": ["area"], "tags": {"building": "temple"}, "matchScore": 0.5, "name": "Temple Building"}, - "building/terrace": {"icon": "temaki-row_houses", "geometry": ["area"], "tags": {"building": "terrace"}, "terms": ["home", "terrace", "brownstone", "family", "residence", "dwelling"], "matchScore": 0.5, "name": "Row Houses"}, - "building/transportation": {"icon": "maki-building", "fields": ["{building}", "smoking"], "geometry": ["area"], "tags": {"building": "transportation"}, "matchScore": 0.5, "name": "Transportation Building"}, - "building/university": {"icon": "fas-school", "moreFields": ["{building}", "polling_station"], "geometry": ["area"], "terms": ["college"], "tags": {"building": "university"}, "matchScore": 0.5, "name": "University Building"}, - "building/warehouse": {"icon": "maki-warehouse", "fields": ["{building}", "phone"], "geometry": ["area"], "tags": {"building": "warehouse"}, "matchScore": 0.5, "name": "Warehouse"}, - "club": {"icon": "fas-handshake", "fields": ["name", "club", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "phone", "website"], "moreFields": ["access_simple", "building/levels_building", "email", "fax", "gnis/feature_id", "height_building", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "max_age", "min_age", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"club": "*"}, "terms": ["social"], "name": "Club"}, - "club/sport": {"icon": "maki-pitch", "fields": ["name", "sport", "{club}"], "geometry": ["point", "area"], "tags": {"club": "sport"}, "terms": ["athletics club", "sporting club", "sports association", "sports society"], "name": "Sports Club"}, - "craft": {"icon": "temaki-tools", "fields": ["name", "craft", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "phone", "website"], "moreFields": ["air_conditioning", "building/levels_building", "ele", "email", "fax", "gnis/feature_id", "height_building", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "product", "ref/vatin", "wheelchair"], "geometry": ["point", "area"], "tags": {"craft": "*"}, "terms": [], "name": "Craft"}, - "craft/locksmith": {"icon": "maki-marker-stroked", "geometry": ["point", "area"], "tags": {"craft": "locksmith"}, "reference": {"key": "shop", "value": "locksmith"}, "name": "Locksmith", "searchable": false}, - "craft/tailor": {"icon": "temaki-needle_and_spool", "geometry": ["point", "area"], "tags": {"craft": "tailor"}, "reference": {"key": "shop", "value": "tailor"}, "name": "Tailor", "searchable": false}, - "craft/agricultural_engines": {"icon": "fas-tools", "geometry": ["point", "area"], "tags": {"craft": "agricultural_engines"}, "terms": ["combines", "farm equipment", "harvesters", "tractors"], "name": "Agricultural Engines Mechanic"}, - "craft/basket_maker": {"icon": "temaki-vase", "geometry": ["point", "area"], "tags": {"craft": "basket_maker"}, "name": "Basket Maker"}, - "craft/beekeeper": {"icon": "maki-farm", "geometry": ["point", "area"], "tags": {"craft": "beekeeper"}, "name": "Beekeeper"}, - "craft/blacksmith": {"icon": "temaki-anvil_and_hammer", "geometry": ["point", "area"], "tags": {"craft": "blacksmith"}, "name": "Blacksmith"}, - "craft/boatbuilder": {"icon": "temaki-boat_repair", "geometry": ["point", "area"], "tags": {"craft": "boatbuilder"}, "matchScore": 0.6, "name": "Boat Builder"}, - "craft/bookbinder": {"icon": "maki-library", "geometry": ["point", "area"], "terms": ["book repair"], "tags": {"craft": "bookbinder"}, "name": "Bookbinder"}, - "craft/brewery": {"icon": "temaki-storage_fermenter", "fields": ["{craft}", "product"], "moreFields": ["{craft}", "min_age"], "geometry": ["point", "area"], "terms": ["alcohol", "beer", "beverage", "bier", "booze", "cider"], "tags": {"craft": "brewery"}, "name": "Brewery"}, - "craft/carpenter": {"icon": "fas-hammer", "geometry": ["point", "area"], "terms": ["woodworker"], "tags": {"craft": "carpenter"}, "name": "Carpenter"}, - "craft/carpet_layer": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "carpet_layer"}, "name": "Carpet Layer"}, - "craft/caterer": {"icon": "temaki-catering", "fields": ["name", "cuisine", "{craft}"], "geometry": ["point", "area"], "tags": {"craft": "caterer"}, "name": "Caterer"}, - "craft/chimney_sweeper": {"icon": "temaki-chimney", "geometry": ["point", "area"], "tags": {"craft": "chimney_sweeper"}, "name": "Chimney Sweeper"}, - "craft/cleaning": {"icon": "temaki-vacuum", "geometry": ["point", "area"], "tags": {"craft": "cleaning"}, "name": "Cleaning Service"}, - "craft/clockmaker": {"icon": "temaki-clock", "geometry": ["point", "area"], "tags": {"craft": "clockmaker"}, "name": "Clockmaker"}, - "craft/confectionery": {"icon": "maki-confectionery", "geometry": ["point", "area"], "terms": ["sweet", "candy"], "tags": {"craft": "confectionery"}, "name": "Candy Maker"}, - "craft/distillery": {"icon": "temaki-storage_fermenter", "fields": ["{craft}", "product"], "moreFields": ["{craft}", "min_age"], "geometry": ["point", "area"], "terms": ["alcohol", "beverage", "bourbon", "booze", "brandy", "gin", "hooch", "liquor", "mezcal", "moonshine", "rum", "scotch", "spirits", "still", "tequila", "vodka", "whiskey", "whisky"], "tags": {"craft": "distillery"}, "name": "Distillery"}, - "craft/dressmaker": {"icon": "temaki-dress", "geometry": ["point", "area"], "terms": ["seamstress"], "tags": {"craft": "dressmaker"}, "name": "Dressmaker"}, - "craft/electrician": {"icon": "temaki-power", "geometry": ["point", "area"], "terms": ["power", "wire"], "tags": {"craft": "electrician"}, "name": "Electrician"}, - "craft/electronics_repair": {"icon": "fas-screwdriver", "geometry": ["point", "area"], "tags": {"craft": "electronics_repair"}, "name": "Electronics Repair Shop"}, - "craft/floorer": {"icon": "temaki-brick_trowel", "geometry": ["point", "area"], "tags": {"craft": "floorer"}, "name": "Floorer"}, - "craft/gardener": {"icon": "maki-garden-centre", "geometry": ["point", "area"], "terms": ["landscaper", "grounds keeper"], "tags": {"craft": "gardener"}, "name": "Gardener"}, - "craft/glaziery": {"icon": "temaki-window", "geometry": ["point", "area"], "terms": ["glass", "stained-glass", "window"], "tags": {"craft": "glaziery"}, "name": "Glaziery"}, - "craft/handicraft": {"icon": "temaki-vase", "geometry": ["point", "area"], "tags": {"craft": "handicraft"}, "name": "Handicraft Workspace"}, - "craft/hvac": {"icon": "temaki-tools", "geometry": ["point", "area"], "terms": ["heat*", "vent*", "air conditioning"], "tags": {"craft": "hvac"}, "name": "HVAC Workplace"}, - "craft/insulator": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "insulation"}, "name": "Insulator"}, - "craft/joiner": {"icon": "fas-hammer", "geometry": ["point", "area"], "tags": {"craft": "joiner"}, "terms": ["furniture"], "name": "Joiner"}, - "craft/key_cutter": {"icon": "fas-key", "geometry": ["point", "area"], "tags": {"craft": "key_cutter"}, "name": "Key Cutter"}, - "craft/metal_construction": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "metal_construction"}, "name": "Metalworker"}, - "craft/painter": {"icon": "fas-paint-roller", "geometry": ["point", "area"], "tags": {"craft": "painter"}, "name": "Painter"}, - "craft/parquet_layer": {"icon": "temaki-brick_trowel", "geometry": ["point", "area"], "tags": {"craft": "parquet_layer"}, "name": "Parquet Layer"}, - "craft/photographer": {"icon": "maki-attraction", "geometry": ["point", "area"], "tags": {"craft": "photographer"}, "name": "Photographer"}, - "craft/photographic_laboratory": {"icon": "fas-film", "geometry": ["point", "area"], "terms": ["film"], "tags": {"craft": "photographic_laboratory"}, "name": "Photographic Laboratory"}, - "craft/plasterer": {"icon": "temaki-brick_trowel", "geometry": ["point", "area"], "tags": {"craft": "plasterer"}, "name": "Plasterer"}, - "craft/plumber": {"icon": "temaki-plumber", "geometry": ["point", "area"], "terms": ["pipe"], "tags": {"craft": "plumber"}, "name": "Plumber"}, - "craft/pottery": {"icon": "temaki-vase", "geometry": ["point", "area"], "terms": ["ceramic", "kiln", "pot", "vase"], "tags": {"craft": "pottery"}, "name": "Pottery Maker"}, - "craft/rigger": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "rigger"}, "name": "Rigger"}, - "craft/roofer": {"icon": "fas-hammer", "geometry": ["point", "area"], "tags": {"craft": "roofer"}, "name": "Roofer"}, - "craft/saddler": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "saddler"}, "name": "Saddler"}, - "craft/sailmaker": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "sailmaker"}, "name": "Sailmaker"}, - "craft/sawmill": {"icon": "maki-logging", "geometry": ["point", "area"], "terms": ["lumber"], "tags": {"craft": "sawmill"}, "name": "Sawmill"}, - "craft/scaffolder": {"icon": "temaki-scaffold", "geometry": ["point", "area"], "tags": {"craft": "scaffolder"}, "name": "Scaffolder"}, - "craft/sculptor": {"icon": "maki-art-gallery", "geometry": ["point", "area"], "tags": {"craft": "sculptor"}, "name": "Sculptor"}, - "craft/shoemaker": {"icon": "maki-shoe", "geometry": ["point", "area"], "terms": ["cobbler"], "tags": {"craft": "shoemaker"}, "name": "Shoemaker"}, - "craft/signmaker": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "signmaker"}, "name": "Signmaker"}, - "craft/stonemason": {"icon": "temaki-brick_trowel", "geometry": ["point", "area"], "terms": ["masonry"], "tags": {"craft": "stonemason"}, "name": "Stonemason"}, - "craft/tiler": {"icon": "temaki-brick_trowel", "geometry": ["point", "area"], "tags": {"craft": "tiler"}, "name": "Tiler"}, - "craft/tinsmith": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "tinsmith"}, "name": "Tinsmith"}, - "craft/upholsterer": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"craft": "upholsterer"}, "name": "Upholsterer"}, - "craft/watchmaker": {"icon": "maki-watch", "geometry": ["point", "area"], "tags": {"craft": "watchmaker"}, "name": "Watchmaker"}, - "craft/window_construction": {"icon": "temaki-window", "geometry": ["point", "area"], "terms": ["glass"], "tags": {"craft": "window_construction"}, "name": "Window Construction"}, - "craft/winery": {"icon": "maki-alcohol-shop", "moreFields": ["{craft}", "min_age"], "geometry": ["point", "area"], "tags": {"craft": "winery"}, "name": "Winery"}, - "cycleway/asl": {"icon": "maki-bicycle", "fields": ["ref", "direction_vertex", "width"], "geometry": ["vertex"], "tags": {"cycleway": "asl"}, "terms": ["advanced stop box", "asl", "bicycle box", "bike box", "bikebox", "cycle box", "cycle stop marking"], "name": "Advanced Stop Line"}, - "demolished/building": {"icon": "fas-house-damage", "fields": ["name", "address"], "geometry": ["area"], "tags": {"demolished:building": "*"}, "name": "Recently Demolished Building", "searchable": false}, - "disused/amenity": {"fields": ["disused/amenity"], "geometry": ["point", "vertex", "area"], "tags": {"disused:amenity": "*"}, "matchScore": 0.05, "searchable": false, "name": "Disused Amenity"}, - "disused/railway": {"icon": "temaki-rail_profile", "fields": ["disused/railway"], "geometry": ["point", "vertex", "line", "area"], "tags": {"disused:railway": "*"}, "matchScore": 0.05, "searchable": false, "name": "Disused Railway Feature"}, - "disused/shop": {"icon": "fas-store-alt-slash", "fields": ["disused/shop"], "geometry": ["point", "area"], "tags": {"disused:shop": "*"}, "matchScore": 0.05, "searchable": false, "name": "Disused Shop"}, - "emergency/designated": {"fields": ["emergency_combo"], "geometry": ["line"], "tags": {"emergency": "designated"}, "name": "Emergency Access Designated", "searchable": false, "matchScore": 0.01}, - "emergency/destination": {"fields": ["emergency_combo"], "geometry": ["line"], "tags": {"emergency": "destination"}, "name": "Emergency Access Destination", "searchable": false, "matchScore": 0.01}, - "emergency/no": {"fields": ["emergency_combo"], "geometry": ["line"], "tags": {"emergency": "no"}, "name": "Emergency Access No", "searchable": false, "matchScore": 0.01}, - "emergency/official": {"fields": ["emergency_combo"], "geometry": ["line"], "tags": {"emergency": "official"}, "name": "Emergency Access Official", "searchable": false, "matchScore": 0.01}, - "emergency/private": {"fields": ["emergency_combo"], "geometry": ["line"], "tags": {"emergency": "private"}, "name": "Emergency Access Private", "searchable": false, "matchScore": 0.01}, - "emergency/yes": {"fields": ["emergency_combo"], "geometry": ["line"], "tags": {"emergency": "yes"}, "name": "Emergency Access Yes", "searchable": false, "matchScore": 0.01}, - "emergency/ambulance_station": {"icon": "fas-ambulance", "fields": ["name", "operator", "building_area", "address"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["EMS", "EMT", "rescue"], "tags": {"emergency": "ambulance_station"}, "name": "Ambulance Station"}, - "emergency/defibrillator": {"icon": "maki-defibrillator", "fields": ["indoor", "ref", "operator", "defibrillator/location"], "moreFields": ["level", "opening_hours", "access_simple"], "geometry": ["point", "vertex"], "terms": ["AED"], "tags": {"emergency": "defibrillator"}, "name": "Defibrillator"}, - "emergency/fire_alarm": {"icon": "fas-bell", "fields": ["indoor", "ref", "operator"], "moreFields": ["level"], "geometry": ["point", "vertex"], "tags": {"emergency": "fire_alarm_box"}, "name": "Fire Alarm Call Box"}, - "emergency/fire_extinguisher": {"icon": "fas-fire-extinguisher", "fields": ["indoor", "ref", "operator"], "moreFields": ["level"], "geometry": ["point", "vertex"], "tags": {"emergency": "fire_extinguisher"}, "name": "Fire Extinguisher"}, - "emergency/fire_hose": {"icon": "fas-tape", "fields": ["indoor", "ref", "operator"], "moreFields": ["level"], "geometry": ["point", "vertex"], "tags": {"emergency": "fire_hose"}, "name": "Fire Hose"}, - "emergency/fire_hydrant": {"icon": "temaki-fire_hydrant", "fields": ["ref", "fire_hydrant/type", "colour", "water_source", "couplings"], "moreFields": ["fire_hydrant/diameter", "fire_hydrant/pressure", "level", "survey/date", "water_volume"], "geometry": ["point", "vertex"], "terms": ["fire plug", "fire water well", "hydrant"], "tags": {"emergency": "fire_hydrant"}, "name": "Fire Hydrant"}, - "emergency/first_aid_kit": {"icon": "fas-medkit", "fields": ["indoor", "ref", "operator"], "moreFields": ["level"], "geometry": ["point", "vertex"], "terms": ["bandage", "first aid", "med", "med kit", "medic*", "medkit"], "tags": {"emergency": "first_aid_kit"}, "name": "First Aid Kit"}, - "emergency/landing_site": {"icon": "maki-heliport", "fields": ["name", "operator", "surface"], "geometry": ["point", "area"], "terms": ["helicopter", "helipad", "heliport"], "tags": {"emergency": "landing_site"}, "name": "Emergency Landing Site"}, - "emergency/life_ring": {"icon": "fas-life-ring", "fields": ["ref", "operator"], "geometry": ["point", "vertex"], "terms": ["life buoy", "kisby ring", "kisbie ring", "perry buoy"], "tags": {"emergency": "life_ring"}, "name": "Life Ring"}, - "emergency/lifeguard": {"icon": "fas-life-ring", "fields": ["ref", "operator", "building_area", "opening_hours", "opening_hours/covid19"], "geometry": ["point", "area"], "terms": ["CPR", "rescue"], "tags": {"emergency": "lifeguard"}, "name": "Lifeguard"}, - "emergency/mountain_rescue": {"icon": "temaki-mountain_rescue", "fields": ["name", "address", "operator", "building_area", "email", "website"], "moreFields": ["fax", "gnis/feature_id", "phone", "wheelchair"], "geometry": ["point", "area"], "terms": ["EMS", "EMT", "rescue"], "tags": {"emergency": "mountain_rescue"}, "name": "Mountain Rescue"}, - "emergency/phone": {"icon": "maki-emergency-phone", "fields": ["ref", "operator", "covered", "indoor", "booth"], "moreFields": ["level"], "geometry": ["point", "vertex"], "tags": {"emergency": "phone"}, "name": "Emergency Phone"}, - "emergency/siren": {"icon": "fas-volume-up", "fields": ["siren/purpose", "siren/type", "ref", "operator"], "geometry": ["point", "vertex"], "terms": ["air raid", "loud", "noise", "storm", "tornado", "warning"], "tags": {"emergency": "siren"}, "name": "Siren"}, - "emergency/water_tank": {"icon": "maki-water", "fields": ["name", "ref", "operator", "water_tank/volume", "drinking_water"], "moreFields": ["height", "material"], "geometry": ["point", "vertex", "area"], "terms": ["water tank", "cistern", "reservoir"], "tags": {"emergency": "water_tank"}, "name": "Emergency Water Tank"}, - "entrance": {"icon": "maki-entrance-alt1", "fields": ["ref", "entrance", "door", "access_simple", "wheelchair", "level", "address"], "geometry": ["vertex"], "tags": {"entrance": "*"}, "terms": ["entrance", "exit", "door"], "matchScore": 0.8, "name": "Entrance / Exit"}, - "entrance/emergency_ward_entrance": {"icon": "maki-hospital", "fields": ["ref", "emergency_ward_entrance", "address", "level", "opening_hours"], "geometry": ["vertex"], "tags": {"emergency": "emergency_ward_entrance"}, "addTags": {"emergency": "emergency_ward_entrance", "entrance": "yes"}, "terms": ["accident & emergency department", "casualty department", "ed", "emergency department", "emergency room", "emergency ward", "er", "ew"], "name": "Emergency Room Entrance"}, - "entrance/emergency": {"icon": "maki-entrance-alt1", "fields": ["ref", "door", "access_simple", "level"], "geometry": ["vertex"], "tags": {"entrance": "emergency"}, "terms": ["fire exit", "door"], "matchScore": 0.8, "name": "Emergency Exit"}, - "ford": {"icon": "temaki-pedestrian", "fields": ["name", "depth", "access", "seasonal"], "moreFields": ["gnis/feature_id"], "geometry": ["vertex"], "tags": {"ford": "yes"}, "name": "Ford"}, - "golf/bunker": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "bunker"}, "addTags": {"golf": "bunker", "natural": "sand"}, "terms": ["hazard", "bunker"], "name": "Sand Trap"}, - "golf/cartpath": {"icon": "temaki-golf_cart", "fields": ["{golf/path}", "maxspeed"], "geometry": ["line"], "tags": {"golf": "cartpath"}, "addTags": {"golf": "cartpath", "golf_cart": "designated", "highway": "service"}, "name": "Golf Cartpath"}, - "golf/clubhouse": {"icon": "maki-golf", "fields": ["name", "operator", "address", "building_area", "access_simple"], "moreFields": ["air_conditioning", "fee", "payment_multi_fee", "charge_fee", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "opening_hours", "opening_hours/covid19", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["club house", "golf clubhouse", "golf house", "pro shop"], "tags": {"golf": "clubhouse"}, "name": "Golf Clubhouse"}, - "golf/driving_range": {"icon": "maki-golf", "fields": ["name", "capacity"], "geometry": ["area"], "tags": {"golf": "driving_range"}, "addTags": {"golf": "driving_range", "landuse": "grass"}, "name": "Driving Range"}, - "golf/fairway": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "fairway"}, "addTags": {"golf": "fairway", "landuse": "grass"}, "name": "Fairway"}, - "golf/green": {"icon": "temaki-golf_green", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "green"}, "addTags": {"golf": "green", "landuse": "grass"}, "name": "Putting Green"}, - "golf/hole": {"icon": "temaki-golf_green", "fields": ["name", "ref_golf_hole", "par", "handicap"], "geometry": ["line"], "tags": {"golf": "hole"}, "name": "Golf Hole"}, - "golf/lateral_water_hazard": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "lateral_water_hazard"}, "addTags": {"golf": "lateral_water_hazard", "natural": "water"}, "name": "Lateral Water Hazard"}, - "golf/path": {"icon": "maki-golf", "fields": ["name", "surface", "width", "structure", "incline"], "geometry": ["line"], "tags": {"golf": "path"}, "addTags": {"golf": "path", "highway": "path", "foot": "designated"}, "name": "Golf Walking Path"}, - "golf/rough": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "rough"}, "addTags": {"golf": "rough", "landuse": "grass"}, "name": "Rough"}, - "golf/tee": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "tee"}, "addTags": {"golf": "tee", "landuse": "grass"}, "terms": ["teeing ground"], "name": "Tee Box"}, - "golf/water_hazard": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "water_hazard"}, "addTags": {"golf": "water_hazard", "natural": "water"}, "name": "Water Hazard"}, - "healthcare": {"icon": "maki-hospital", "fields": ["name", "healthcare", "operator", "healthcare/speciality", "address", "building_area", "phone", "website"], "moreFields": ["brand", "building/levels_building", "email", "fax", "gnis/feature_id", "height_building", "level", "opening_hours", "opening_hours/covid19", "payment_multi", "wheelchair"], "geometry": ["point", "area"], "tags": {"healthcare": "*"}, "terms": ["clinic", "doctor", "disease", "health", "institution", "sick", "surgery", "wellness"], "name": "Healthcare Facility"}, - "healthcare/alternative": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["acupuncture", "anthroposophical", "applied kinesiology", "aromatherapy", "ayurveda", "herbalism", "homeopathy", "hydrotherapy", "hypnosis", "naturopathy", "osteopathy", "reflexology", "reiki", "shiatsu", "traditional", "tuina", "unani"], "tags": {"healthcare": "alternative"}, "name": "Alternative Medicine"}, - "healthcare/alternative/chiropractic": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["back", "pain", "spine"], "tags": {"healthcare": "alternative", "healthcare:speciality": "chiropractic"}, "name": "Chiropractor"}, - "healthcare/audiologist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["ear", "hearing", "sound"], "tags": {"healthcare": "audiologist"}, "name": "Audiologist"}, - "healthcare/birthing_center": {"icon": "fas-baby", "geometry": ["point", "area"], "terms": ["baby", "childbirth", "delivery", "labour", "labor", "pregnancy"], "tags": {"healthcare": "birthing_center"}, "name": "Birthing Center"}, - "healthcare/blood_donation": {"icon": "maki-blood-bank", "fields": ["{healthcare}", "blood_components"], "geometry": ["point", "area"], "terms": ["blood bank", "blood donation", "blood transfusion", "apheresis", "plasmapheresis", "plateletpheresis", "stem cell donation"], "tags": {"healthcare": "blood_donation"}, "name": "Blood Donor Center"}, - "healthcare/counselling": {"icon": "fas-comments", "geometry": ["point", "area"], "tags": {"healthcare": "counselling"}, "name": "Counselling Center"}, - "healthcare/dentist/orthodontics": {"icon": "fas-teeth", "fields": ["{amenity/dentist}"], "moreFields": ["{amenity/dentist}"], "geometry": ["point", "area"], "terms": ["braces", "dentistry", "dentofacial orthopedics", "headgear", "jaw alignment", "teeth", "tooth"], "tags": {"healthcare": "dentist", "healthcare:speciality": "orthodontics"}, "addTags": {"healthcare": "dentist", "amenity": "dentist", "healthcare:speciality": "orthodontics"}, "reference": {"key": "healthcare:speciality", "value": "orthodontics"}, "name": "Orthodontist"}, - "healthcare/hospice": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["terminal", "illness"], "tags": {"healthcare": "hospice"}, "name": "Hospice"}, - "healthcare/laboratory": {"icon": "fas-vial", "fields": ["name", "operator", "website", "ref", "address", "opening_hours", "opening_hours/covid19"], "geometry": ["point", "area"], "terms": ["medical_laboratory", "medical_lab", "blood_check"], "tags": {"healthcare": "laboratory"}, "name": "Medical Laboratory"}, - "healthcare/midwife": {"icon": "fas-baby", "geometry": ["point", "area"], "terms": ["baby", "childbirth", "delivery", "labour", "labor", "pregnancy"], "tags": {"healthcare": "midwife"}, "name": "Midwife"}, - "healthcare/occupational_therapist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["therapist", "therapy"], "tags": {"healthcare": "occupational_therapist"}, "name": "Occupational Therapist"}, - "healthcare/optometrist": {"icon": "fas-eye", "geometry": ["point", "area"], "terms": ["eye", "glasses", "lasik", "lenses", "vision"], "tags": {"healthcare": "optometrist"}, "name": "Optometrist"}, - "healthcare/physiotherapist": {"icon": "temaki-physiotherapist", "geometry": ["point", "area"], "terms": ["physical", "therapist", "therapy"], "tags": {"healthcare": "physiotherapist"}, "name": "Physiotherapist"}, - "healthcare/podiatrist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["foot", "feet", "nails"], "tags": {"healthcare": "podiatrist"}, "name": "Podiatrist"}, - "healthcare/psychotherapist": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["anxiety", "counselor", "depression", "mental health", "mind", "suicide", "therapist", "therapy"], "tags": {"healthcare": "psychotherapist"}, "name": "Psychotherapist"}, - "healthcare/rehabilitation": {"icon": "maki-hospital", "geometry": ["point", "area"], "terms": ["rehab", "therapist", "therapy"], "tags": {"healthcare": "rehabilitation"}, "name": "Rehabilitation Facility"}, - "healthcare/speech_therapist": {"icon": "fas-comment", "geometry": ["point", "area"], "terms": ["speech", "therapist", "therapy", "voice"], "tags": {"healthcare": "speech_therapist"}, "name": "Speech Therapist"}, - "highway/bus_stop": {"icon": "temaki-bus", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point", "vertex"], "tags": {"highway": "bus_stop"}, "matchScore": 0.95, "name": "Bus Stop", "searchable": false, "replacement": "public_transport/platform/bus_point"}, - "highway/crossing": {"fields": ["crossing"], "geometry": ["vertex"], "tags": {"highway": "crossing"}, "searchable": false, "matchScore": 0.95, "name": "Crossing"}, - "highway/bridleway": {"fields": ["name", "surface", "width", "structure", "access", "incline", "horse_scale"], "moreFields": ["covered", "dog", "lit", "maxweight_bridge", "smoothness", "stroller", "wheelchair"], "icon": "maki-horse-riding", "geometry": ["line"], "tags": {"highway": "bridleway"}, "terms": ["bridleway", "equestrian", "horse", "trail"], "name": "Bridle Path"}, - "highway/bus_guideway": {"icon": "temaki-bus_guided", "fields": ["name", "operator", "oneway", "structure", "covered"], "moreFields": ["trolley_wire", "width"], "geometry": ["line"], "tags": {"highway": "bus_guideway"}, "addTags": {"highway": "bus_guideway", "access": "no", "bus": "designated"}, "terms": [], "name": "Bus Guideway"}, - "highway/construction": {"icon": "maki-barrier", "fields": ["name", "construction", "opening_date", "check_date", "note", "oneway", "structure", "access"], "geometry": ["line"], "tags": {"highway": "construction", "access": "no"}, "terms": ["closure", "construction", "road closed", "road work", "roadwork"], "name": "Closed Road"}, - "highway/corridor": {"icon": "temaki-pedestrian_walled", "fields": ["name", "width", "level", "access_simple", "wheelchair"], "moreFields": ["covered", "indoor", "maxheight", "stroller"], "geometry": ["line"], "tags": {"highway": "corridor"}, "addTags": {"highway": "corridor", "indoor": "yes"}, "terms": ["gallery", "hall", "hallway", "indoor", "passage", "passageway"], "name": "Indoor Corridor"}, - "highway/crossing/zebra-raised": {"icon": "temaki-pedestrian_crosswalk", "fields": ["crossing", "tactile_paving", "crossing/island"], "geometry": ["vertex"], "tags": {"highway": "crossing", "crossing": "zebra", "traffic_calming": "table"}, "reference": {"key": "traffic_calming", "value": "table"}, "name": "Marked Crosswalk (Raised)", "searchable": false}, - "highway/crossing/zebra": {"icon": "temaki-pedestrian_crosswalk", "fields": ["crossing", "tactile_paving", "crossing/island"], "geometry": ["vertex"], "tags": {"highway": "crossing", "crossing": "zebra"}, "reference": {"key": "highway", "value": "crossing"}, "name": "Marked Crosswalk", "searchable": false}, - "highway/crossing/marked-raised": {"icon": "temaki-pedestrian_crosswalk", "fields": ["crossing", "tactile_paving", "crossing/island"], "geometry": ["vertex"], "tags": {"highway": "crossing", "crossing": "marked", "traffic_calming": "table"}, "addTags": {"highway": "crossing", "crossing": "marked", "traffic_calming": "table"}, "reference": {"key": "traffic_calming", "value": "table"}, "terms": ["zebra crossing", "marked crossing", "crosswalk", "flat top", "hump", "speed", "slow"], "name": "Marked Crosswalk (Raised)"}, - "highway/crossing/marked": {"icon": "temaki-pedestrian_crosswalk", "fields": ["crossing", "tactile_paving", "crossing/island"], "geometry": ["vertex"], "tags": {"highway": "crossing", "crossing": "marked"}, "addTags": {"highway": "crossing", "crossing": "marked"}, "reference": {"key": "highway", "value": "crossing"}, "terms": ["zebra crossing", "marked crossing", "crosswalk"], "name": "Marked Crosswalk"}, - "highway/crossing/unmarked-raised": {"icon": "temaki-pedestrian", "fields": ["crossing", "tactile_paving", "crossing/island"], "geometry": ["vertex"], "tags": {"highway": "crossing", "crossing": "unmarked", "traffic_calming": "table"}, "reference": {"key": "traffic_calming", "value": "table"}, "terms": ["flat top", "hump", "speed", "slow"], "name": "Unmarked Crossing (Raised)"}, - "highway/crossing/unmarked": {"icon": "temaki-pedestrian", "fields": ["crossing", "tactile_paving", "crossing/island"], "geometry": ["vertex"], "tags": {"highway": "crossing", "crossing": "unmarked"}, "addTags": {"highway": "crossing", "crossing": "unmarked"}, "reference": {"key": "crossing", "value": "unmarked"}, "terms": [], "name": "Unmarked Crossing"}, - "highway/cycleway": {"icon": "fas-biking", "fields": ["name", "oneway", "surface", "width", "structure", "access", "incline"], "moreFields": ["covered", "dog", "lit", "maxspeed", "maxweight_bridge", "not/name", "smoothness", "stroller", "wheelchair"], "geometry": ["line"], "tags": {"highway": "cycleway"}, "terms": ["bicyle path", "bike path", "cycling path"], "name": "Cycle Path"}, - "highway/cycleway/crossing": {"icon": "temaki-cyclist_crosswalk", "fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"cycleway": "crossing"}, "addTags": {"highway": "cycleway", "cycleway": "crossing"}, "reference": {"key": "cycleway", "value": "crossing"}, "searchable": false, "matchScore": 0.95, "name": "Cycle Crossing"}, - "highway/cycleway/bicycle_foot": {"notCountryCodes": ["fr", "lt", "pl", "de"], "icon": "temaki-pedestrian_and_cyclist", "fields": ["name", "segregated", "oneway", "surface", "width", "structure", "access", "incline"], "geometry": ["line"], "tags": {"highway": "cycleway", "foot": "designated"}, "addTags": {"highway": "cycleway", "foot": "designated", "bicycle": "designated"}, "terms": ["bicycle and foot path", "bike and pedestrian path", "green way", "greenway", "mixed-use trail", "multi-use trail", "segregated trail", "shared path", "shared use path", "rail trail"], "matchScore": 0.9, "name": "Cycle & Foot Path"}, - "highway/cycleway/crossing/bicycle_foot": {"notCountryCodes": ["fr", "lt", "pl"], "icon": "temaki-ped_cyclist_crosswalk", "fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"highway": "cycleway", "cycleway": "crossing", "foot": "designated"}, "addTags": {"highway": "cycleway", "cycleway": "crossing", "foot": "designated", "bicycle": "designated"}, "reference": {"key": "cycleway", "value": "crossing"}, "terms": ["bicycle and foot crosswalk", "bike and pedestrian crossing", "cycleway", "cycling", "cyclist"], "matchScore": 0.9, "name": "Cycle & Foot Crossing"}, - "highway/cycleway/crossing/marked": {"icon": "temaki-cyclist_crosswalk", "fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"highway": "cycleway", "cycleway": "crossing", "crossing": "marked"}, "reference": {"key": "cycleway", "value": "crossing"}, "terms": ["cycle crosswalk", "cycle path crossing", "cycleway crossing", "bicycle crossing", "bike crossing"], "matchScore": 0.95, "name": "Marked Cycle Crossing"}, - "highway/cycleway/crossing/unmarked": {"icon": "fas-biking", "fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"highway": "cycleway", "cycleway": "crossing", "crossing": "unmarked"}, "reference": {"key": "cycleway", "value": "crossing"}, "terms": ["cycle path crossing", "cycleway crossing", "bicycle crossing", "bike crossing"], "matchScore": 0.95, "name": "Unmarked Cycle Crossing"}, - "highway/elevator": {"icon": "temaki-elevator", "fields": ["ref", "level_semi", "access_simple", "wheelchair", "maxweight"], "moreFields": ["maxheight", "opening_hours", "opening_hours/covid19"], "geometry": ["vertex"], "tags": {"highway": "elevator"}, "terms": ["lift"], "name": "Elevator"}, - "highway/emergency_bay": {"icon": "maki-car", "geometry": ["vertex"], "tags": {"highway": "emergency_bay"}, "terms": ["Highway Emergency Bay"], "name": "Emergency Stopping Place"}, - "highway/footway": {"icon": "temaki-pedestrian", "fields": ["name", "surface", "width", "structure", "access", "incline"], "moreFields": ["covered", "dog", "lit", "maxweight_bridge", "not/name", "smoothness", "stroller", "tactile_paving", "wheelchair"], "geometry": ["line"], "terms": ["hike", "hiking", "promenade", "trackway", "trail", "walk"], "tags": {"highway": "footway"}, "name": "Foot Path"}, - "highway/footway/crossing": {"fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"footway": "crossing"}, "addTags": {"highway": "footway", "footway": "crossing"}, "reference": {"key": "footway", "value": "crossing"}, "searchable": false, "name": "Pedestrian Crossing"}, - "highway/footway/zebra-raised": {"icon": "temaki-pedestrian_crosswalk", "fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"highway": "footway", "footway": "crossing", "crossing": "zebra", "traffic_calming": "table"}, "reference": {"key": "traffic_calming", "value": "table"}, "name": "Marked Crosswalk (Raised)", "searchable": false}, - "highway/footway/zebra": {"icon": "temaki-pedestrian_crosswalk", "fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"highway": "footway", "footway": "crossing", "crossing": "zebra"}, "reference": {"key": "footway", "value": "crossing"}, "name": "Marked Crosswalk", "searchable": false}, - "highway/footway/access_aisle": {"icon": "temaki-striped_zone", "fields": ["access_aisle", "width", "surface", "tactile_paving", "access", "wheelchair"], "moreFields": ["covered", "dog", "incline", "lit", "maxweight_bridge", "name", "ref", "smoothness", "stroller", "structure"], "geometry": ["line"], "terms": ["accessible van loading zone", "disabled parking access zone", "handicap parking access zone", "parking lot aisle", "striped zone", "tow zone", "tow-away zone", "towaway zone", "wheelchair aisle"], "tags": {"highway": "footway", "footway": "access_aisle"}, "reference": {"key": "footway", "value": "access_aisle"}, "name": "Access Aisle"}, - "highway/footway/conveying": {"icon": "temaki-pedestrian", "fields": ["name", "conveying", "access_simple", "lit", "width", "wheelchair"], "geometry": ["line"], "terms": ["moving sidewalk", "autwalk", "skywalk", "travolator", "travelator", "travellator", "conveyor"], "tags": {"highway": "footway", "conveying": "*"}, "name": "Moving Walkway"}, - "highway/footway/marked-raised": {"icon": "temaki-pedestrian_crosswalk", "fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"footway": "crossing", "crossing": "marked", "traffic_calming": "table"}, "addTags": {"highway": "footway", "footway": "crossing", "crossing": "marked", "traffic_calming": "table"}, "reference": {"key": "traffic_calming", "value": "table"}, "terms": ["zebra crossing", "marked crossing", "crosswalk", "flat top", "hump", "speed", "slow"], "name": "Marked Crosswalk (Raised)"}, - "highway/footway/marked": {"icon": "temaki-pedestrian_crosswalk", "fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"footway": "crossing", "crossing": "marked"}, "addTags": {"highway": "footway", "footway": "crossing", "crossing": "marked"}, "reference": {"key": "footway", "value": "crossing"}, "terms": ["marked foot path crossing", "marked crossing", "marked pedestrian crosswalk", "zebra crossing"], "name": "Marked Crosswalk"}, - "highway/footway/sidewalk": {"icon": "temaki-pedestrian", "geometry": ["line"], "tags": {"footway": "sidewalk"}, "addTags": {"highway": "footway", "footway": "sidewalk"}, "reference": {"key": "footway", "value": "sidewalk"}, "terms": ["pavement", "sidepath"], "name": "Sidewalk"}, - "highway/footway/unmarked-raised": {"icon": "temaki-pedestrian", "fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"footway": "crossing", "crossing": "unmarked", "traffic_calming": "table"}, "addTags": {"highway": "footway", "footway": "crossing", "crossing": "unmarked", "traffic_calming": "table"}, "reference": {"key": "traffic_calming", "value": "table"}, "terms": ["flat top", "hump", "speed", "slow"], "name": "Unmarked Crossing (Raised)"}, - "highway/footway/unmarked": {"icon": "temaki-pedestrian", "fields": ["crossing", "access", "surface", "tactile_paving", "crossing/island"], "geometry": ["line"], "tags": {"footway": "crossing", "crossing": "unmarked"}, "addTags": {"highway": "footway", "footway": "crossing", "crossing": "unmarked"}, "reference": {"key": "footway", "value": "crossing"}, "terms": ["unmarked foot path crossing", "unmarked crosswalk", "unmarked pedestrian crossing"], "name": "Unmarked Crossing"}, - "highway/give_way": {"icon": "temaki-yield", "fields": ["direction_vertex_dual"], "geometry": ["vertex"], "tags": {"highway": "give_way"}, "terms": ["give way", "yield", "sign"], "name": "Yield Sign"}, - "highway/living_street": {"icon": "iD-highway-living-street", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "access"], "moreFields": ["covered", "cycleway", "flood_prone", "junction_line", "lit", "maxheight", "maxweight_bridge", "oneway/bicycle", "smoothness", "trolley_wire", "width"], "geometry": ["line"], "tags": {"highway": "living_street"}, "name": "Living Street"}, - "highway/milestone": {"icon": "temaki-milestone", "geometry": ["point", "vertex"], "fields": ["distance", "direction_vertex"], "tags": {"highway": "milestone"}, "terms": ["mile marker", "mile post", "mile stone", "mileage marker", "milemarker", "milepost"], "name": "Highway Milestone"}, - "highway/mini_roundabout": {"icon": "maki-circle-stroked", "geometry": ["vertex"], "terms": ["traffic circle"], "tags": {"highway": "mini_roundabout"}, "fields": ["direction_clock"], "name": "Mini-Roundabout"}, - "highway/motorway_junction": {"icon": "temaki-junction", "fields": ["ref_highway_junction", "name"], "geometry": ["vertex"], "tags": {"highway": "motorway_junction"}, "terms": ["exit"], "name": "Motorway Junction / Exit"}, - "highway/motorway_link": {"icon": "iD-highway-motorway-link", "fields": ["destination_oneway", "destination/ref_oneway", "junction/ref_oneway", "oneway", "maxspeed", "lanes", "surface", "structure", "access"], "moreFields": ["charge_toll", "covered", "destination/symbol_oneway", "incline", "junction_line", "lit", "maxheight", "maxspeed/advisory", "maxweight_bridge", "name", "ref_road_number", "smoothness", "toll", "width"], "geometry": ["line"], "tags": {"highway": "motorway_link"}, "terms": ["exit", "ramp", "road", "street", "on ramp", "off ramp"], "name": "Motorway Link"}, - "highway/motorway": {"icon": "iD-highway-motorway", "fields": ["name", "ref_road_number", "oneway_yes", "maxspeed", "lanes", "surface", "structure", "access"], "moreFields": ["charge_toll", "covered", "incline", "junction_line", "lit", "maxheight", "maxweight_bridge", "minspeed", "not/name", "smoothness", "toll", "width"], "geometry": ["line"], "tags": {"highway": "motorway"}, "terms": ["autobahn", "expressway", "freeway", "highway", "interstate", "parkway", "road", "street", "thruway", "turnpike"], "name": "Motorway"}, - "highway/passing_place": {"icon": "maki-circle-stroked", "geometry": ["vertex"], "tags": {"highway": "passing_place"}, "terms": ["turnout, pullout"], "name": "Passing Place"}, - "highway/path": {"icon": "iD-other-line", "fields": ["name", "surface", "width", "structure", "access", "incline"], "moreFields": ["covered", "dog", "gnis/feature_id", "horse_scale", "informal", "lit", "maxweight_bridge", "mtb/scale", "mtb/scale/imba", "mtb/scale/uphill", "not/name", "ref", "sac_scale", "smoothness", "stroller", "trail_visibility", "wheelchair"], "geometry": ["line"], "terms": ["hike", "hiking", "trackway", "trail", "walk"], "tags": {"highway": "path"}, "name": "Path"}, - "highway/path/boardwalk": {"icon": "temaki-pedestrian", "geometry": ["line"], "tags": {"highway": "path", "bridge": "boardwalk"}, "addTags": {"highway": "path", "bridge": "boardwalk", "surface": "wood"}, "reference": {"key": "bridge", "value": "boardwalk"}, "terms": ["pier", "plank walkway", "wooden raised foot path"], "name": "Boardwalk"}, - "highway/path/informal": {"icon": "iD-other-line", "fields": ["surface", "width", "access", "trail_visibility", "smoothness", "incline"], "moreFields": ["covered", "dog", "horse_scale", "informal", "lit", "maxweight_bridge", "mtb/scale", "mtb/scale/imba", "mtb/scale/uphill", "sac_scale", "stroller", "structure", "wheelchair"], "geometry": ["line"], "terms": ["bootleg trail", "cow path", "desire line", "desire path", "desireline", "desirepath", "elephant path", "game trail", "goat track", "herd path", "pig trail", "shortcut", "social trail", "use trail"], "tags": {"highway": "path", "informal": "yes"}, "reference": {"key": "informal"}, "name": "Informal Path"}, - "highway/pedestrian_area": {"icon": "temaki-pedestrian", "fields": ["name", "surface", "lit", "width", "structure", "access"], "geometry": ["area"], "tags": {"highway": "pedestrian"}, "terms": ["center", "centre", "plaza", "quad", "square", "walkway"], "name": "Pedestrian Area"}, - "highway/pedestrian_line": {"icon": "temaki-pedestrian", "fields": ["name", "surface", "lit", "width", "oneway", "structure", "access"], "moreFields": ["covered", "incline", "maxweight_bridge", "smoothness"], "geometry": ["line"], "tags": {"highway": "pedestrian"}, "terms": ["center", "centre", "plaza", "quad", "square", "walkway"], "name": "Pedestrian Street"}, - "highway/primary_link": {"icon": "iD-highway-primary-link", "fields": ["destination_oneway", "destination/ref_oneway", "oneway", "maxspeed", "lanes", "surface", "structure", "access"], "moreFields": ["charge_toll", "covered", "cycleway", "destination/symbol_oneway", "flood_prone", "incline", "junction_line", "junction/ref_oneway", "lit", "maxheight", "maxspeed/advisory", "maxweight_bridge", "name", "oneway/bicycle", "ref_road_number", "smoothness", "toll", "trolley_wire", "width"], "geometry": ["line"], "tags": {"highway": "primary_link"}, "terms": ["on ramp", "off ramp", "ramp", "road", "street"], "name": "Primary Link"}, - "highway/primary": {"icon": "iD-highway-primary", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "ref_road_number", "access"], "moreFields": ["charge_toll", "covered", "cycleway", "flood_prone", "incline", "junction_line", "lit", "maxheight", "maxspeed/advisory", "maxweight_bridge", "not/name", "oneway/bicycle", "smoothness", "toll", "trolley_wire", "width"], "geometry": ["line"], "tags": {"highway": "primary"}, "terms": ["road", "street"], "name": "Primary Road"}, - "highway/raceway": {"icon": "temaki-speedway_oval", "fields": ["name", "oneway", "surface", "sport_racing_motor", "lit", "width", "lanes", "structure"], "geometry": ["line", "area"], "tags": {"highway": "raceway"}, "addTags": {"highway": "raceway", "sport": "motor"}, "terms": ["auto*", "formula one", "kart", "motocross", "nascar", "race*", "track"], "name": "Motorsport Racetrack"}, - "highway/raceway/karting": {"icon": "temaki-speedway_8", "geometry": ["line", "area"], "tags": {"highway": "raceway", "sport": "karting"}, "reference": {"key": "sport", "value": "karting"}, "terms": ["carting", "go carts", "go karts", "go-karts", "gokarts", "kart racing", "karting track", "motorsports", "shifter karts", "superkarts"], "name": "Karting Racetrack"}, - "highway/raceway/motocross": {"icon": "fas-motorcycle", "geometry": ["line", "area"], "tags": {"highway": "raceway", "sport": "motocross"}, "reference": {"key": "sport", "value": "motocross"}, "terms": ["off-road racing", "offroad moto racing", "motocross circuit", "motorcycle track", "motorsports"], "name": "Motocross Racetrack"}, - "highway/residential": {"icon": "iD-highway-residential", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "access"], "moreFields": ["covered", "cycleway", "flood_prone", "incline", "junction_line", "lit", "maxheight", "maxspeed/advisory", "maxweight_bridge", "not/name", "oneway/bicycle", "smoothness", "trolley_wire", "width"], "geometry": ["line"], "tags": {"highway": "residential"}, "terms": ["road", "street"], "name": "Residential Road"}, - "highway/rest_area": {"icon": "maki-car", "fields": ["name", "operator", "opening_hours", "opening_hours/covid19"], "moreFields": ["address", "email", "fax", "phone", "website", "wheelchair"], "geometry": ["point", "vertex", "area"], "tags": {"highway": "rest_area"}, "terms": ["rest stop"], "name": "Rest Area"}, - "highway/road": {"icon": "iD-other-line", "fields": ["highway", "{highway/residential}"], "moreFields": ["{highway/residential}"], "geometry": ["line"], "tags": {"highway": "road"}, "terms": ["road", "street"], "name": "Unknown Road"}, - "highway/road/bridge": {"icon": "iD-other-line", "fields": ["highway", "{highway/residential}"], "moreFields": ["{highway/residential}"], "geometry": ["line"], "tags": {"highway": "road", "bridge": "*"}, "addTags": {"highway": "road", "bridge": "yes", "layer": "1"}, "name": "Unknown Road Bridge", "matchScore": 0.25}, - "highway/secondary_link": {"icon": "iD-highway-secondary-link", "fields": ["{highway/primary_link}"], "moreFields": ["{highway/primary_link}"], "geometry": ["line"], "tags": {"highway": "secondary_link"}, "terms": ["on ramp", "off ramp", "ramp", "road", "street"], "name": "Secondary Link"}, - "highway/secondary": {"icon": "iD-highway-secondary", "fields": ["{highway/primary}"], "moreFields": ["{highway/primary}"], "geometry": ["line"], "tags": {"highway": "secondary"}, "terms": ["road", "street"], "name": "Secondary Road"}, - "highway/service": {"icon": "iD-highway-service", "fields": ["name", "service", "oneway", "maxspeed", "surface", "covered", "structure", "access"], "moreFields": ["flood_prone", "incline", "lanes", "lit", "maxheight", "maxspeed/advisory", "maxweight_bridge", "oneway/bicycle", "smoothness", "trolley_wire", "width"], "geometry": ["line"], "tags": {"highway": "service"}, "terms": ["road", "street"], "matchScore": 0.9, "name": "Service Road"}, - "highway/service/alley": {"icon": "iD-highway-service", "geometry": ["line"], "tags": {"highway": "service", "service": "alley"}, "reference": {"key": "service", "value": "alley"}, "name": "Alley"}, - "highway/service/drive-through": {"icon": "iD-highway-service", "geometry": ["line"], "tags": {"highway": "service", "service": "drive-through"}, "reference": {"key": "service", "value": "drive-through"}, "name": "Drive-Through"}, - "highway/service/driveway": {"icon": "iD-highway-service", "geometry": ["line"], "tags": {"highway": "service", "service": "driveway"}, "reference": {"key": "service", "value": "driveway"}, "name": "Driveway"}, - "highway/service/emergency_access": {"icon": "iD-highway-service", "geometry": ["line"], "tags": {"highway": "service", "service": "emergency_access"}, "reference": {"key": "service", "value": "emergency_access"}, "name": "Emergency Access"}, - "highway/service/parking_aisle": {"icon": "iD-highway-service", "geometry": ["line"], "tags": {"highway": "service", "service": "parking_aisle"}, "reference": {"key": "service", "value": "parking_aisle"}, "name": "Parking Aisle"}, - "highway/services": {"icon": "maki-car", "fields": ["{highway/rest_area}"], "moreFields": ["{highway/rest_area}"], "geometry": ["point", "vertex", "area"], "tags": {"highway": "services"}, "terms": ["services", "travel plaza", "service station"], "name": "Service Area"}, - "highway/speed_camera": {"icon": "temaki-security_camera", "geometry": ["point", "vertex"], "fields": ["direction", "ref", "maxspeed"], "tags": {"highway": "speed_camera"}, "terms": [], "name": "Speed Camera"}, - "highway/steps": {"icon": "iD-highway-steps", "fields": ["incline_steps", "access_simple", "handrail", "step_count", "tactile_paving", "surface", "width"], "moreFields": ["covered", "dog", "indoor", "level_semi", "lit", "name", "ref", "ramp", "stroller", "wheelchair"], "geometry": ["line"], "tags": {"highway": "steps"}, "terms": ["stairs", "staircase", "stairway"], "name": "Steps"}, - "highway/steps/conveying": {"icon": "maki-entrance", "fields": ["incline_steps", "conveying", "access_simple", "indoor", "level_semi", "width"], "moreFields": ["{highway/steps}", "handrail", "step_count", "surface"], "geometry": ["line"], "terms": ["moving staircase", "moving stairway", "people mover"], "tags": {"highway": "steps", "conveying": "*"}, "name": "Escalator"}, - "highway/stop": {"icon": "temaki-stop", "fields": ["stop", "direction_vertex"], "geometry": ["vertex"], "tags": {"highway": "stop"}, "terms": ["stop", "halt", "sign"], "name": "Stop Sign"}, - "highway/street_lamp": {"icon": "temaki-street_lamp_arm", "geometry": ["point", "vertex"], "tags": {"highway": "street_lamp"}, "fields": ["lamp_type", "lamp_mount", "direction", "height", "ref"], "terms": ["streetlight", "street light", "lamp", "light", "gaslight"], "name": "Street Lamp"}, - "highway/tertiary_link": {"icon": "iD-highway-tertiary-link", "fields": ["{highway/primary_link}"], "moreFields": ["{highway/primary_link}"], "geometry": ["line"], "tags": {"highway": "tertiary_link"}, "terms": ["on ramp", "off ramp", "ramp", "road", "street"], "name": "Tertiary Link"}, - "highway/tertiary": {"icon": "iD-highway-tertiary", "fields": ["{highway/primary}"], "moreFields": ["{highway/primary}"], "geometry": ["line"], "tags": {"highway": "tertiary"}, "terms": ["road", "street"], "name": "Tertiary Road"}, - "highway/toll_gantry": {"notCountryCodes": ["de"], "icon": "temaki-toll_gantry", "fields": ["ref", "operator", "access", "maxheight", "opening_hours", "opening_hours/covid19", "payment_multi"], "moreFields": ["website"], "geometry": ["vertex"], "tags": {"highway": "toll_gantry"}, "terms": ["license plate camera toll", "cashless toll", "electronic toll", "free-flow toll", "toll gantry", "transponder toll"], "name": "Open Road Toll"}, - "highway/track": {"icon": "fas-truck-monster", "fields": ["name", "tracktype", "surface", "width", "structure", "access", "incline", "smoothness"], "moreFields": ["covered", "flood_prone", "horse_scale", "maxweight_bridge", "mtb/scale", "mtb/scale/imba", "mtb/scale/uphill", "stroller", "wheelchair"], "geometry": ["line"], "tags": {"highway": "track"}, "terms": ["woods road", "forest road", "logging road", "fire road", "farm road", "agricultural road", "ranch road", "carriage road", "primitive", "unmaintained", "rut", "offroad", "4wd", "4x4", "four wheel drive", "atv", "quad", "jeep", "double track", "two track"], "name": "Unmaintained Track Road"}, - "highway/traffic_mirror": {"icon": "maki-circle-stroked", "geometry": ["point", "vertex"], "fields": ["direction"], "tags": {"highway": "traffic_mirror"}, "terms": ["blind spot", "convex", "corner", "curved", "roadside", "round", "safety", "sphere", "visibility"], "name": "Traffic Mirror"}, - "highway/traffic_signals": {"icon": "temaki-traffic_signals", "geometry": ["vertex"], "tags": {"highway": "traffic_signals"}, "fields": ["traffic_signals", "traffic_signals/direction"], "terms": ["light", "stoplight", "traffic light"], "name": "Traffic Signals"}, - "highway/trailhead": {"icon": "fas-hiking", "fields": ["name", "operator", "ele_node", "address", "access_simple", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["gnis/feature_id", "opening_hours", "opening_hours/covid19"], "geometry": ["vertex"], "tags": {"highway": "trailhead"}, "terms": ["hiking", "mile zero", "mountain biking", "mountaineering", "trail endpoint", "trail start", "staging area", "trekking"], "name": "Trailhead"}, - "highway/trunk_link": {"icon": "iD-highway-trunk-link", "fields": ["{highway/motorway_link}"], "moreFields": ["{highway/motorway_link}"], "geometry": ["line"], "tags": {"highway": "trunk_link"}, "terms": ["on ramp", "off ramp", "ramp", "road", "street"], "name": "Trunk Link"}, - "highway/trunk": {"icon": "iD-highway-trunk", "fields": ["name", "ref_road_number", "oneway", "maxspeed", "lanes", "surface", "structure", "access"], "moreFields": ["charge_toll", "covered", "incline", "junction_line", "lit", "maxheight", "maxweight_bridge", "minspeed", "not/name", "smoothness", "toll", "width"], "geometry": ["line"], "tags": {"highway": "trunk"}, "terms": ["road", "street"], "name": "Trunk Road"}, - "highway/turning_circle": {"icon": "maki-circle-stroked", "geometry": ["vertex"], "tags": {"highway": "turning_circle"}, "terms": ["cul-de-sac"], "name": "Turning Circle"}, - "highway/turning_loop": {"icon": "maki-circle", "geometry": ["vertex"], "tags": {"highway": "turning_loop"}, "terms": ["cul-de-sac"], "name": "Turning Loop (Island)"}, - "highway/unclassified": {"icon": "iD-highway-unclassified", "fields": ["{highway/residential}"], "moreFields": ["{highway/residential}"], "geometry": ["line"], "tags": {"highway": "unclassified"}, "terms": ["road", "street"], "name": "Minor/Unclassified Road"}, - "historic": {"icon": "temaki-ruins", "fields": ["historic", "inscription"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "vertex", "line", "area"], "tags": {"historic": "*"}, "matchScore": 0.5, "name": "Historic Site"}, - "historic/archaeological_site": {"icon": "temaki-ruins", "fields": ["name", "site_type", "historic/civilization", "inscription", "access_simple"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "archaeological_site"}, "name": "Archaeological Site"}, - "historic/boundary_stone": {"icon": "temaki-milestone", "fields": ["name", "inscription"], "moreFields": ["{historic}", "material"], "geometry": ["point", "vertex"], "tags": {"historic": "boundary_stone"}, "name": "Boundary Stone"}, - "historic/building": {"icon": "maki-home", "fields": ["{building}", "start_date"], "moreFields": ["{building}", "access_simple"], "geometry": ["area"], "tags": {"historic": "building"}, "addTags": {"historic": "building", "building": "*"}, "reference": {"key": "historic", "value": "building"}, "matchScore": 0.5, "name": "Historic Building"}, - "historic/castle": {"icon": "maki-castle", "fields": ["name", "castle_type", "building_area", "historic/civilization", "access_simple", "start_date"], "geometry": ["point", "area"], "tags": {"historic": "castle"}, "name": "Castle"}, - "historic/castle/fortress": {"icon": "maki-castle", "fields": ["name", "building_area", "access_simple", "start_date"], "geometry": ["point", "area"], "reference": {"key": "castle_type", "value": "fortress"}, "tags": {"historic": "castle", "castle_type": "fortress"}, "terms": ["citadel", "military"], "name": "Historic Fortress"}, - "historic/castle/palace": {"icon": "fas-crown", "fields": ["name", "building_area", "access_simple", "start_date"], "geometry": ["point", "area"], "reference": {"key": "castle_type", "value": "palace"}, "tags": {"historic": "castle", "castle_type": "palace"}, "terms": ["Royal Residence", "royal", "king", "queen"], "name": "Palace"}, - "historic/castle/stately": {"icon": "fas-crown", "fields": ["name", "building_area", "access_simple", "start_date"], "geometry": ["point", "area"], "reference": {"key": "castle_type", "value": "stately"}, "tags": {"historic": "castle", "castle_type": "stately"}, "terms": ["Historic Country House", "Stately Home", "nobility", "gentry", "representative"], "name": "Château"}, - "historic/city_gate": {"icon": "maki-castle", "fields": ["name", "building_area", "historic/civilization", "start_date"], "geometry": ["point", "area"], "tags": {"historic": "city_gate"}, "terms": ["Town Gate"], "name": "City Gate"}, - "historic/fort": {"icon": "maki-castle", "fields": ["name", "building_area", "access_simple", "start_date"], "geometry": ["point", "area"], "tags": {"historic": "fort"}, "terms": ["military"], "name": "Historic Fort"}, - "historic/manor": {"icon": "maki-castle", "fields": ["name", "building_area", "access_simple", "start_date"], "geometry": ["point", "area"], "tags": {"historic": "manor"}, "terms": ["Mansion", "gentry", "nobility", "estate"], "name": "Manor House"}, - "historic/memorial": {"icon": "maki-monument", "fields": ["name", "memorial", "inscription", "material"], "moreFields": ["{historic}", "website"], "geometry": ["point", "vertex", "area"], "terms": ["dedicatory", "epitaph", "remember", "remembrance", "memory", "monument", "stolperstein"], "tags": {"historic": "memorial"}, "name": "Memorial"}, - "historic/memorial/plaque": {"icon": "temaki-plaque", "fields": ["{historic/memorial}", "direction"], "geometry": ["point", "vertex"], "terms": ["dedicatory", "epitaph", "historical marker", "remember", "remembrance", "memory"], "tags": {"historic": "memorial", "memorial": "plaque"}, "reference": {"key": "memorial", "value": "plaque"}, "name": "Commemorative Plaque"}, - "historic/monument": {"icon": "maki-monument", "fields": ["name", "inscription", "access_simple"], "moreFields": ["{historic}", "material"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "monument"}, "name": "Monument"}, - "historic/pillory": {"icon": "maki-monument", "fields": ["name", "building_area", "access_simple", "start_date"], "geometry": ["point", "area"], "tags": {"historic": "pillory"}, "terms": ["attraction"], "name": "Historic Pillory"}, - "historic/ruins": {"icon": "temaki-ruins", "fields": ["name", "ruins", "historic/civilization", "inscription", "access_simple"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "ruins"}, "name": "Ruins"}, - "historic/tomb": {"icon": "maki-cemetery", "fields": ["name", "tomb", "building_area", "inscription", "access_simple"], "geometry": ["point", "area"], "tags": {"historic": "tomb"}, "name": "Tomb"}, - "historic/wayside_cross": {"icon": "maki-religious-christian", "fields": ["name", "inscription", "material"], "moreFields": ["{historic}", "start_date", "religion", "denomination"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "wayside_cross"}, "name": "Wayside Cross"}, - "historic/wayside_shrine": {"icon": "maki-landmark", "fields": ["name", "religion", "denomination", "inscription", "access_simple"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "wayside_shrine"}, "name": "Wayside Shrine"}, - "historic/wreck": {"icon": "temaki-ruins", "fields": ["name", "access_simple", "seamark/wreck/category", "historic/wreck/date_sunk", "historic/wreck/visible_at_low_tide", "historic/wreck/visible_at_high_tide"], "moreFields": ["{historic}", "seamark/type"], "geometry": ["point", "area"], "tags": {"historic": "wreck"}, "addTags": {"historic": "wreck", "seamark:type": "wreck"}, "terms": ["hull", "mast", "maritime", "remains", "ship", "boat"], "name": "Shipwreck"}, - "indoor/corridor_line": {"fields": ["level", "name"], "geometry": ["line"], "tags": {"indoor": "corridor"}, "searchable": false, "matchScore": 1.1, "name": "Indoor Corridor", "replacement": "highway/corridor"}, - "indoor/area": {"icon": "temaki-room", "fields": ["level", "name", "ref_room_number", "height"], "geometry": ["area"], "tags": {"indoor": "area"}, "terms": ["indoor space"], "matchScore": 0.8, "name": "Indoor Area"}, - "indoor/corridor": {"icon": "temaki-pedestrian", "fields": ["level", "name", "ref", "height"], "geometry": ["area"], "tags": {"indoor": "corridor"}, "terms": ["concourse", "foyer", "hallway", "passageway"], "matchScore": 0.8, "name": "Indoor Corridor"}, - "indoor/door": {"icon": "maki-entrance-alt1", "fields": ["level", "ref", "door_type", "access_simple", "width", "height"], "moreFields": ["wheelchair"], "geometry": ["vertex"], "tags": {"indoor": "door"}, "addTags": {"indoor": "door", "door": "yes"}, "removeTags": {"indoor": "door", "door": "*"}, "terms": ["doorframe", "doorway", "portal", "room access", "threshold"], "name": "Indoor Door"}, - "indoor/elevator": {"icon": "temaki-elevator", "fields": ["ref", "level_semi"], "geometry": ["area"], "tags": {"indoor": "room", "elevator": "yes"}, "terms": ["elevator", "lift"], "matchScore": 0.8, "name": "Indoor Elevator Shaft"}, - "indoor/room": {"icon": "temaki-room", "fields": ["level", "name", "ref_room_number", "room", "height"], "geometry": ["area"], "tags": {"indoor": "room"}, "terms": ["antechamber", "anteroom", "atrium", "cell", "chamber", "concourse", "foyer", "indoor room", "lobby", "vestibule"], "matchScore": 0.8, "name": "Room"}, - "indoor/stairs": {"icon": "iD-highway-steps", "fields": ["ref", "level_semi", "conveying_escalator"], "geometry": ["area"], "tags": {"indoor": "room", "stairs": "yes"}, "terms": ["stair", "stairs", "staircase", "stairway", "stairwell", "steps"], "matchScore": 0.8, "name": "Indoor Stairwell"}, - "indoor/wall": {"icon": "temaki-wall", "fields": ["level", "height"], "geometry": ["line"], "tags": {"indoor": "wall"}, "terms": ["indoor barrier", "room divider", "room partition"], "name": "Indoor Wall"}, - "internet_access/wlan": {"icon": "fas-wifi", "geometry": ["point", "area"], "fields": ["internet_access/ssid", "internet_access/fee"], "moreFields": ["level"], "terms": ["wi-fi", "wifi", "hotspot"], "tags": {"internet_access": "wlan"}, "matchScore": 0.25, "name": "Wi-Fi Hotspot"}, - "junction": {"icon": "temaki-junction", "fields": ["name"], "geometry": ["vertex", "area"], "tags": {"junction": "yes"}, "name": "Junction"}, - "landuse/basin": {"icon": "maki-water", "fields": ["name", "basin", "intermittent_yes"], "geometry": ["area"], "tags": {"landuse": "basin"}, "name": "Basin", "searchable": false}, - "landuse/churchyard": {"icon": "maki-religious-christian", "fields": ["{landuse/religious}"], "moreFields": ["{landuse/religious}"], "geometry": ["area"], "tags": {"landuse": "churchyard"}, "searchable": false, "name": "Churchyard"}, - "landuse/farm": {"icon": "maki-farm", "fields": ["name", "operator", "crop"], "geometry": ["point", "area"], "tags": {"landuse": "farm"}, "name": "Farmland", "searchable": false}, - "landuse/pond": {"icon": "maki-water", "fields": ["name", "intermittent"], "geometry": ["area"], "tags": {"landuse": "pond"}, "name": "Pond", "searchable": false}, - "landuse/reservoir": {"icon": "maki-water", "fields": ["name", "intermittent"], "geometry": ["area"], "tags": {"landuse": "reservoir"}, "name": "Reservoir", "searchable": false}, - "landuse/allotments": {"icon": "maki-garden-centre", "geometry": ["area"], "fields": ["name", "operator", "plots"], "moreFields": ["address", "email", "fax", "phone", "website"], "tags": {"landuse": "allotments"}, "terms": ["allotment", "community garden", "garden"], "name": "Garden Allotments"}, - "landuse/aquaculture": {"icon": "maki-aquarium", "fields": ["name", "operator", "produce"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "aquaculture"}, "terms": ["fish farm", "crustacean", "algae", "aquafarming", "shrimp farm", "oyster farm", "mariculture", "algaculture"], "name": "Aquaculture"}, - "landuse/brownfield": {"icon": "temaki-bulldozer", "geometry": ["area"], "fields": ["name"], "tags": {"landuse": "brownfield"}, "terms": [], "matchScore": 0.9, "name": "Brownfield"}, - "landuse/cemetery": {"icon": "maki-cemetery", "fields": ["name", "religion", "denomination"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "cemetery"}, "terms": ["burial ground", "cemetary", "cemetery", "churchyard", "columbarium", "grave yard", "graveyard", "mausoleum", "tomb"], "name": "Cemetery"}, - "landuse/commercial": {"icon": "maki-suitcase", "fields": ["name"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "commercial"}, "terms": [], "matchScore": 0.9, "name": "Commercial Area"}, - "landuse/construction": {"icon": "temaki-bulldozer", "fields": ["name", "construction", "operator", "opening_date", "check_date", "note"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "construction"}, "terms": ["building", "bulldozer", "construction site", "construction zone", "crane", "demolition", "development", "infrastructure"], "name": "Construction Area"}, - "landuse/farmland": {"icon": "fas-tractor", "fields": ["name", "operator", "crop", "produce"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "farmland"}, "terms": ["crop", "grow", "plant"], "name": "Farmland"}, - "landuse/farmyard": {"icon": "maki-farm", "fields": ["name", "operator", "crop"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "farmyard"}, "terms": ["crop", "grow", "plant"], "name": "Farmyard"}, - "landuse/flowerbed": {"icon": "maki-garden", "fields": ["operator"], "moreFields": ["address", "name"], "geometry": ["area"], "tags": {"landuse": "flowerbed"}, "terms": ["floral garden", "flower garden"], "name": "Flowerbed"}, - "landuse/forest": {"icon": "maki-park-alt1", "fields": ["name", "leaf_type", "leaf_cycle", "produce"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "forest"}, "terms": ["boreal", "cut", "forest", "forestry", "forrest", "lumber", "silviculture", "taiga", "tree", "trees", "woodlands", "woods"], "name": "Managed Forest"}, - "landuse/garages": {"icon": "fas-warehouse", "geometry": ["area"], "fields": ["name"], "moreFields": ["address", "email", "fax", "phone", "website"], "tags": {"landuse": "garages"}, "terms": [], "name": "Garage Landuse"}, - "landuse/grass": {"icon": "temaki-lawn", "geometry": ["area"], "tags": {"landuse": "grass"}, "terms": ["field", "green", "lawn", "managed grass", "mown grass", "turf"], "name": "Grass"}, - "landuse/greenfield": {"icon": "temaki-bulldozer", "geometry": ["area"], "fields": ["name"], "tags": {"landuse": "greenfield"}, "terms": [], "matchScore": 0.9, "name": "Greenfield"}, - "landuse/greenhouse_horticulture": {"icon": "maki-garden", "fields": ["name", "operator"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "terms": ["flower", "greenhouse", "horticulture", "grow", "vivero"], "tags": {"landuse": "greenhouse_horticulture"}, "matchScore": 0.9, "name": "Greenhouse Horticulture"}, - "landuse/harbour": {"icon": "maki-harbor", "fields": ["name", "operator"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "terms": ["boat"], "tags": {"landuse": "harbour"}, "name": "Harbor"}, - "landuse/industrial": {"icon": "maki-industry", "fields": ["name", "industrial"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "industrial"}, "terms": [], "matchScore": 0.9, "name": "Industrial Area"}, - "landuse/industrial/scrap_yard": {"icon": "temaki-junk_car", "fields": ["name", "operator", "address", "opening_hours", "opening_hours/covid19"], "geometry": ["point", "area"], "tags": {"industrial": "scrap_yard"}, "addTags": {"landuse": "industrial", "industrial": "scrap_yard"}, "reference": {"key": "industrial", "value": "scrap_yard"}, "terms": ["car", "junk", "metal", "salvage", "scrap", "u-pull-it", "vehicle", "wreck", "yard"], "name": "Scrap Yard"}, - "landuse/industrial/slaughterhouse": {"icon": "maki-slaughterhouse", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "geometry": ["point", "area"], "tags": {"industrial": "slaughterhouse"}, "addTags": {"landuse": "industrial", "industrial": "slaughterhouse"}, "reference": {"key": "industrial", "value": "slaughterhouse"}, "terms": ["abattoir", "beef", "butchery", "calf", "chicken", "cow", "killing house", "meat", "pig", "pork", "poultry", "shambles", "stockyard"], "name": "Slaughterhouse"}, - "landuse/landfill": {"icon": "temaki-bulldozer", "geometry": ["area"], "fields": ["name"], "moreFields": ["address", "email", "fax", "phone", "website"], "tags": {"landuse": "landfill"}, "terms": ["dump"], "name": "Landfill"}, - "landuse/meadow": {"icon": "maki-garden", "geometry": ["area"], "fields": ["name"], "tags": {"landuse": "meadow"}, "terms": ["grazing", "hay field", "pasture"], "name": "Meadow"}, - "landuse/military": {"icon": "temaki-military", "fields": ["name"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "military"}, "terms": [], "matchScore": 0.9, "name": "Military Area"}, - "landuse/military/airfield": {"icon": "temaki-fighter_jet", "fields": ["name", "iata", "icao"], "geometry": ["point", "area"], "tags": {"military": "airfield"}, "addTags": {"aeroway": "aerodrome", "landuse": "military", "military": "airfield"}, "reference": {"key": "military", "value": "airfield"}, "terms": ["aerodrome", "aeroway", "air force", "airplane", "airport", "army", "base", "bomb", "fight", "force", "guard", "heli*", "jet", "marine", "navy", "plane", "troop", "war"], "name": "Military Airfield"}, - "landuse/military/barracks": {"icon": "temaki-army_tent", "fields": ["name", "building_area"], "geometry": ["point", "area"], "tags": {"military": "barracks"}, "addTags": {"landuse": "military", "military": "barracks"}, "terms": ["air force", "army", "base", "fight", "force", "guard", "marine", "navy", "troop", "war"], "name": "Barracks"}, - "landuse/military/danger_area": {"icon": "maki-danger", "fields": ["name"], "geometry": ["point", "vertex", "area"], "tags": {"military": "danger_area"}, "addTags": {"landuse": "military", "military": "danger_area"}, "terms": ["air force", "army", "base", "blast", "bomb", "explo*", "force", "guard", "mine", "marine", "navy", "troop", "war"], "name": "Danger Area"}, - "landuse/military/naval_base": {"icon": "temaki-anchor_medal", "fields": ["name"], "geometry": ["point", "area"], "tags": {"military": "naval_base"}, "addTags": {"landuse": "military", "military": "naval_base"}, "terms": ["base", "fight", "force", "guard", "marine", "navy", "ship", "sub", "troop", "war"], "name": "Naval Base"}, - "landuse/military/obstacle_course": {"icon": "temaki-tire_course", "geometry": ["point", "area"], "tags": {"military": "obstacle_course"}, "addTags": {"landuse": "military", "military": "obstacle_course"}, "terms": ["army", "base", "force", "guard", "marine", "navy", "troop", "war"], "name": "Military Obstacle Course"}, - "landuse/military/range": {"icon": "fas-bullseye", "fields": ["name"], "geometry": ["point", "area"], "tags": {"military": "range"}, "addTags": {"landuse": "military", "military": "range"}, "terms": ["air force", "army", "base", "fight", "fire", "force", "guard", "gun", "marine", "navy", "rifle", "shoot*", "snip*", "train", "troop", "war"], "name": "Military Range"}, - "landuse/military/training_area": {"icon": "temaki-military", "fields": ["name"], "geometry": ["point", "area"], "tags": {"military": "training_area"}, "addTags": {"landuse": "military", "military": "training_area"}, "terms": ["air force", "army", "base", "fight", "fire", "force", "guard", "gun", "marine", "navy", "rifle", "shoot*", "snip*", "train", "troop", "war"], "name": "Military Training Area"}, - "landuse/orchard": {"icon": "maki-park", "fields": ["name", "operator", "trees"], "moreFields": ["address", "email", "fax", "phone", "species/wikidata", "website"], "geometry": ["area"], "tags": {"landuse": "orchard"}, "terms": ["fruit"], "name": "Orchard"}, - "landuse/plant_nursery": {"icon": "fas-seedling", "fields": ["name", "operator", "plant"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "plant_nursery"}, "terms": ["flower", "garden", "grow", "vivero"], "name": "Plant Nursery"}, - "landuse/quarry": {"icon": "temaki-pick_hammer", "geometry": ["area", "point"], "fields": ["name", "operator", "resource"], "moreFields": ["address", "email", "fax", "phone", "website"], "tags": {"landuse": "quarry"}, "terms": ["aggregate quarry", "open pit mine", "sand mine", "sand pit", "sand quarry", "sandpit"], "name": "Quarry"}, - "landuse/railway": {"icon": "temaki-train", "fields": ["operator"], "geometry": ["area"], "tags": {"landuse": "railway"}, "terms": ["rail", "train", "track"], "name": "Railway Corridor"}, - "landuse/recreation_ground": {"icon": "maki-pitch", "geometry": ["area"], "fields": ["name"], "moreFields": ["address", "email", "fax", "phone", "website"], "tags": {"landuse": "recreation_ground"}, "terms": ["playing fields"], "name": "Recreation Ground"}, - "landuse/religious": {"icon": "maki-place-of-worship", "geometry": ["area"], "fields": ["name", "religion", "denomination"], "moreFields": ["address", "email", "fax", "phone", "website"], "tags": {"landuse": "religious"}, "terms": ["christian", "churchyard", "hindu", "jewish", "mosque", "muslim", "place of worship", "shinto", "sikh", "taoist", "temple", "shrine", "synagogue"], "name": "Religious Area"}, - "landuse/residential": {"icon": "maki-residential-community", "fields": ["name", "residential"], "geometry": ["area"], "tags": {"landuse": "residential"}, "terms": [], "matchScore": 0.9, "name": "Residential Area"}, - "landuse/residential/apartments": {"icon": "maki-residential-community", "fields": ["name", "operator", "address"], "geometry": ["point", "area"], "tags": {"residential": "apartments"}, "addTags": {"landuse": "residential", "residential": "apartments"}, "reference": {"key": "residential", "value": "apartments"}, "terms": ["flat", "residence", "tenement"], "name": "Apartment Complex"}, - "landuse/retail": {"icon": "maki-commercial", "geometry": ["area"], "fields": ["name"], "moreFields": ["address", "email", "fax", "phone", "website"], "tags": {"landuse": "retail"}, "matchScore": 0.9, "name": "Retail Area"}, - "landuse/vineyard": {"icon": "temaki-grapes", "fields": ["name", "operator", "grape_variety"], "moreFields": ["address", "email", "fax", "phone", "website"], "geometry": ["area"], "tags": {"landuse": "vineyard"}, "addTags": {"landuse": "vineyard", "crop": "grape"}, "removeTags": {"landuse": "vineyard", "crop": "grape", "grape_variety": "*"}, "terms": ["grape", "wine"], "name": "Vineyard"}, - "landuse/winter_sports": {"icon": "fas-skiing", "geometry": ["area"], "fields": ["name", "operator"], "moreFields": ["access_simple", "address", "opening_hours", "opening_hours/covid19"], "tags": {"landuse": "winter_sports"}, "terms": ["piste area", "ski area", "ski hill", "ski mountain", "ski resort", "snow board area", "snowboard area"], "name": "Winter Sports Area"}, - "leisure/adult_gaming_centre": {"icon": "temaki-casino", "fields": ["{amenity/casino}"], "moreFields": ["{amenity/casino}"], "geometry": ["point", "area"], "terms": ["gambling", "slot machine"], "tags": {"leisure": "adult_gaming_centre"}, "name": "Adult Gaming Center"}, - "leisure/amusement_arcade": {"icon": "maki-gaming", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "max_age", "min_age", "opening_hours", "opening_hours/covid19", "payment_multi", "phone", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["pay-to-play games", "video games", "driving simulators", "pinball machines"], "tags": {"leisure": "amusement_arcade"}, "name": "Amusement Arcade"}, - "leisure/bandstand": {"icon": "fas-music", "fields": ["name", "building_area", "operator"], "moreFields": ["gnis/feature_id", "website"], "geometry": ["point", "area"], "tags": {"leisure": "bandstand"}, "name": "Bandstand"}, - "leisure/beach_resort": {"icon": "fas-umbrella-beach", "fields": ["name", "address", "opening_hours", "opening_hours/covid19", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "smoking", "website"], "geometry": ["point", "area"], "tags": {"leisure": "beach_resort"}, "name": "Beach Resort"}, - "leisure/bird_hide": {"icon": "temaki-binoculars", "fields": ["name", "building_area", "address", "opening_hours", "opening_hours/covid19"], "moreFields": ["website"], "geometry": ["point", "area"], "tags": {"leisure": "bird_hide"}, "terms": ["machan", "ornithology"], "name": "Bird Hide"}, - "leisure/bleachers": {"icon": "temaki-bleachers", "geometry": ["area"], "tags": {"leisure": "bleachers"}, "terms": ["crowd", "bench", "sports", "stand", "stands", "seat", "seating"], "name": "Bleachers"}, - "leisure/bowling_alley": {"icon": "temaki-bowling", "fields": ["name", "operator", "address", "building_area"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "min_age", "opening_hours", "opening_hours/covid19", "payment_multi", "phone", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["bowling center"], "tags": {"leisure": "bowling_alley"}, "name": "Bowling Alley"}, - "leisure/common": {"icon": "temaki-pedestrian", "fields": ["name", "access_simple"], "moreFields": ["gnis/feature_id", "website"], "geometry": ["area", "point"], "terms": ["open space"], "tags": {"leisure": "common"}, "name": "Common"}, - "leisure/dance": {"icon": "fas-music", "fields": ["name", "operator", "address", "building_area", "dance/style"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "opening_hours", "opening_hours/covid19", "payment_multi", "phone", "website"], "geometry": ["point", "area"], "terms": ["ballroom", "jive", "swing", "tango", "waltz"], "tags": {"leisure": "dance"}, "name": "Dance Hall"}, - "leisure/dancing_school": {"icon": "fas-music", "fields": ["name", "operator", "address", "building_area", "dance/style"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "opening_hours", "opening_hours/covid19", "payment_multi", "phone", "website"], "geometry": ["point", "area"], "terms": ["jive", "swing", "tango", "waltz", "dance teaching"], "tags": {"leisure": "dance", "dance:teaching": "yes"}, "reference": {"key": "leisure", "value": "dance"}, "name": "Dance School"}, - "leisure/disc_golf_course": {"icon": "temaki-disc_golf_basket", "fields": ["name", "operator", "access_simple", "fee", "payment_multi_fee", "charge_fee", "opening_hours", "opening_hours/covid19"], "moreFields": ["address", "dog", "email", "fax", "gnis/feature_id", "lit", "phone", "website", "wheelchair"], "geometry": ["area", "point"], "tags": {"leisure": "disc_golf_course"}, "addTags": {"leisure": "disc_golf_course", "sport": "disc_golf"}, "terms": ["disk golf", "frisbee golf", "flying disc golf", "frolf", "ultimate"], "name": "Disc Golf Course"}, - "leisure/dog_park": {"icon": "maki-dog-park", "fields": ["name", "operator", "operator/type", "address", "access_simple", "website"], "moreFields": ["dog", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "phone", "ref"], "geometry": ["area", "point"], "tags": {"leisure": "dog_park"}, "terms": [], "name": "Dog Park"}, - "leisure/escape_game": {"icon": "fas-puzzle-piece", "fields": ["name", "address", "building_area", "opening_hours", "opening_hours/covid19", "website", "fee", "payment_multi_fee", "charge_fee", "internet_access", "internet_access/fee", "internet_access/ssid"], "moreFields": ["air_conditioning", "email", "fax", "level", "phone", "smoking", "wheelchair"], "geometry": ["point", "area"], "terms": ["escape game", "escape the room", "puzzle room", "quest room"], "tags": {"leisure": "escape_game"}, "name": "Escape Room"}, - "leisure/firepit": {"icon": "temaki-campfire", "fields": ["access_simple", "seasonal", "width"], "moreFields": ["ref"], "geometry": ["point", "area"], "tags": {"leisure": "firepit"}, "terms": ["bonfire", "campfire", "fire circle", "fire hole", "fire place", "fire ring", "firepit", "fireplace", "firering"], "name": "Fire Pit"}, - "leisure/fishing": {"icon": "fas-fish", "fields": ["name", "access_simple", "fishing"], "geometry": ["vertex", "point", "area"], "tags": {"leisure": "fishing"}, "terms": ["angler"], "name": "Fishing Spot"}, - "leisure/fitness_centre": {"icon": "fas-dumbbell", "fields": ["name", "sport", "address", "building_area", "opening_hours", "opening_hours/covid19", "phone", "website"], "moreFields": ["brand", "charge_fee", "email", "fax", "fee", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "payment_multi"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre"}, "terms": ["health", "gym", "leisure", "pilates", "studio"], "name": "Gym / Fitness Center"}, - "leisure/fitness_centre/yoga": {"icon": "maki-pitch", "geometry": ["point", "area"], "terms": ["asanas", "meditation", "modern yoga", "studio"], "tags": {"leisure": "fitness_centre", "sport": "yoga"}, "reference": {"key": "sport", "value": "yoga"}, "name": "Yoga Studio"}, - "leisure/fitness_station": {"icon": "maki-pitch", "fields": ["fitness_station", "ref", "wheelchair", "blind"], "moreFields": ["access_simple", "opening_hours", "opening_hours/covid19"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station"}, "addTags": {"leisure": "fitness_station", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["exercise", "fitness", "gym", "trim trail"], "name": "Outdoor Fitness Station"}, - "leisure/fitness_station/balance_beam": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "balance_beam"}, "addTags": {"leisure": "fitness_station", "fitness_station": "balance_beam", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["balance", "exercise", "fitness", "gym", "trim trail"], "name": "Exercise Balance Beam"}, - "leisure/fitness_station/box": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "box"}, "addTags": {"leisure": "fitness_station", "fitness_station": "box", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["box", "exercise", "fitness", "gym", "jump", "trim trail"], "name": "Exercise Box"}, - "leisure/fitness_station/horizontal_bar": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "horizontal_bar"}, "addTags": {"leisure": "fitness_station", "fitness_station": "horizontal_bar", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["bar", "chinup", "chin up", "exercise", "fitness", "gym", "pullup", "pull up", "trim trail"], "name": "Exercise Horizontal Bar"}, - "leisure/fitness_station/horizontal_ladder": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "horizontal_ladder"}, "addTags": {"leisure": "fitness_station", "fitness_station": "horizontal_ladder", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["bar", "chinup", "chin up", "exercise", "fitness", "gym", "ladder", "monkey bars", "pullup", "pull up", "trim trail"], "name": "Exercise Monkey Bars"}, - "leisure/fitness_station/hyperextension": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "hyperextension"}, "addTags": {"leisure": "fitness_station", "fitness_station": "hyperextension", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["back", "exercise", "extension", "fitness", "gym", "roman chair", "trim trail"], "name": "Hyperextension Station"}, - "leisure/fitness_station/parallel_bars": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "parallel_bars"}, "addTags": {"leisure": "fitness_station", "fitness_station": "parallel_bars", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["bar", "dip", "exercise", "fitness", "gym", "trim trail"], "name": "Parallel Bars"}, - "leisure/fitness_station/push-up": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "push-up"}, "addTags": {"leisure": "fitness_station", "fitness_station": "push-up", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["bar", "exercise", "fitness", "gym", "pushup", "push up", "trim trail"], "name": "Push-Up Station"}, - "leisure/fitness_station/rings": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "rings"}, "addTags": {"leisure": "fitness_station", "fitness_station": "rings", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["exercise", "fitness", "gym", "muscle up", "pullup", "pull up", "trim trail"], "name": "Exercise Rings"}, - "leisure/fitness_station/sign": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "sign"}, "addTags": {"leisure": "fitness_station", "fitness_station": "sign", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["exercise", "fitness", "gym", "trim trail"], "name": "Exercise Instruction Sign"}, - "leisure/fitness_station/sit-up": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "sit-up"}, "addTags": {"leisure": "fitness_station", "fitness_station": "sit-up", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["crunch", "exercise", "fitness", "gym", "situp", "sit up", "trim trail"], "name": "Sit-Up Station"}, - "leisure/fitness_station/stairs": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "stairs"}, "addTags": {"leisure": "fitness_station", "fitness_station": "stairs", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["exercise", "fitness", "gym", "steps", "trim trail"], "name": "Exercise Stairs"}, - "leisure/garden": {"icon": "maki-garden", "fields": ["name", "garden/type", "operator", "operator/type", "access_simple", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website"], "geometry": ["point", "area"], "tags": {"leisure": "garden"}, "terms": ["flowers", "fruits", "herbs", "plants", "vegetables"], "name": "Garden"}, - "leisure/garden/botanical": {"icon": "maki-garden", "geometry": ["point", "area"], "tags": {"leisure": "garden", "garden:type": "botanical"}, "reference": {"key": "garden:type", "value": "botanical"}, "terms": ["botanic garden", "plant collection", "rare plants"], "name": "Botanical Garden"}, - "leisure/garden/community": {"icon": "maki-garden", "geometry": ["point", "area"], "tags": {"leisure": "garden", "garden:type": "community"}, "reference": {"key": "garden:type", "value": "community"}, "terms": ["co-op garden", "collective garden", "communal garden"], "name": "Community Garden"}, - "leisure/golf_course": {"icon": "maki-golf", "fields": ["name", "operator", "address", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "payment_multi", "phone", "website"], "geometry": ["area", "point"], "terms": ["links"], "tags": {"leisure": "golf_course"}, "name": "Golf Course"}, - "leisure/hackerspace": {"icon": "fas-code", "fields": ["name", "address", "building_area", "opening_hours", "opening_hours/covid19", "website", "fee", "payment_multi_fee", "charge_fee", "internet_access", "internet_access/fee", "internet_access/ssid"], "moreFields": ["air_conditioning", "email", "fax", "gnis/feature_id", "level", "phone", "smoking", "wheelchair"], "geometry": ["point", "area"], "terms": ["makerspace", "hackspace", "hacklab"], "tags": {"leisure": "hackerspace"}, "name": "Hackerspace"}, - "leisure/horse_riding": {"icon": "maki-horse-riding", "fields": ["name", "access_simple", "operator", "address", "building"], "moreFields": ["email", "fax", "gnis/feature_id", "opening_hours", "opening_hours/covid19", "payment_multi", "phone", "website"], "geometry": ["point", "area"], "terms": ["equestrian", "stable"], "tags": {"leisure": "horse_riding"}, "name": "Horseback Riding Facility"}, - "leisure/ice_rink": {"icon": "fas-skating", "fields": ["name", "seasonal", "sport_ice", "operator", "address", "building"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "opening_hours", "opening_hours/covid19", "payment_multi", "phone", "website"], "geometry": ["area", "point"], "terms": ["hockey", "skating", "curling"], "tags": {"leisure": "ice_rink"}, "name": "Ice Rink"}, - "leisure/marina": {"icon": "temaki-sailboat", "fields": ["name", "operator", "capacity", "fee", "payment_multi_fee", "charge_fee", "sanitary_dump_station", "power_supply"], "moreFields": ["address", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "phone", "seamark/type", "vhf", "website"], "geometry": ["area", "point", "vertex"], "terms": ["boats", "docks", "harbor", "harbour", "moorings", "yachts"], "tags": {"leisure": "marina"}, "addTags": {"leisure": "marina", "seamark:type": "harbour", "seamark:harbour:category": "marina"}, "name": "Marina"}, - "leisure/miniature_golf": {"icon": "temaki-golf_green", "fields": ["name", "operator", "address", "opening_hours", "opening_hours/covid19", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website"], "geometry": ["area", "point"], "terms": ["crazy golf", "mini golf", "putt-putt"], "tags": {"leisure": "miniature_golf"}, "name": "Miniature Golf"}, - "leisure/nature_reserve": {"icon": "maki-park", "geometry": ["area", "point"], "fields": ["name", "operator", "address", "opening_hours", "opening_hours/covid19"], "moreFields": ["dog", "email", "fax", "gnis/feature_id", "phone", "website"], "tags": {"leisure": "nature_reserve"}, "terms": ["protected", "wildlife"], "name": "Nature Reserve"}, - "leisure/outdoor_seating": {"icon": "maki-picnic-site", "geometry": ["point", "area"], "fields": ["name", "operator", "capacity", "lit", "seasonal", "heating"], "moreFields": ["level", "wheelchair"], "terms": ["al fresco", "beer garden", "dining", "cafe", "restaurant", "pub", "bar", "patio"], "tags": {"leisure": "outdoor_seating"}, "name": "Outdoor Seating Area"}, - "leisure/park": {"icon": "temaki-tree_and_bench", "fields": ["name", "operator", "address", "opening_hours", "opening_hours/covid19"], "moreFields": ["dog", "email", "fax", "gnis/feature_id", "phone", "smoking", "website"], "geometry": ["area", "point"], "terms": ["esplanade", "estate", "forest", "garden", "grass", "green", "grounds", "lawn", "lot", "meadow", "parkland", "place", "playground", "plaza", "pleasure garden", "recreation area", "square", "tract", "village green", "woodland"], "tags": {"leisure": "park"}, "name": "Park"}, - "leisure/picnic_table": {"icon": "maki-picnic-site", "fields": ["material", "lit", "bench", "colour"], "moreFields": ["height", "level", "manufacturer", "operator"], "geometry": ["point"], "tags": {"leisure": "picnic_table"}, "terms": ["bench"], "name": "Picnic Table"}, - "leisure/picnic_table/chess": {"icon": "fas-chess-pawn", "geometry": ["point"], "tags": {"leisure": "picnic_table", "sport": "chess"}, "reference": {"key": "sport", "value": "chess"}, "terms": ["bench", "chess board", "checkerboard", "checkers", "chequerboard", "game table"], "name": "Chess Table"}, - "leisure/pitch": {"icon": "maki-pitch", "fields": ["name", "sport", "access_simple", "surface", "lit"], "moreFields": ["address", "charge_fee", "covered", "fee", "gnis/feature_id", "indoor", "payment_multi_fee"], "geometry": ["area", "point"], "tags": {"leisure": "pitch"}, "terms": ["field"], "name": "Sport Pitch"}, - "leisure/pitch/american_football": {"icon": "maki-american-football", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "american_football"}, "reference": {"key": "sport", "value": "american_football"}, "terms": ["football", "gridiron"], "name": "American Football Field"}, - "leisure/pitch/australian_football": {"icon": "maki-american-football", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "australian_football"}, "reference": {"key": "sport", "value": "australian_football"}, "terms": ["Aussie", "AFL", "football"], "name": "Australian Football Field"}, - "leisure/pitch/badminton": {"icon": "maki-tennis", "fields": ["{leisure/pitch}", "access_simple"], "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "badminton"}, "reference": {"key": "sport", "value": "badminton"}, "terms": [], "name": "Badminton Court"}, - "leisure/pitch/baseball": {"icon": "maki-baseball", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "baseball"}, "reference": {"key": "sport", "value": "baseball"}, "terms": [], "name": "Baseball Field"}, - "leisure/pitch/basketball": {"icon": "maki-basketball", "fields": ["name", "surface", "hoops", "lit", "access_simple"], "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "basketball"}, "reference": {"key": "sport", "value": "basketball"}, "terms": [], "name": "Basketball Court"}, - "leisure/pitch/beachvolleyball": {"icon": "maki-volleyball", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "beachvolleyball"}, "addTags": {"leisure": "pitch", "sport": "beachvolleyball", "surface": "sand"}, "reference": {"key": "sport", "value": "beachvolleyball"}, "terms": ["volleyball"], "name": "Beach Volleyball Court"}, - "leisure/pitch/boules": {"icon": "maki-pitch", "fields": ["name", "boules", "{leisure/pitch}"], "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "boules"}, "reference": {"key": "sport", "value": "boules"}, "terms": ["bocce", "lyonnaise", "pétanque"], "name": "Boules/Bocce Court"}, - "leisure/pitch/bowls": {"icon": "maki-pitch", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "bowls"}, "reference": {"key": "sport", "value": "bowls"}, "terms": [], "name": "Bowling Green"}, - "leisure/pitch/chess": {"icon": "fas-chess-bishop", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "chess"}, "reference": {"key": "sport", "value": "chess"}, "terms": ["chessboard", "checkerboard", "checkers", "chequerboard", "garden chess", "large chess", "oversize chess"], "name": "Giant Chess Board"}, - "leisure/pitch/cricket": {"icon": "maki-cricket", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "cricket"}, "reference": {"key": "sport", "value": "cricket"}, "terms": [], "name": "Cricket Field"}, - "leisure/pitch/equestrian": {"icon": "maki-horse-riding", "fields": ["{leisure/pitch}", "building"], "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "equestrian"}, "reference": {"key": "sport", "value": "equestrian"}, "terms": ["dressage", "equestrian", "horse", "horseback", "riding"], "name": "Riding Arena"}, - "leisure/pitch/field_hockey": {"icon": "temaki-field_hockey", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "field_hockey"}, "reference": {"key": "sport", "value": "field_hockey"}, "terms": ["landhockey"], "name": "Field Hockey Pitch"}, - "leisure/pitch/horseshoes": {"icon": "temaki-horseshoes", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "horseshoes"}, "reference": {"key": "sport", "value": "horseshoes"}, "terms": ["horse shoes"], "name": "Horseshoes Pit"}, - "leisure/pitch/netball": {"icon": "maki-volleyball", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "netball"}, "reference": {"key": "sport", "value": "netball"}, "terms": [], "name": "Netball Court"}, - "leisure/pitch/rugby_league": {"icon": "maki-american-football", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "rugby_league"}, "reference": {"key": "sport", "value": "rugby_league"}, "terms": [], "name": "Rugby League Field"}, - "leisure/pitch/rugby_union": {"icon": "maki-american-football", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "rugby_union"}, "reference": {"key": "sport", "value": "rugby_union"}, "terms": [], "name": "Rugby Union Field"}, - "leisure/pitch/shuffleboard": {"icon": "temaki-shuffleboard", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "shuffleboard"}, "reference": {"key": "sport", "value": "shuffleboard"}, "terms": ["deck shuffleboard", "floor shuffleboard"], "name": "Shuffleboard Court"}, - "leisure/pitch/skateboard": {"icon": "maki-skateboard", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "skateboard"}, "reference": {"key": "sport", "value": "skateboard"}, "terms": [], "name": "Skate Park"}, - "leisure/pitch/soccer": {"icon": "maki-soccer", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "soccer"}, "reference": {"key": "sport", "value": "soccer"}, "terms": ["football"], "name": "Soccer Field"}, - "leisure/pitch/softball": {"icon": "maki-baseball", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "softball"}, "reference": {"key": "sport", "value": "softball"}, "terms": ["softball", "diamond"], "name": "Softball Field"}, - "leisure/pitch/table_tennis": {"icon": "fas-table-tennis", "fields": ["name", "lit", "access_simple"], "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "table_tennis"}, "reference": {"key": "sport", "value": "table_tennis"}, "terms": ["table tennis", "ping pong"], "name": "Ping Pong Table"}, - "leisure/pitch/tennis": {"icon": "maki-tennis", "fields": ["{leisure/pitch}", "access_simple"], "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "tennis"}, "reference": {"key": "sport", "value": "tennis"}, "terms": [], "name": "Tennis Court"}, - "leisure/pitch/volleyball": {"icon": "maki-volleyball", "geometry": ["area", "point"], "tags": {"leisure": "pitch", "sport": "volleyball"}, "reference": {"key": "sport", "value": "volleyball"}, "terms": [], "name": "Volleyball Court"}, - "leisure/playground": {"icon": "maki-playground", "fields": ["name", "operator", "playground/theme", "surface", "access_simple", "min_age", "max_age"], "moreFields": ["blind", "dog", "gnis/feature_id", "wheelchair"], "geometry": ["area", "point"], "terms": ["jungle gym", "play area"], "tags": {"leisure": "playground"}, "name": "Playground"}, - "leisure/resort": {"icon": "maki-lodging", "fields": ["name", "operator", "resort", "address", "opening_hours", "opening_hours/covid19"], "moreFields": ["access_simple", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "payment_multi", "phone", "website"], "geometry": ["point", "area"], "tags": {"leisure": "resort"}, "terms": ["recreation center", "sanatorium", "ski and snowboard resort", "vacation resort", "winter sports resort"], "name": "Resort"}, - "leisure/sauna": {"icon": "fas-thermometer-three-quarters", "fields": ["name", "operator", "address", "opening_hours", "opening_hours/covid19", "access_simple", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "phone", "website"], "geometry": ["point", "area"], "tags": {"leisure": "sauna"}, "name": "Sauna"}, - "leisure/slipway_point": {"icon": "maki-slipway", "fields": ["{leisure/slipway}"], "moreFields": ["{leisure/slipway}"], "geometry": ["point", "vertex"], "terms": ["boat launch", "boat ramp", "boat landing"], "tags": {"leisure": "slipway"}, "name": "Slipway"}, - "leisure/slipway": {"icon": "maki-slipway", "fields": ["name", "surface", "access_simple", "fee", "payment_multi_fee", "charge_fee", "lanes"], "moreFields": ["lit", "opening_hours", "opening_hours/covid19", "seamark/type", "width"], "geometry": ["line"], "terms": ["boat launch", "boat ramp", "boat landing"], "tags": {"leisure": "slipway"}, "addTags": {"leisure": "slipway", "highway": "service", "service": "slipway"}, "matchScore": 1.1, "name": "Slipway"}, - "leisure/sports_centre": {"icon": "maki-pitch", "fields": ["name", "sport", "building", "address", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["email", "fax", "gnis/feature_id", "level", "opening_hours", "opening_hours/covid19", "phone", "website"], "geometry": ["point", "area"], "tags": {"leisure": "sports_centre"}, "terms": [], "name": "Sports Center / Complex"}, - "leisure/sports_centre/climbing": {"icon": "temaki-abseiling", "geometry": ["point", "area"], "terms": ["abseiling", "artificial climbing wall", "belaying", "bouldering", "rock climbing facility", "indoor rock wall", "rappeling", "rock gym", "ropes"], "tags": {"leisure": "sports_centre", "sport": "climbing"}, "reference": {"key": "sport", "value": "climbing"}, "name": "Climbing Gym"}, - "leisure/sports_centre/swimming": {"icon": "fas-swimmer", "geometry": ["area", "point"], "terms": ["dive", "water"], "tags": {"leisure": "sports_centre", "sport": "swimming"}, "reference": {"key": "sport", "value": "swimming"}, "name": "Swimming Pool Facility"}, - "leisure/sports_hall": {"icon": "maki-pitch", "fields": ["name", "operator", "sport", "address", "building_area", "access_simple"], "moreFields": ["air_conditioning", "level", "opening_hours", "opening_hours/covid19", "fee", "payment_multi_fee", "charge_fee", "wheelchair"], "geometry": ["point", "area"], "terms": ["athletic courts", "gym", "sports hall", "sports venue"], "tags": {"leisure": "sports_hall"}, "name": "Gymnasium"}, - "leisure/stadium": {"icon": "maki-pitch", "fields": ["name", "operator", "sport", "address"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website"], "geometry": ["point", "area"], "tags": {"leisure": "stadium"}, "name": "Stadium"}, - "leisure/swimming_area": {"icon": "fas-swimmer", "fields": ["name", "access_simple", "supervised", "fee", "payment_multi_fee", "charge_fee", "lit"], "moreFields": ["opening_hours", "opening_hours/covid19", "operator"], "geometry": ["area"], "terms": ["dive", "water", "aquatics"], "tags": {"leisure": "swimming_area"}, "name": "Natural Swimming Area"}, - "leisure/swimming_pool": {"icon": "fas-swimming-pool", "fields": ["name", "access_simple", "lit", "location_pool", "length", "swimming_pool"], "moreFields": ["address", "level", "gnis/feature_id", "opening_hours", "opening_hours/covid19", "operator"], "geometry": ["area", "point"], "terms": ["dive", "water", "aquatics"], "tags": {"leisure": "swimming_pool"}, "name": "Swimming Pool"}, - "leisure/track": {"icon": "temaki-racetrack_oval", "fields": ["surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "moreFields": ["access", "covered", "gnis/feature_id", "indoor", "level"], "geometry": ["line", "point", "area"], "tags": {"leisure": "track"}, "terms": ["cycle", "dog", "greyhound", "horse", "race*", "track"], "name": "Racetrack (Non-Motorsport)"}, - "leisure/track/cycling": {"icon": "fas-biking", "fields": ["name", "surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track", "sport": "cycling"}, "reference": {"key": "sport", "value": "cycling"}, "terms": ["bicycle track", "bicycling track", "cycle racetrack", "velodrome"], "name": "Cycling Track"}, - "leisure/track/horse_racing": {"icon": "maki-horse-riding", "fields": ["name", "surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track", "sport": "horse_racing"}, "reference": {"key": "sport", "value": "horse_racing"}, "terms": ["equestrian race track", "horse race betting", "horseracing", "horsetrack", "horse racetrack"], "name": "Horse Racing Track"}, - "leisure/track/running": {"icon": "maki-pitch", "fields": ["name", "surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track", "sport": "running"}, "reference": {"key": "sport", "value": "running"}, "terms": ["athletics track", "decathlon", "foot race", "long distance running", "marathon", "middle distance running", "racetrack", "running", "sprint", "track", "walking"], "name": "Running Track"}, - "leisure/trampoline_park": {"icon": "fas-chevron-circle-up", "fields": ["name", "address", "building_area", "opening_hours", "opening_hours/covid19", "phone", "website"], "moreFields": ["brand", "charge_fee", "email", "fax", "fee", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "operator", "payment_multi"], "geometry": ["point", "area"], "tags": {"leisure": "trampoline_park"}, "terms": ["bounce", "jump", "spring"], "name": "Trampoline Park"}, - "leisure/water_park": {"icon": "fas-swimmer", "fields": ["{tourism/theme_park}", "sport"], "moreFields": ["{tourism/theme_park}"], "geometry": ["area", "point"], "terms": ["swim", "pool", "dive"], "tags": {"leisure": "water_park"}, "name": "Water Park"}, - "line": {"fields": ["name"], "geometry": ["line"], "tags": {}, "terms": ["polyline"], "name": "Line", "matchScore": 0.1}, - "man_made/adit": {"icon": "temaki-adit_profile", "geometry": ["point", "area"], "fields": ["name", "operator", "resource", "direction"], "moreFields": ["gnis/feature_id"], "terms": ["cave", "horizontal mine entrance", "tunnel", "underground"], "tags": {"man_made": "adit"}, "name": "Adit"}, - "man_made/antenna": {"icon": "temaki-antenna", "fields": ["communication_multi", "operator", "manufacturer", "height"], "geometry": ["point"], "terms": ["broadcast", "cell phone", "cell", "communication", "mobile phone", "radio", "television", "transmission", "tv"], "tags": {"man_made": "antenna"}, "name": "Antenna"}, - "man_made/beacon": {"icon": "maki-communications-tower", "fields": ["name", "height"], "moreFields": ["seamark/type"], "geometry": ["point", "vertex", "area"], "tags": {"man_made": "beacon"}, "name": "Beacon", "matchScore": 0.5}, - "man_made/beehive": {"icon": "fas-archive", "geometry": ["point", "area"], "fields": ["ref", "operator", "seasonal", "height", "colour"], "moreFields": ["manufacturer"], "terms": ["apiary", "beekeeper", "farm", "honey", "pollination"], "tags": {"man_made": "beehive"}, "name": "Beehive"}, - "man_made/breakwater": {"fields": ["material", "seamark/type"], "geometry": ["line", "area"], "tags": {"man_made": "breakwater"}, "name": "Breakwater"}, - "man_made/bridge": {"icon": "maki-bridge", "fields": ["name", "bridge_combo", "layer", "maxweight"], "moreFields": ["gnis/feature_id", "manufacturer", "material", "seamark/type"], "geometry": ["area"], "tags": {"man_made": "bridge"}, "addTags": {"man_made": "bridge", "layer": "1"}, "removeTags": {"man_made": "bridge", "layer": "*"}, "reference": {"key": "man_made", "value": "bridge"}, "name": "Bridge Area", "matchScore": 0.85}, - "man_made/bunker_silo": {"icon": "temaki-bunker_silo", "fields": ["content"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "area"], "terms": ["Silage", "Storage"], "tags": {"man_made": "bunker_silo"}, "name": "Bunker Silo"}, - "man_made/cairn": {"icon": "temaki-cairn", "fields": ["height", "ele", "ele_node", "check_date"], "moreFields": ["colour", "material", "name", "operator", "ref"], "geometry": ["point", "area"], "terms": ["rock pile", "stone stack", "stone pile", "càrn"], "tags": {"man_made": "cairn"}, "name": "Cairn"}, - "man_made/chimney": {"icon": "temaki-chimney", "fields": ["operator", "material", "height"], "geometry": ["point", "area"], "tags": {"man_made": "chimney"}, "name": "Chimney"}, - "man_made/clearcut": {"icon": "maki-logging", "geometry": ["area"], "tags": {"man_made": "clearcut"}, "terms": ["cut", "forest", "lumber", "tree", "wood"], "name": "Clearcut Forest"}, - "man_made/courtyard": {"icon": "maki-square-stroked", "fields": ["name"], "moreFields": [], "geometry": ["area"], "tags": {"man_made": "courtyard"}, "terms": ["court", "enclosed open air", "quadrangle", "yard"], "name": "Courtyard"}, - "man_made/crane": {"icon": "temaki-crane", "fields": ["operator", "manufacturer", "height", "crane/type"], "geometry": ["point", "line", "vertex", "area"], "tags": {"man_made": "crane"}, "name": "Crane"}, - "man_made/cross": {"icon": "maki-religious-christian", "fields": ["name", "material", "height", "ele_node", "inscription", "direction"], "geometry": ["point", "vertex"], "tags": {"man_made": "cross"}, "name": "Cross"}, - "man_made/cutline": {"icon": "maki-logging", "geometry": ["line"], "tags": {"man_made": "cutline"}, "name": "Cut line"}, - "man_made/dovecote": {"icon": "fas-dove", "fields": ["operator", "building_area", "height", "capacity"], "moreFields": ["layer", "location"], "geometry": ["area", "point"], "terms": ["birds", "doocot", "dovecot", "doves", "pigeonholes", "pigeons"], "tags": {"man_made": "dovecote"}, "name": "Dovecote"}, - "man_made/dyke": {"geometry": ["line"], "tags": {"man_made": "dyke"}, "terms": ["Dike", "Dyke", "Floodbank", "Stopbank"], "name": "Levee"}, - "man_made/embankment": {"geometry": ["line"], "tags": {"man_made": "embankment"}, "name": "Embankment"}, - "man_made/flagpole": {"icon": "maki-embassy", "fields": ["operator", "flag/type", "country_flag", "lit", "height"], "moreFields": ["manufacturer", "material"], "geometry": ["point", "vertex"], "tags": {"man_made": "flagpole"}, "name": "Flagpole"}, - "man_made/gasometer": {"icon": "temaki-storage_tank", "fields": ["content", "building_area"], "geometry": ["point", "area"], "terms": ["gas holder"], "tags": {"man_made": "gasometer"}, "name": "Gasometer"}, - "man_made/goods_conveyor": {"icon": "temaki-conveyor", "fields": ["name", "ref", "operator", "oneway_yes", "resource", "width"], "moreFields": ["colour", "covered", "indoor", "lit", "manufacturer", "material"], "geometry": ["line"], "terms": ["belt conveyor", "chain conveyor", "conveyor belt", "roller conveyor"], "tags": {"man_made": "goods_conveyor"}, "name": "Goods Conveyor"}, - "man_made/groyne": {"fields": ["material", "seamark/type"], "geometry": ["line", "area"], "tags": {"man_made": "groyne"}, "name": "Groin"}, - "man_made/lighthouse": {"icon": "maki-lighthouse", "fields": ["name", "operator", "building_area", "height"], "moreFields": ["address", "email", "fax", "gnis/feature_id", "phone", "seamark/type", "website"], "geometry": ["point", "area"], "tags": {"man_made": "lighthouse"}, "name": "Lighthouse"}, - "man_made/manhole": {"icon": "temaki-manhole", "fields": ["manhole", "operator", "label", "ref"], "geometry": ["point", "vertex"], "tags": {"manhole": "*"}, "addTags": {"man_made": "manhole", "manhole": "*"}, "terms": ["cover", "hole", "sewer", "sewage", "telecom"], "name": "Manhole"}, - "man_made/manhole/drain": {"icon": "temaki-manhole", "fields": ["operator", "ref"], "geometry": ["point", "vertex"], "tags": {"manhole": "drain"}, "addTags": {"man_made": "manhole", "manhole": "drain"}, "terms": ["cover", "drain", "hole", "rain", "sewer", "sewage", "storm"], "name": "Storm Drain"}, - "man_made/manhole/gas": {"icon": "temaki-gas_manhole", "fields": ["operator", "ref"], "geometry": ["point", "vertex"], "tags": {"manhole": "gas"}, "addTags": {"man_made": "manhole", "manhole": "gas"}, "terms": ["cover", "gas", "heat", "hole", "utility"], "name": "Gas Utility Manhole"}, - "man_made/manhole/power": {"icon": "temaki-power_manhole", "fields": ["operator", "ref"], "geometry": ["point", "vertex"], "tags": {"manhole": "power"}, "addTags": {"man_made": "manhole", "manhole": "power"}, "terms": ["cover", "hole", "electric", "hole", "power", "utility"], "name": "Power Utility Manhole"}, - "man_made/manhole/sewer": {"icon": "temaki-waste_manhole", "fields": ["operator", "ref"], "geometry": ["point", "vertex"], "tags": {"manhole": "sewer"}, "addTags": {"man_made": "manhole", "manhole": "sewer"}, "terms": ["cover", "drain", "hole", "sewer", "sewage", "utility"], "name": "Sewer Utility Manhole"}, - "man_made/manhole/telecom": {"icon": "temaki-cable_manhole", "fields": ["operator", "ref"], "geometry": ["point", "vertex"], "tags": {"manhole": "telecom"}, "addTags": {"man_made": "manhole", "manhole": "telecom"}, "terms": ["bt", "cable", "cover", "phone", "hole", "telecom", "telephone", "utility"], "name": "Telecom Utility Manhole"}, - "man_made/manhole/water": {"icon": "temaki-waste_manhole", "fields": ["operator", "ref"], "geometry": ["point", "vertex"], "tags": {"manhole": "water"}, "addTags": {"man_made": "manhole", "manhole": "water"}, "terms": ["cover", "drinking", "hole", "utility", "water"], "name": "Water Utility Manhole"}, - "man_made/mast": {"icon": "temaki-mast", "fields": ["tower/type", "tower/construction", "height"], "moreFields": ["communication_multi", "gnis/feature_id", "manufacturer", "material"], "geometry": ["point"], "terms": ["antenna", "broadcast tower", "cell phone tower", "cell tower", "communication mast", "communication tower", "guyed tower", "mobile phone tower", "radio mast", "radio tower", "television tower", "transmission mast", "transmission tower", "tv tower"], "tags": {"man_made": "mast"}, "name": "Mast"}, - "man_made/mast/communication": {"icon": "temaki-mast_communication", "fields": ["{man_made/mast}", "communication_multi"], "moreFields": ["{man_made/mast}", "mimics"], "geometry": ["point"], "terms": ["antenna", "broadcast tower", "cell phone tower", "cell tower", "communication mast", "communication tower", "guyed tower", "mobile phone tower", "radio mast", "radio tower", "television tower", "transmission mast", "transmission tower", "tv tower"], "tags": {"man_made": "mast", "tower:type": "communication"}, "reference": {"key": "tower:type", "value": "communication"}, "name": "Communication Mast"}, - "man_made/mast/communication/mobile_phone": {"icon": "temaki-mast_communication", "geometry": ["point"], "terms": ["antenna", "cell mast", "cell phone mast", "cell phone tower", "cell tower", "communication mast", "communication tower", "guyed tower", "mobile phone tower", "transmission mast", "transmission tower"], "tags": {"man_made": "mast", "tower:type": "communication", "communication:mobile_phone": "yes"}, "reference": {"key": "communication:mobile_phone", "value": "yes"}, "name": "Mobile Phone Mast"}, - "man_made/mast/communication/radio": {"icon": "temaki-mast_communication", "geometry": ["point"], "terms": ["antenna", "broadcast tower", "communication mast", "communication tower", "guyed tower", "radio mast", "radio tower", "transmission mast", "transmission tower"], "tags": {"man_made": "mast", "tower:type": "communication", "communication:radio": "yes"}, "reference": {"key": "communication:radio", "value": "yes"}, "name": "Radio Broadcast Mast"}, - "man_made/mast/communication/television": {"icon": "temaki-mast_communication", "geometry": ["point"], "terms": ["antenna", "broadcast tower", "communication mast", "communication tower", "guyed tower", "television mast", "television tower", "transmission mast", "transmission tower", "tv mast", "tv tower"], "tags": {"man_made": "mast", "tower:type": "communication", "communication:television": "yes"}, "reference": {"key": "communication:television", "value": "yes"}, "name": "Television Broadcast Mast"}, - "man_made/mineshaft": {"icon": "temaki-mineshaft_cage", "geometry": ["point", "area"], "fields": ["name", "operator", "resource"], "moreFields": ["gnis/feature_id"], "terms": ["cave", "mine shaft", "tunnel", "underground", "vertical mine entrance"], "tags": {"man_made": "mineshaft"}, "name": "Mineshaft"}, - "man_made/monitoring_station": {"icon": "temaki-antenna", "geometry": ["point", "vertex", "area"], "fields": ["monitoring_multi", "operator", "manufacturer"], "terms": ["weather", "earthquake", "seismology", "air", "gps"], "tags": {"man_made": "monitoring_station"}, "name": "Monitoring Station"}, - "man_made/obelisk": {"icon": "maki-monument", "fields": ["name", "inscription", "height", "material", "colour"], "geometry": ["point", "vertex", "area"], "tags": {"man_made": "obelisk"}, "name": "Obelisk"}, - "man_made/observatory": {"icon": "temaki-telescope", "fields": ["name", "operator", "address", "access_simple", "building_area"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website"], "geometry": ["point", "area"], "terms": ["astronomical", "meteorological"], "tags": {"man_made": "observatory"}, "name": "Observatory"}, - "man_made/petroleum_well": {"icon": "temaki-oil_well", "fields": ["name", "ref", "operator", "substance"], "moreFields": ["gnis/feature_id"], "geometry": ["point"], "terms": ["drilling rig", "oil derrick", "oil drill", "oil horse", "oil rig", "oil pump", "petroleum well", "pumpjack"], "tags": {"man_made": "petroleum_well"}, "name": "Oil Well"}, - "man_made/pier": {"icon": "temaki-pier_fixed", "fields": ["name", "surface", "floating", "width", "access", "lit"], "moreFields": ["{highway/footway}", "access", "fishing", "gnis/feature_id", "incline"], "geometry": ["line", "area"], "terms": ["berth", "dock", "jetty", "landing", "promenade", "wharf"], "tags": {"man_made": "pier"}, "name": "Pier"}, - "man_made/pier/floating": {"icon": "temaki-pier_floating", "geometry": ["line", "area"], "terms": ["berth", "dock", "jetty", "landing", "promenade", "wharf"], "tags": {"man_made": "pier", "floating": "yes"}, "name": "Floating Pier"}, - "man_made/pipeline": {"icon": "iD-pipeline-line", "fields": ["operator", "location", "substance", "layer", "diameter"], "geometry": ["line"], "terms": ["oil", "natural gas", "water", "sewer", "sewage"], "tags": {"man_made": "pipeline"}, "name": "Pipeline"}, - "man_made/pipeline/underground": {"icon": "iD-pipeline-line", "geometry": ["line"], "terms": ["oil", "natural gas", "water", "sewer", "sewage"], "tags": {"man_made": "pipeline", "location": "underground"}, "addTags": {"man_made": "pipeline", "location": "underground", "layer": "-1"}, "name": "Underground Pipeline"}, - "man_made/pipeline/valve": {"icon": "temaki-wheel", "geometry": ["vertex"], "fields": ["ref", "operator", "valve", "location", "diameter"], "moreFields": ["colour", "manufacturer", "material"], "terms": ["oil", "natural gas", "water", "sewer", "sewage"], "tags": {"pipeline": "valve"}, "name": "Pipeline Valve"}, - "man_made/pumping_station": {"icon": "temaki-powered_pump", "geometry": ["point", "area"], "moreFields": ["gnis/feature_id"], "tags": {"man_made": "pumping_station"}, "name": "Pumping Station"}, - "man_made/reservoir_covered": {"icon": "maki-water", "fields": ["name", "operator", "capacity_volume", "access_simple", "location", "layer"], "moreFields": ["ref"], "geometry": ["area", "point"], "tags": {"man_made": "reservoir_covered"}, "terms": ["underground reservoir", "water tank"], "name": "Covered Reservoir"}, - "man_made/silo": {"icon": "temaki-silo", "fields": ["crop", "building_area"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "area"], "terms": ["grain", "corn", "wheat"], "tags": {"man_made": "silo"}, "name": "Silo"}, - "man_made/storage_tank": {"icon": "temaki-storage_tank", "fields": ["content", "operator", "material", "building_area", "height", "capacity_volume"], "moreFields": ["layer", "location", "manufacturer"], "geometry": ["area", "point"], "terms": ["water", "oil", "gas", "petrol"], "tags": {"man_made": "storage_tank"}, "name": "Storage Tank"}, - "man_made/storage_tank/water": {"icon": "temaki-storage_tank", "geometry": ["point", "area"], "terms": ["cistern", "water tower"], "tags": {"man_made": "storage_tank", "content": "water"}, "name": "Water Tank"}, - "man_made/street_cabinet": {"icon": "fas-door-closed", "geometry": ["point", "area"], "fields": ["ref", "operator", "street_cabinet", "utility_semi", "height", "colour"], "terms": ["cable tv", "monitoring box", "technical box", "telecommunications", "traffic signal controls"], "tags": {"man_made": "street_cabinet"}, "name": "Street Cabinet"}, - "man_made/surveillance": {"icon": "temaki-security_camera", "geometry": ["point", "vertex"], "fields": ["surveillance", "surveillance/type", "surveillance/zone", "direction"], "terms": ["anpr", "alpr", "camera", "car plate recognition", "cctv", "guard", "license plate recognition", "monitoring", "number plate recognition", "security", "video", "webcam"], "tags": {"man_made": "surveillance"}, "name": "Surveillance"}, - "man_made/surveillance/camera": {"icon": "temaki-security_camera", "geometry": ["point", "vertex"], "fields": ["surveillance", "surveillance/type", "camera/type", "camera/mount", "camera/direction", "surveillance/zone", "contact/webcam"], "moreFields": ["manufacturer"], "terms": ["anpr", "alpr", "camera", "car plate recognition", "cctv", "guard", "license plate recognition", "monitoring", "number plate recognition", "security", "video", "webcam"], "tags": {"man_made": "surveillance", "surveillance:type": "camera"}, "name": "Surveillance Camera"}, - "man_made/survey_point": {"icon": "temaki-benchmark_disk", "fields": ["ref", "ele_node", "inscription"], "geometry": ["point", "vertex"], "terms": ["trig point", "triangulation pillar", "trigonometrical station"], "tags": {"man_made": "survey_point"}, "name": "Survey Point"}, - "man_made/torii": {"icon": "temaki-shinto", "fields": ["height", "material", "colour", "lit"], "moreFields": ["name", "operator", "ref"], "geometry": ["point", "vertex", "line"], "terms": ["Japanese gate", "Shinto shrine"], "tags": {"man_made": "torii"}, "name": "Torii"}, - "man_made/tower": {"icon": "temaki-tower", "fields": ["tower/type", "tower/construction", "height", "building_area"], "moreFields": ["architect", "gnis/feature_id"], "geometry": ["point", "area"], "tags": {"man_made": "tower"}, "name": "Tower"}, - "man_made/tower/bell_tower": {"icon": "fas-bell", "moreFields": ["{man_made/tower}", "opening_hours", "opening_hours/covid19"], "geometry": ["point", "area"], "terms": ["belfry", "bell gable", "campanile", "church tower", "klockstapel"], "tags": {"man_made": "tower", "tower:type": "bell_tower"}, "reference": {"key": "tower:type", "value": "bell_tower"}, "name": "Bell Tower"}, - "man_made/tower/communication": {"icon": "temaki-tower_communication", "fields": ["{man_made/tower}", "communication_multi", "mimics"], "moreFields": ["{man_made/tower}", "mimics"], "geometry": ["point", "area"], "terms": ["antenna", "broadcast tower", "cell phone tower", "cell tower", "communication mast", "communication tower", "guyed tower", "mobile phone tower", "radio mast", "radio tower", "television tower", "transmission mast", "transmission tower", "tv tower"], "tags": {"man_made": "tower", "tower:type": "communication"}, "reference": {"key": "tower:type", "value": "communication"}, "name": "Communication Tower"}, - "man_made/tower/cooling": {"icon": "temaki-cooling_tower", "fields": ["ref", "operator", "material", "building_area", "height"], "moreFields": ["layer"], "geometry": ["area"], "terms": ["power plant"], "tags": {"man_made": "tower", "tower:type": "cooling"}, "reference": {"key": "tower:type", "value": "cooling"}, "name": "Cooling Tower"}, - "man_made/tower/defensive": {"icon": "maki-castle", "geometry": ["point", "area"], "tags": {"man_made": "tower", "tower:type": "defensive"}, "reference": {"key": "tower:type", "value": "defensive"}, "terms": ["Defensive Tower", "Castle Tower"], "name": "Fortified Tower"}, - "man_made/tower/minaret": {"icon": "temaki-domed_tower", "geometry": ["point", "area"], "terms": ["Islam", "mosque", "Muezzin", "Muslim"], "tags": {"man_made": "tower", "tower:type": "minaret"}, "reference": {"key": "tower:type", "value": "minaret"}, "name": "Minaret"}, - "man_made/tower/observation": {"icon": "temaki-tower", "moreFields": ["{man_made/tower}", "opening_hours", "opening_hours/covid19"], "geometry": ["point", "area"], "terms": ["lookout tower", "fire tower"], "tags": {"man_made": "tower", "tower:type": "observation"}, "reference": {"key": "tower:type", "value": "observation"}, "name": "Observation Tower"}, - "man_made/tunnel": {"icon": "temaki-tunnel", "fields": ["name", "tunnel_combo", "layer", "width", "length", "height"], "moreFields": ["gnis/feature_id"], "geometry": ["area"], "tags": {"man_made": "tunnel"}, "addTags": {"man_made": "tunnel", "layer": "-1"}, "removeTags": {"man_made": "tunnel", "layer": "*"}, "reference": {"key": "man_made", "value": "tunnel"}, "terms": ["bore", "dig", "shaft", "underground passage", "underpass"], "name": "Tunnel Area"}, - "man_made/utility_pole": {"icon": "temaki-utility_pole", "fields": ["ref", "operator", "utility_semi", "height", "material"], "moreFields": ["colour", "manufacturer"], "geometry": ["point", "vertex"], "tags": {"man_made": "utility_pole"}, "name": "Utility Pole"}, - "man_made/wastewater_plant": {"icon": "temaki-waste", "fields": ["name", "operator", "address"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website"], "geometry": ["point", "area"], "terms": ["sewage*", "water treatment plant", "reclamation plant"], "tags": {"man_made": "wastewater_plant"}, "name": "Wastewater Plant"}, - "man_made/water_tap": {"icon": "temaki-water_tap", "fields": ["ref", "operator", "drinking_water", "access_simple"], "geometry": ["point", "vertex"], "tags": {"man_made": "water_tap"}, "terms": ["drinking water", "water faucet", "water point", "water source", "water spigot"], "name": "Water Tap"}, - "man_made/water_tower": {"icon": "temaki-water_tower", "fields": ["operator", "height"], "moreFields": ["gnis/feature_id"], "geometry": ["area", "point"], "tags": {"man_made": "water_tower"}, "name": "Water Tower"}, - "man_made/water_well": {"icon": "temaki-well_pump_manual", "fields": ["ref", "operator", "drinking_water", "pump", "access_simple"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "area"], "tags": {"man_made": "water_well"}, "terms": ["aquifer", "drinking water", "water pump", "water point", "water source"], "name": "Water Well"}, - "man_made/water_works": {"icon": "temaki-powered_pump", "fields": ["name", "operator", "address"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "area"], "tags": {"man_made": "water_works"}, "name": "Water Works"}, - "man_made/watermill": {"icon": "maki-watermill", "fields": ["building_area"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "area"], "terms": ["water", "wheel", "mill"], "tags": {"man_made": "watermill"}, "name": "Watermill"}, - "man_made/windmill": {"icon": "maki-windmill", "fields": ["building_area"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "area"], "terms": ["wind", "wheel", "mill"], "tags": {"man_made": "windmill"}, "name": "Windmill"}, - "man_made/windpump": {"icon": "temaki-windpump", "fields": ["ref", "operator", "height", "material", "manufacturer", "lit"], "geometry": ["point"], "terms": ["aerorotor", "water pump", "windmill", "wind pump"], "tags": {"man_made": "windpump"}, "name": "Windpump"}, - "man_made/works": {"icon": "maki-industry", "fields": ["name", "operator", "address", "building_area", "product"], "moreFields": ["email", "fax", "gnis/feature_id", "phone", "website"], "geometry": ["point", "area"], "terms": ["assembly", "build", "brewery", "car", "plant", "plastic", "processing", "manufacture", "refinery"], "tags": {"man_made": "works"}, "name": "Factory"}, - "marker": {"icon": "temaki-silo", "fields": ["ref", "operator", "marker", "utility", "inscription", "colour"], "moreFields": ["height", "location", "manufacturer", "material"], "geometry": ["point"], "terms": ["identifier", "marking", "plate", "pole", "post", "sign"], "tags": {"marker": "*"}, "name": "Marker"}, - "marker/utility": {"icon": "temaki-silo", "fields": ["ref", "operator", "marker", "utility", "{marker}"], "geometry": ["point"], "terms": ["gas line marker", "identifier", "marking", "oil marker", "pipline marker", "plate", "pole", "post", "sign"], "tags": {"marker": "*", "utility": "*"}, "name": "Utility Marker"}, - "marker/utility/power": {"icon": "temaki-silo", "fields": ["ref", "operator", "marker", "{marker}"], "geometry": ["point"], "terms": ["electric line", "identifier", "marking", "plate", "pole", "post", "power cable", "power line", "sign"], "tags": {"marker": "*", "utility": "power"}, "name": "Power Marker"}, - "military/bunker": {"icon": "temaki-bunker", "fields": ["name", "bunker_type", "building_area"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "area"], "tags": {"military": "bunker"}, "addTags": {"building": "bunker", "military": "bunker"}, "terms": ["air force", "army", "base", "fight", "force", "guard", "marine", "navy", "troop", "war"], "name": "Military Bunker"}, - "military/checkpoint": {"icon": "temaki-military_checkpoint", "fields": ["name"], "geometry": ["point", "vertex", "area"], "tags": {"military": "checkpoint"}, "terms": ["air force", "army", "base", "force", "guard", "marine", "navy", "troop", "war"], "name": "Military Checkpoint"}, - "military/nuclear_explosion_site": {"icon": "maki-danger", "fields": ["name"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "vertex", "area"], "tags": {"military": "nuclear_explosion_site"}, "terms": ["atom", "blast", "bomb", "detonat*", "nuke", "site", "test"], "name": "Nuclear Explosion Site"}, - "military/office": {"icon": "temaki-military", "fields": ["name", "building_area"], "moreFields": ["gnis/feature_id", "level"], "geometry": ["point", "area"], "tags": {"military": "office"}, "terms": ["air force", "army", "base", "enlist", "fight", "force", "guard", "marine", "navy", "recruit", "troop", "war"], "name": "Military Office"}, - "military/trench": {"icon": "temaki-trench", "fields": ["name", "trench"], "geometry": ["point", "line"], "tags": {"military": "trench"}, "terms": ["dugout", "firestep", "fox hole", "infantry trench", "war trench"], "name": "Military Trench"}, - "natural/bare_rock": {"geometry": ["area"], "tags": {"natural": "bare_rock"}, "terms": ["rock"], "name": "Bare Rock"}, - "natural/bay": {"icon": "temaki-beach", "geometry": ["point", "line", "area"], "fields": ["name"], "tags": {"natural": "bay"}, "terms": [], "name": "Bay"}, - "natural/beach": {"icon": "temaki-beach", "fields": ["surface"], "geometry": ["point", "area"], "tags": {"natural": "beach"}, "terms": ["shore"], "name": "Beach"}, - "natural/cape": {"icon": "temaki-beach", "fields": ["name", "ele_node", "description"], "geometry": ["point", "vertex"], "tags": {"natural": "cape"}, "terms": ["bay", "coastline", "erosion", "headland", "promontory"], "name": "Cape"}, - "natural/cave_entrance": {"icon": "maki-triangle", "geometry": ["point", "vertex", "area"], "fields": ["name", "ele_node", "access_simple", "direction", "fee", "payment_multi_fee", "charge_fee"], "tags": {"natural": "cave_entrance"}, "terms": ["cavern", "hollow", "grotto", "shelter", "cavity"], "name": "Cave Entrance"}, - "natural/cliff": {"icon": "temaki-cliff_falling_rocks", "fields": ["name", "height"], "geometry": ["point", "vertex", "line", "area"], "tags": {"natural": "cliff"}, "terms": ["crag", "escarpment", "rock face", "scarp"], "name": "Cliff"}, - "natural/coastline": {"icon": "temaki-beach", "geometry": ["line"], "tags": {"natural": "coastline"}, "terms": ["shore"], "name": "Coastline"}, - "natural/fell": {"geometry": ["area"], "tags": {"natural": "fell"}, "terms": [], "name": "Fell"}, - "natural/geyser": {"icon": "maki-water", "fields": ["name", "geyser/height", "ele_node"], "geometry": ["point"], "tags": {"natural": "geyser"}, "terms": ["erupting spring", "geiser", "gieser", "guyser", "hot water", "hydrogeology", "hydrothermal explosion", "steam"], "name": "Geyser"}, - "natural/glacier": {"icon": "temaki-snow", "geometry": ["area"], "tags": {"natural": "glacier"}, "terms": ["ice", "snow"], "name": "Glacier"}, - "natural/grassland": {"icon": "temaki-grass", "geometry": ["area"], "tags": {"natural": "grassland"}, "terms": ["field", "prairie", "savanna"], "name": "Grassland"}, - "natural/heath": {"icon": "temaki-shrub_low", "geometry": ["area"], "tags": {"natural": "heath"}, "terms": [], "name": "Heath"}, - "natural/hot_spring": {"icon": "maki-water", "fields": ["name", "intermittent"], "moreFields": ["gnis/feature_id"], "geometry": ["point"], "tags": {"natural": "hot_spring"}, "terms": ["geothermal spring", "thermal pool"], "name": "Hot Spring"}, - "natural/mud": {"geometry": ["area"], "tags": {"natural": "mud"}, "terms": ["wetland"], "name": "Mud"}, - "natural/peak": {"icon": "maki-mountain", "fields": ["name", "ele_node"], "geometry": ["point", "vertex"], "tags": {"natural": "peak"}, "terms": ["acme", "aiguille", "alp", "climax", "crest", "crown", "hill", "mount", "mountain", "pinnacle", "summit", "tip", "top"], "name": "Peak"}, - "natural/reef": {"icon": "temaki-beach", "geometry": ["area", "point"], "tags": {"natural": "reef"}, "terms": ["barrier", "coral", "ocean", "sand", "shoal"], "name": "Reef"}, - "natural/ridge": {"icon": "temaki-mountain_range", "geometry": ["line"], "tags": {"natural": "ridge"}, "terms": ["crest"], "name": "Ridge"}, - "natural/rock": {"icon": "temaki-boulder2", "fields": ["name"], "geometry": ["point", "area"], "tags": {"natural": "rock"}, "terms": ["boulder", "stone", "rock"], "name": "Attached Rock / Boulder"}, - "natural/saddle": {"icon": "temaki-saddle", "fields": ["ele_node"], "geometry": ["point", "vertex"], "tags": {"natural": "saddle"}, "terms": ["pass", "mountain pass", "top"], "name": "Saddle"}, - "natural/sand": {"geometry": ["area"], "tags": {"natural": "sand"}, "terms": ["desert"], "name": "Sand"}, - "natural/scree": {"geometry": ["area"], "tags": {"natural": "scree"}, "terms": ["loose rocks"], "name": "Scree"}, - "natural/scrub": {"icon": "temaki-shrub", "geometry": ["area"], "tags": {"natural": "scrub"}, "terms": ["bush", "shrubs"], "name": "Scrub"}, - "natural/shingle": {"geometry": ["area"], "tags": {"natural": "shingle"}, "terms": ["beach", "gravel", "pebbles", "riverbed", "rounded rock fragments"], "name": "Shingle"}, - "natural/shrub": {"icon": "temaki-shrub", "fields": ["height"], "moreFields": ["species/wikidata"], "geometry": ["point", "vertex"], "tags": {"natural": "shrub"}, "terms": ["bush", "scrub"], "name": "Shrub"}, - "natural/spring": {"icon": "maki-water", "fields": ["name", "drinking_water", "intermittent"], "geometry": ["point", "vertex"], "tags": {"natural": "spring"}, "terms": ["aquifer", "hydro", "seep", "water source"], "name": "Spring"}, - "natural/stone": {"icon": "temaki-boulder1", "fields": ["name"], "geometry": ["point", "area"], "tags": {"natural": "stone"}, "terms": ["boulder", "stone", "rock"], "name": "Unattached Stone / Boulder"}, - "natural/tree_row": {"icon": "temaki-tree_row", "fields": ["leaf_type", "leaf_cycle", "denotation"], "geometry": ["line"], "tags": {"natural": "tree_row"}, "terms": [], "name": "Tree Row"}, - "natural/tree": {"icon": "maki-park", "fields": ["leaf_type_singular", "leaf_cycle_singular", "denotation", "height", "diameter"], "moreFields": ["circumference", "species/wikidata"], "geometry": ["point", "vertex"], "tags": {"natural": "tree"}, "terms": [], "name": "Tree"}, - "natural/valley": {"icon": "temaki-valley", "fields": ["name", "ele_node", "description"], "geometry": ["vertex", "point", "line"], "tags": {"natural": "valley"}, "terms": ["canyon", "dale", "dell", "dene", "depression", "glen", "gorge", "gully", "gulley", "gultch", "hollow", "ravine", "rift", "vale"], "name": "Valley"}, - "natural/volcano": {"icon": "maki-volcano", "fields": ["name", "ele_node", "volcano/status", "volcano/type"], "geometry": ["point", "vertex"], "tags": {"natural": "volcano"}, "terms": ["mountain", "crater"], "name": "Volcano"}, - "natural/water": {"icon": "maki-water", "fields": ["name", "water", "intermittent"], "moreFields": ["fishing", "gnis/feature_id", "salt", "tidal"], "geometry": ["area"], "tags": {"natural": "water"}, "name": "Water"}, - "natural/water/basin": {"icon": "maki-water", "fields": ["name", "basin", "intermittent_yes"], "geometry": ["area"], "tags": {"natural": "water", "water": "basin"}, "reference": {"key": "water", "value": "basin"}, "terms": ["detention", "drain", "overflow", "rain", "retention"], "name": "Basin"}, - "natural/water/canal": {"icon": "iD-waterway-canal", "fields": ["{natural/water}", "salt"], "geometry": ["area"], "tags": {"natural": "water", "water": "canal"}, "reference": {"key": "water", "value": "canal"}, "name": "Canal Area"}, - "natural/water/lake": {"icon": "maki-water", "fields": ["{natural/water}", "salt", "tidal"], "geometry": ["area"], "tags": {"natural": "water", "water": "lake"}, "reference": {"key": "water", "value": "lake"}, "terms": ["lakelet", "loch", "mere"], "name": "Lake"}, - "natural/water/moat": {"icon": "maki-water", "fields": ["{natural/water}", "salt"], "geometry": ["area"], "tags": {"natural": "water", "water": "moat"}, "name": "Moat"}, - "natural/water/pond": {"icon": "maki-water", "fields": ["{natural/water}", "salt"], "geometry": ["area"], "tags": {"natural": "water", "water": "pond"}, "reference": {"key": "water", "value": "pond"}, "terms": ["lakelet", "millpond", "tarn", "pool", "mere"], "name": "Pond"}, - "natural/water/reservoir": {"icon": "maki-water", "geometry": ["area"], "tags": {"natural": "water", "water": "reservoir"}, "reference": {"key": "water", "value": "reservoir"}, "name": "Reservoir"}, - "natural/water/river": {"icon": "iD-waterway-river", "fields": ["{natural/water}", "tidal"], "geometry": ["area"], "tags": {"natural": "water", "water": "river"}, "reference": {"key": "water", "value": "river"}, "terms": ["beck", "branch", "brook", "course", "creek", "estuary", "rill", "riverbank", "rivulet", "run", "runnel", "stream", "tributary", "watercourse"], "name": "River Area"}, - "natural/water/stream": {"icon": "iD-waterway-stream", "fields": ["{natural/water}"], "geometry": ["area"], "tags": {"natural": "water", "water": "stream"}, "reference": {"key": "water", "value": "stream"}, "terms": ["beck", "branch", "brook", "burn", "course", "creek", "current", "drift", "flood", "flow", "freshet", "race", "rill", "rindle", "rivulet", "run", "runnel", "rush", "spate", "spritz", "surge", "tide", "torrent", "tributary", "watercourse"], "name": "Stream Area"}, - "natural/water/wastewater": {"icon": "temaki-waste", "geometry": ["area"], "tags": {"natural": "water", "water": "wastewater"}, "reference": {"key": "water", "value": "wastewater"}, "terms": ["excrement", "shit", "sewage", "wastewater", "Settling Basin", "Clarifier Basin"], "name": "Wastewater Basin"}, - "natural/wetland": {"icon": "maki-wetland", "fields": ["wetland", "salt", "tidal"], "geometry": ["point", "area"], "tags": {"natural": "wetland"}, "terms": ["bog", "fen", "marsh", "mire", "moor", "muskeg", "peatland", "quagmire", "reedbed", "saltmarsh", "swamp", "tidalflat", "wet meadow"], "name": "Wetland"}, - "natural/wood": {"icon": "maki-park-alt1", "fields": ["name", "leaf_type", "leaf_cycle"], "geometry": ["area", "point"], "tags": {"natural": "wood"}, "terms": ["boreal", "forest", "forrest", "taiga", "tree", "trees", "woodlands", "woods"], "name": "Natural Wood"}, - "network/type/node_network": {"fields": ["name", "rwn_ref", "expected_rwn_route_relations", "rcn_ref", "expected_rcn_route_relations"], "geometry": ["vertex"], "tags": {"network:type": "node_network"}, "terms": ["node network", "rcn", "rwn"], "countryCodes": ["be", "de", "lu", "nl"], "matchScore": 0.2, "name": "Recreational Network Node"}, - "noexit/yes": {"icon": "maki-barrier", "geometry": ["vertex"], "terms": ["no exit", "road end", "dead end"], "tags": {"noexit": "yes"}, "reference": {"key": "noexit", "value": "*"}, "name": "No Exit"}, - "office": {"icon": "maki-suitcase", "fields": ["name", "office", "address", "building_area", "opening_hours", "opening_hours/covid19", "phone", "website"], "moreFields": ["air_conditioning", "baby_feeding", "building/levels_building", "ele", "email", "fax", "gnis/feature_id", "height_building", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "not/name", "operator", "ref/vatin", "smoking", "wheelchair"], "geometry": ["point", "vertex", "area"], "tags": {"office": "*"}, "terms": [], "name": "Office"}, - "office/administrative": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "administrative"}, "searchable": false, "name": "Administrative Office"}, - "office/physician": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "physician"}, "searchable": false, "name": "Physician"}, - "office/travel_agent": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "travel_agent"}, "reference": {"key": "shop", "value": "travel_agency"}, "name": "Travel Agency", "searchable": false}, - "office/accountant": {"icon": "temaki-accounting", "geometry": ["point", "area"], "tags": {"office": "accountant"}, "terms": [], "name": "Accountant Office"}, - "office/adoption_agency": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "adoption_agency"}, "terms": [], "name": "Adoption Agency"}, - "office/advertising_agency": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "advertising_agency"}, "terms": ["ad", "ad agency", "advert agency", "advertising", "marketing"], "name": "Advertising Agency"}, - "office/architect": {"icon": "fas-drafting-compass", "geometry": ["point", "area"], "tags": {"office": "architect"}, "terms": [], "name": "Architect Office"}, - "office/association": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "association"}, "terms": ["association", "non-profit", "nonprofit", "organization", "society"], "name": "Nonprofit Organization Office"}, - "office/bail_bond_agent": {"countryCodes": ["us", "ph"], "icon": "maki-bank", "moreFields": ["{office}", "currency_multi", "payment_multi"], "geometry": ["point", "area"], "tags": {"office": "bail_bond_agent"}, "terms": ["bail bond dealer", "bail bond man", "bail bondsman", "bail bondsperson"], "name": "Bail Bond Agent"}, - "office/charity": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "charity"}, "terms": ["charitable organization"], "name": "Charity Office"}, - "office/company": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "company"}, "terms": [], "name": "Corporate Office"}, - "office/consulting": {"icon": "maki-suitcase", "fields": ["name", "consulting", "{office}"], "geometry": ["point", "area"], "tags": {"office": "consulting"}, "terms": ["consulting firm office"], "name": "Consultancy Office"}, - "office/coworking": {"icon": "maki-suitcase", "fields": ["{office}", "internet_access"], "moreFields": ["internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "terms": ["coworking", "office"], "tags": {"office": "coworking"}, "reference": {"key": "amenity", "value": "coworking_space"}, "name": "Coworking Space"}, - "office/diplomatic": {"icon": "temaki-embassy", "fields": ["name", "diplomatic", "country", "target", "diplomatic/services", "{office}"], "geometry": ["point", "area"], "tags": {"office": "diplomatic"}, "terms": [], "name": "Diplomatic Office"}, - "office/diplomatic/consulate": {"icon": "temaki-embassy", "fields": ["name", "consulate", "{office/diplomatic}"], "geometry": ["point", "area"], "tags": {"office": "diplomatic", "diplomatic": "consulate"}, "reference": {"key": "diplomatic", "value": "consulate"}, "terms": [], "name": "Consulate"}, - "office/diplomatic/embassy": {"icon": "temaki-embassy", "fields": ["name", "embassy", "{office/diplomatic}"], "geometry": ["point", "area"], "tags": {"office": "diplomatic", "diplomatic": "embassy"}, "reference": {"key": "diplomatic", "value": "embassy"}, "terms": [], "name": "Embassy"}, - "office/diplomatic/liaison": {"icon": "temaki-embassy", "fields": ["name", "liaison", "{office/diplomatic}"], "geometry": ["point", "area"], "tags": {"office": "diplomatic", "diplomatic": "liaison"}, "reference": {"key": "diplomatic", "value": "liaison"}, "terms": [], "name": "Liaison Office"}, - "office/educational_institution": {"icon": "maki-school", "geometry": ["point", "area"], "tags": {"office": "educational_institution"}, "terms": [], "name": "Educational Institution"}, - "office/employment_agency": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "employment_agency"}, "terms": ["job"], "name": "Employment Agency"}, - "office/energy_supplier": {"icon": "temaki-briefcase_bolt", "geometry": ["point", "area"], "tags": {"office": "energy_supplier"}, "terms": ["electricity", "energy company", "energy utility", "gas utility"], "name": "Energy Supplier Office"}, - "office/estate_agent": {"icon": "temaki-real_estate_agency", "moreFields": ["brand", "{office}"], "geometry": ["point", "area"], "tags": {"office": "estate_agent"}, "terms": ["real estate"], "name": "Real Estate Office"}, - "office/financial_advisor": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "financial_advisor"}, "terms": ["401k", "inheritance", "savings", "stocks", "retirement", "wealth management"], "name": "Financial Advisor"}, - "office/financial": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "financial"}, "terms": [], "name": "Financial Office"}, - "office/forestry": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "forestry"}, "terms": ["forest", "ranger"], "name": "Forestry Office"}, - "office/foundation": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "foundation"}, "terms": [], "name": "Foundation Office"}, - "office/government": {"icon": "temaki-town_hall", "fields": ["name", "government", "{office}"], "geometry": ["point", "area"], "tags": {"office": "government"}, "terms": [], "name": "Government Office"}, - "office/government/prosecutor": {"icon": "maki-suitcase", "fields": ["{office}", "operator"], "geometry": ["point", "area"], "terms": ["attorney general", "district attorney", "prosecution"], "tags": {"office": "government", "government": "prosecutor"}, "reference": {"key": "government", "value": "prosecutor"}, "name": "Public Prosecutor's Office"}, - "office/government/register_office": {"icon": "temaki-town_hall", "fields": ["{office}", "operator"], "geometry": ["point", "area"], "terms": ["clerk", "marriage", "death", "birth", "certificate"], "tags": {"office": "government", "government": "register_office"}, "reference": {"key": "government", "value": "register_office"}, "name": "Register Office"}, - "office/government/tax": {"icon": "temaki-town_hall", "fields": ["{office}", "operator"], "geometry": ["point", "area"], "terms": ["fiscal authorities", "revenue office", "tax office"], "tags": {"office": "government", "government": "tax"}, "reference": {"key": "government", "value": "tax"}, "name": "Tax and Revenue Office"}, - "office/guide": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "guide"}, "terms": ["dive guide", "mountain guide", "tour guide"], "name": "Tour Guide Office"}, - "office/insurance": {"icon": "temaki-briefcase_shield", "moreFields": ["brand", "{office}"], "geometry": ["point", "area"], "tags": {"office": "insurance"}, "terms": [], "name": "Insurance Office"}, - "office/it": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "it"}, "terms": ["computer", "information", "software", "technology"], "name": "Information Technology Office"}, - "office/lawyer": {"icon": "fas-balance-scale", "geometry": ["point", "area"], "tags": {"office": "lawyer"}, "terms": ["advocate", "attorney", "barrister", "counsellor", "counselor", "defender", "lawyer", "legal", "prosecutor"], "name": "Law Office"}, - "office/lawyer/notary": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "lawyer", "lawyer": "notary"}, "reference": {"key": "office", "value": "notary"}, "searchable": false, "name": "Notary Office"}, - "office/moving_company": {"icon": "fas-people-carry", "geometry": ["point", "area"], "tags": {"office": "moving_company"}, "terms": ["relocation"], "name": "Moving Company Office"}, - "office/newspaper": {"icon": "fas-newspaper", "geometry": ["point", "area"], "tags": {"office": "newspaper"}, "terms": [], "name": "Newspaper Office"}, - "office/ngo": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "ngo"}, "terms": ["ngo", "non government", "non-government", "organization", "organisation"], "name": "NGO Office"}, - "office/notary": {"icon": "fas-stamp", "geometry": ["point", "area"], "tags": {"office": "notary"}, "terms": ["clerk", "deeds", "estate", "signature", "wills"], "name": "Notary Office"}, - "office/political_party": {"icon": "maki-town-hall", "geometry": ["point", "area"], "tags": {"office": "political_party"}, "terms": [], "name": "Political Party Office"}, - "office/private_investigator": {"icon": "fas-user-secret", "geometry": ["point", "area"], "tags": {"office": "private_investigator"}, "terms": ["PI", "private eye", "private detective"], "name": "Private Investigator Office"}, - "office/quango": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "quango"}, "terms": ["ngo", "non government", "non-government", "organization", "organisation", "quasi autonomous", "quasi-autonomous"], "name": "Quasi-NGO Office"}, - "office/religion": {"icon": "maki-suitcase", "fields": ["{office}", "religion", "denomination"], "geometry": ["point", "area"], "tags": {"office": "religion"}, "terms": [], "name": "Religious Office"}, - "office/research": {"icon": "fas-flask", "geometry": ["point", "area"], "tags": {"office": "research"}, "terms": ["R and D", "research and development", "research lab", "r&d", "rnd"], "name": "Research Office"}, - "office/surveyor": {"icon": "fas-vest", "geometry": ["point", "area"], "tags": {"office": "surveyor"}, "terms": [], "name": "Surveyor Office"}, - "office/tax_advisor": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "tax_advisor"}, "terms": ["tax", "tax consultant"], "name": "Tax Advisor Office"}, - "office/telecommunication": {"icon": "maki-telephone", "geometry": ["point", "area"], "tags": {"office": "telecommunication"}, "terms": ["communication", "internet service provider", "isp", "network", "telephone", "voice"], "name": "Telecom Office"}, - "office/therapist": {"icon": "maki-suitcase", "geometry": ["point", "area"], "tags": {"office": "therapist"}, "terms": ["therapy"], "name": "Therapist Office"}, - "office/water_utility": {"icon": "maki-suitcase", "fields": ["{office}", "operator"], "geometry": ["point", "area"], "tags": {"office": "water_utility"}, "terms": ["water board", "utility"], "name": "Water Utility Office"}, - "piste/downhill": {"icon": "fas-skiing", "fields": ["name", "piste/type", "piste/difficulty_downhill", "piste/grooming_downhill", "oneway", "lit"], "geometry": ["line", "area"], "tags": {"piste:type": "downhill"}, "terms": ["alpine skiing", "piste", "ski hill", "skiing", "snowboarding"], "name": "Downhill Ski Run"}, - "piste/downhill/halfpipe": {"icon": "fas-snowboarding", "geometry": ["line", "area"], "tags": {"piste:type": "downhill", "man_made": "piste:halfpipe"}, "reference": {"key": "man_made", "value": "piste:halfpipe"}, "terms": ["ski", "alpine", "halfpipe", "half pipe", "snowboard", "downhill", "piste"], "name": "Snowsports Half-Pipe"}, - "piste/hike": {"icon": "temaki-snow_shoeing", "fields": ["name", "piste/type", "piste/difficulty", "piste/grooming_hike", "oneway", "lit"], "geometry": ["line", "area"], "tags": {"piste:type": "hike"}, "terms": ["hike", "nordic walking", "piste", "show shoeing", "snowshoe", "snowshoeing"], "name": "Snowshoeing / Winter Hiking Trail"}, - "piste/ice_skate": {"icon": "fas-skating", "fields": ["name", "piste/type", "sport_ice", "oneway", "lit"], "geometry": ["line", "area"], "tags": {"piste:type": "ice_skate"}, "terms": ["ice rink", "ice track", "iceskating", "piste", "skates"], "name": "Ice Skating Trail"}, - "piste/nordic": {"icon": "fas-skiing-nordic", "fields": ["name", "piste/type", "piste/difficulty_nordic", "piste/grooming_nordic", "oneway", "lit"], "geometry": ["line", "area"], "tags": {"piste:type": "nordic"}, "terms": ["crosscountry", "nordic skiing", "piste", "skate skiing", "skiing", "xc"], "name": "Cross-Country Ski Trail"}, - "piste/piste": {"icon": "fas-skiing", "fields": ["name", "piste/type", "piste/difficulty", "piste/grooming", "oneway", "lit"], "geometry": ["line", "area"], "tags": {"piste:type": "*"}, "terms": ["ski", "nordic", "crosscountry", "downhill", "alpine", "snowboard", "skitour", "ski touring", "sled", "luge", "sleigh", "sledge", "ski-joring", "husky", "horse", "winter hiking", "snowshoe", "snowshoeing", "ice", "skating"], "name": "Snowsports Trail / Piste"}, - "piste/skitour": {"icon": "fas-skiing-nordic", "fields": ["name", "piste/type", "piste/difficulty_skitour", "piste/grooming", "oneway", "lit"], "geometry": ["line", "area"], "tags": {"piste:type": "skitour"}, "terms": ["ski", "skitour", "crosscountry", "ski touring", "piste"], "name": "Ski Touring Trail"}, - "piste/sled": {"icon": "temaki-sledding", "fields": ["name", "piste/type", "piste/difficulty", "piste/grooming", "oneway", "lit"], "geometry": ["line", "area"], "tags": {"piste:type": "sled"}, "terms": ["bobsled", "luge", "piste", "skeleton", "sledge", "sleigh", "toboggan"], "name": "Sled Run"}, - "piste/sleigh": {"icon": "fas-sleigh", "fields": ["name", "piste/type", "piste/difficulty", "piste/grooming", "oneway", "lit"], "geometry": ["line", "area"], "tags": {"piste:type": "sleigh"}, "terms": ["dogsledding", "husky", "horse", "piste", "sled", "sledge", "ski-joring", "skijoring"], "name": "Sleigh Trail"}, - "place/farm": {"icon": "maki-farm", "geometry": ["point", "area"], "tags": {"place": "farm"}, "name": "Farm", "searchable": false}, - "place/city_block": {"icon": "maki-triangle-stroked", "moreFields": ["{place}", "website"], "geometry": ["point", "area"], "tags": {"place": "city_block"}, "name": "City Block"}, - "place/city": {"icon": "maki-city", "fields": ["name", "population"], "moreFields": ["{place}", "website"], "geometry": ["point", "area"], "tags": {"place": "city"}, "name": "City"}, - "place/hamlet": {"icon": "maki-triangle-stroked", "fields": ["name", "population"], "moreFields": ["{place}", "website"], "geometry": ["point", "area"], "tags": {"place": "hamlet"}, "name": "Hamlet"}, - "place/island": {"icon": "temaki-island_trees_building", "geometry": ["point", "area"], "terms": ["archipelago", "atoll", "bar", "cay", "isle", "islet", "key", "reef"], "tags": {"place": "island"}, "name": "Island"}, - "place/islet": {"icon": "temaki-islet_tree", "geometry": ["point", "area"], "terms": ["archipelago", "atoll", "bar", "cay", "isle", "islet", "key", "reef"], "tags": {"place": "islet"}, "name": "Islet"}, - "place/isolated_dwelling": {"icon": "maki-home", "geometry": ["point", "area"], "tags": {"place": "isolated_dwelling"}, "name": "Isolated Dwelling"}, - "place/locality": {"icon": "maki-triangle-stroked", "moreFields": ["{place}", "website"], "geometry": ["point", "area"], "tags": {"place": "locality"}, "name": "Locality"}, - "place/neighbourhood": {"icon": "maki-triangle-stroked", "fields": ["name", "population"], "moreFields": ["gnis/feature_id", "website"], "geometry": ["point", "area"], "tags": {"place": "neighbourhood"}, "terms": ["neighbourhood"], "name": "Neighborhood"}, - "place/plot": {"icon": "maki-triangle-stroked", "geometry": ["point", "area"], "tags": {"place": "plot"}, "terms": ["tract", "land", "lot", "parcel"], "name": "Plot"}, - "place/quarter": {"icon": "maki-triangle-stroked", "fields": ["name", "population"], "moreFields": ["{place}", "website"], "geometry": ["point", "area"], "tags": {"place": "quarter"}, "terms": ["boro", "borough", "quarter"], "name": "Sub-Borough / Quarter"}, - "place/square": {"icon": "temaki-pedestrian", "moreFields": ["{place}", "website"], "geometry": ["point", "area"], "tags": {"place": "square"}, "name": "Square"}, - "place/suburb": {"icon": "maki-triangle-stroked", "fields": ["name", "population"], "moreFields": ["{place}", "website"], "geometry": ["point", "area"], "tags": {"place": "suburb"}, "terms": ["boro", "borough", "quarter"], "name": "Borough / Suburb"}, - "place/town": {"icon": "maki-town", "fields": ["name", "population"], "moreFields": ["{place}", "website"], "geometry": ["point", "area"], "tags": {"place": "town"}, "name": "Town"}, - "place/village": {"icon": "maki-village", "fields": ["name", "population"], "moreFields": ["{place}", "website"], "geometry": ["point", "area"], "tags": {"place": "village"}, "name": "Village"}, - "playground/balance_beam": {"icon": "maki-playground", "geometry": ["point", "line"], "tags": {"playground": "balancebeam"}, "name": "Play Balance Beam"}, - "playground/basket_spinner": {"icon": "maki-playground", "geometry": ["point"], "terms": ["basket rotator"], "tags": {"playground": "basketrotator"}, "name": "Basket Spinner"}, - "playground/basket_swing": {"icon": "maki-playground", "geometry": ["point"], "tags": {"playground": "basketswing"}, "name": "Basket Swing"}, - "playground/climbing_frame": {"icon": "maki-playground", "geometry": ["point", "area"], "tags": {"playground": "climbingframe"}, "terms": ["jungle gym", "monkey bars"], "name": "Play Climbing Frame"}, - "playground/cushion": {"icon": "maki-playground", "geometry": ["point", "area"], "tags": {"playground": "cushion"}, "name": "Bouncy Cushion"}, - "playground/horizontal_bar": {"icon": "maki-pitch", "geometry": ["point"], "terms": ["chin-up bar", "high bar", "pull-up bar"], "tags": {"playground": "horizontal_bar"}, "name": "Play Horizontal Bar"}, - "playground/rocker": {"icon": "maki-playground", "geometry": ["point"], "tags": {"playground": "springy"}, "terms": ["spring rocker", "springy rocker"], "name": "Spring Rider"}, - "playground/roundabout": {"icon": "maki-stadium", "fields": ["{playground}", "bench"], "geometry": ["point", "area"], "tags": {"playground": "roundabout"}, "terms": ["merry-go-round"], "name": "Play Roundabout"}, - "playground/sandpit": {"icon": "maki-playground", "geometry": ["point", "area"], "tags": {"playground": "sandpit"}, "terms": ["sandbox", "sandpit"], "name": "Play Sandbox"}, - "playground/seesaw": {"icon": "maki-playground", "geometry": ["point"], "tags": {"playground": "seesaw"}, "name": "Seesaw"}, - "playground/slide": {"icon": "temaki-slide", "geometry": ["point", "line"], "tags": {"playground": "slide"}, "name": "Slide"}, - "playground/structure": {"icon": "temaki-play_structure", "geometry": ["point", "area"], "tags": {"playground": "structure"}, "terms": ["jungle gym"], "name": "Play Structure"}, - "playground/swing": {"icon": "maki-playground", "fields": ["capacity", "baby_seat", "wheelchair", "blind"], "geometry": ["point"], "tags": {"playground": "swing"}, "name": "Swing"}, - "playground/zipwire": {"icon": "maki-playground", "geometry": ["point", "line"], "tags": {"playground": "zipwire"}, "terms": ["zipline", "zip wire", "zipwire"], "name": "Play Zip Line"}, - "point": {"fields": ["name"], "geometry": ["vertex", "point"], "tags": {}, "terms": ["node", "other", "vertex", "vertices"], "name": "Point", "matchScore": 0.1}, - "polling_station": {"icon": "fas-vote-yea", "fields": ["name", "ref", "operator", "address", "opening_hours", "opening_hours/covid19", "building_area", "phone", "website"], "moreFields": ["air_conditioning", "email", "fax", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "wheelchair"], "geometry": ["point", "area"], "terms": ["ballot box", "ballot drop", "democracy", "elections", "polling place", "vote", "voting booth", "voting machine"], "tags": {"polling_station": "*"}, "matchScore": 0.75, "name": "Temporary Polling Place"}, - "power/cable": {"icon": "temaki-cable", "fields": ["name", "ref", "operator", "voltage", "location", "layer"], "geometry": ["line"], "tags": {"power": "cable"}, "searchable": false, "name": "Power Cable"}, - "power/cable/underground": {"icon": "temaki-cable", "geometry": ["line"], "tags": {"power": "cable", "location": "underground"}, "addTags": {"power": "cable", "location": "underground", "layer": "-1"}, "name": "Underground Power Cable"}, - "power/generator": {"icon": "temaki-power", "fields": ["ref", "operator", "generator/source", "generator/method", "generator/type", "generator/output/electricity"], "moreFields": ["colour", "height", "level", "manufacturer", "material"], "geometry": ["point", "vertex", "area"], "terms": ["hydro", "solar", "turbine", "wind"], "tags": {"power": "generator"}, "name": "Power Generator"}, - "power/generator/method/photovoltaic": {"icon": "fas-solar-panel", "fields": ["ref", "operator", "generator/output/electricity"], "moreFields": ["{power/generator}"], "geometry": ["area", "point", "vertex"], "tags": {"power": "generator", "generator:method": "photovoltaic"}, "addTags": {"power": "generator", "generator:source": "solar", "generator:method": "photovoltaic", "generator:type": "solar_photovoltaic_panel", "generator:output:electricity": "*"}, "reference": {"key": "generator:method", "value": "photovoltaic"}, "terms": ["photovoltaic module", "PV module", "sunlight"], "name": "Solar Panel"}, - "power/generator/source/hydro": {"icon": "temaki-power", "fields": ["ref", "operator", "generator/method", "generator/type", "generator/output/electricity"], "moreFields": ["{power/generator}"], "geometry": ["point", "vertex", "area"], "tags": {"power": "generator", "generator:source": "hydro"}, "addTags": {"power": "generator", "generator:source": "hydro", "generator:output:electricity": "yes"}, "reference": {"key": "generator:source", "value": "hydro"}, "terms": ["dam", "generator", "francis turbine", "hydroelectricity", "kaplan turbine", "pelton turbine"], "name": "Water Turbine"}, - "power/generator/source/nuclear": {"icon": "temaki-radiation", "fields": ["ref", "operator", "generator/method", "generator/type", "generator/output/electricity"], "moreFields": ["{power/generator}"], "geometry": ["point", "vertex", "area"], "tags": {"power": "generator", "generator:source": "nuclear", "generator:method": "fission"}, "reference": {"key": "generator:source", "value": "nuclear"}, "terms": ["fission", "generator", "nuclear", "nuke", "reactor"], "name": "Nuclear Reactor"}, - "power/generator/source/wind": {"icon": "temaki-wind_turbine", "fields": ["ref", "operator", "generator/type", "generator/output/electricity"], "moreFields": ["{power/generator}"], "geometry": ["point", "vertex", "area"], "tags": {"power": "generator", "generator:source": "wind", "generator:method": "wind_turbine"}, "reference": {"key": "generator:source", "value": "wind"}, "terms": ["generator", "turbine", "windmill", "wind"], "name": "Wind Turbine"}, - "power/line": {"icon": "temaki-power_tower", "fields": ["name", "operator", "voltage", "ref", "layer"], "geometry": ["line"], "terms": ["electric power transmission line", "high voltage line", "high tension line"], "tags": {"power": "line"}, "name": "Power Line"}, - "power/minor_line": {"icon": "iD-power-line", "fields": ["name", "operator", "voltage", "ref", "layer"], "geometry": ["line"], "tags": {"power": "minor_line"}, "name": "Minor Power Line"}, - "power/plant": {"icon": "maki-industry", "fields": ["name", "operator", "address", "plant/source", "plant/method", "plant/output/electricity", "start_date"], "moreFields": ["gnis/feature_id"], "geometry": ["area"], "tags": {"power": "plant"}, "addTags": {"power": "plant", "landuse": "industrial"}, "terms": ["coal", "gas", "generat*", "hydro", "nuclear", "power", "station"], "name": "Power Station Grounds"}, - "power/plant/source/coal": {"icon": "maki-industry", "fields": ["name", "operator", "address", "plant/output/electricity", "start_date"], "moreFields": ["{power/plant}"], "geometry": ["area"], "tags": {"power": "plant", "plant:source": "coal"}, "addTags": {"power": "plant", "landuse": "industrial", "plant:source": "coal", "plant:method": "combustion", "plant:output:electricity": "*"}, "reference": {"key": "plant:source", "value": "coal"}, "terms": ["carbon", "combustion", "fossil fuel", "coalfired", "power station"], "name": "Coal-Fired Power Plant"}, - "power/plant/source/gas": {"icon": "temaki-gas", "fields": ["name", "operator", "address", "plant/output/electricity", "start_date"], "moreFields": ["{power/plant}"], "geometry": ["area"], "tags": {"power": "plant", "plant:source": "gas"}, "addTags": {"power": "plant", "landuse": "industrial", "plant:source": "gas", "plant:method": "combustion", "plant:output:electricity": "*"}, "reference": {"key": "plant:source", "value": "gas"}, "terms": ["carbon", "combustion", "fossil fuel", "gasfired", "power station", "natural gas"], "name": "Gas-Fired Power Plant"}, - "power/plant/source/hydro": {"icon": "maki-dam", "fields": ["{power/plant}"], "moreFields": ["{power/plant}"], "geometry": ["area"], "tags": {"power": "plant", "plant:source": "hydro"}, "addTags": {"power": "plant", "landuse": "industrial", "plant:source": "hydro", "plant:output:electricity": "*"}, "reference": {"key": "plant:source", "value": "hydro"}, "terms": ["dam", "power plant", "run-of-the-river", "tidal", "water turbine"], "name": "Hydroelectric Power Station"}, - "power/plant/source/nuclear": {"icon": "temaki-radiation", "fields": ["{power/plant}"], "moreFields": ["{power/plant}"], "geometry": ["area"], "tags": {"power": "plant", "plant:source": "nuclear"}, "addTags": {"power": "plant", "landuse": "industrial", "plant:source": "nuclear", "plant:method": "fission", "plant:output:electricity": "*"}, "reference": {"key": "plant:source", "value": "nuclear"}, "terms": ["atomic", "fission", "power station", "nuclear reactor"], "name": "Nuclear Power Plant"}, - "power/plant/source/solar": {"icon": "fas-solar-panel", "fields": ["{power/plant}"], "moreFields": ["{power/plant}"], "geometry": ["area"], "tags": {"power": "plant", "plant:source": "solar"}, "addTags": {"power": "plant", "plant:source": "solar", "plant:method": "photovoltaic", "plant:output:electricity": "*"}, "removeTags": {"power": "plant", "plant:method": "*", "plant:source": "solar", "plant:output:electricity": "*", "landuse": "industrial"}, "reference": {"key": "plant:method", "value": "photovoltaic"}, "terms": ["photovoltaic power station", "solar panels", "solar park", "utility-scale solar"], "name": "Solar Farm"}, - "power/plant/source/wind": {"icon": "temaki-wind_turbine", "fields": ["name", "operator", "address", "plant/output/electricity", "start_date"], "moreFields": ["{power/plant}"], "geometry": ["area"], "tags": {"power": "plant", "plant:source": "wind"}, "addTags": {"power": "plant", "plant:source": "wind", "plant:method": "wind_turbine", "plant:output:electricity": "*"}, "removeTags": {"power": "plant", "plant:method": "*", "plant:source": "wind", "plant:output:electricity": "*", "landuse": "industrial"}, "reference": {"key": "plant:source", "value": "wind"}, "terms": ["offshore wind", "wind park", "wind power plant", "wind power station", "wind turbines", "windmills"], "name": "Wind Farm"}, - "power/pole": {"icon": "temaki-power_pole", "fields": ["ref", "operator", "height", "material", "line_attachment"], "moreFields": ["line_management", "manufacturer"], "geometry": ["point", "vertex"], "tags": {"power": "pole"}, "name": "Power Pole"}, - "power/substation": {"icon": "temaki-power", "fields": ["substation", "operator", "building", "ref"], "moreFields": ["gnis/feature_id"], "geometry": ["area", "point"], "tags": {"power": "substation"}, "name": "Substation"}, - "power/switch": {"icon": "temaki-power_switch", "fields": ["switch", "operator", "location", "cables", "voltage", "ref"], "geometry": ["point", "vertex"], "tags": {"power": "switch"}, "name": "Power Switch"}, - "power/tower": {"icon": "temaki-power_tower", "fields": ["ref", "operator", "design", "height", "material", "line_attachment"], "moreFields": ["line_management", "manufacturer"], "geometry": ["point", "vertex"], "terms": ["power"], "tags": {"power": "tower"}, "matchScore": 1.05, "name": "High-Voltage Tower"}, - "power/transformer": {"icon": "temaki-power_transformer", "fields": ["ref", "operator", "transformer", "location", "rating", "devices", "phases"], "moreFields": ["frequency", "manufacturer", "voltage/primary", "voltage/secondary", "voltage/tertiary", "windings", "windings/configuration"], "geometry": ["point", "vertex"], "tags": {"power": "transformer"}, "name": "Transformer"}, - "public_transport/platform_point": {"icon": "temaki-sign_and_bench", "fields": ["name", "ref_stop_position", "network", "operator", "vehicles", "departures_board", "shelter"], "moreFields": ["bench", "bin", "gnis/feature_id", "level", "lit", "tactile_paving", "wheelchair"], "geometry": ["point"], "tags": {"public_transport": "platform"}, "terms": ["platform", "public transit", "public transportation", "transit", "transportation"], "name": "Transit Stop / Platform", "matchScore": 0.6}, - "public_transport/platform": {"icon": "temaki-board_transit", "fields": ["ref_platform", "network", "operator", "vehicles", "departures_board", "surface"], "moreFields": ["access", "covered", "indoor", "layer", "level", "lit", "wheelchair"], "geometry": ["line", "area"], "tags": {"public_transport": "platform"}, "terms": ["platform", "public transit", "public transportation", "transit", "transportation"], "name": "Transit Platform", "matchScore": 0.6}, - "public_transport/platform/aerialway_point": {"icon": "temaki-gondola_lift", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point"], "tags": {"public_transport": "platform", "aerialway": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "searchable": false, "name": "Aerialway Stop / Platform"}, - "public_transport/platform/ferry_point": {"icon": "temaki-ferry", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point"], "tags": {"public_transport": "platform", "ferry": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "searchable": false, "name": "Ferry Stop / Platform"}, - "public_transport/platform/light_rail_point": {"icon": "temaki-light_rail", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point"], "tags": {"public_transport": "platform", "light_rail": "yes"}, "reference": {"key": "railway", "value": "platform"}, "searchable": false, "name": "Light Rail Stop / Platform"}, - "public_transport/platform/monorail_point": {"icon": "temaki-monorail", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point"], "tags": {"public_transport": "platform", "monorail": "yes"}, "reference": {"key": "railway", "value": "platform"}, "searchable": false, "name": "Monorail Stop / Platform"}, - "public_transport/platform/subway_point": {"icon": "temaki-subway", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point"], "tags": {"public_transport": "platform", "subway": "yes"}, "reference": {"key": "railway", "value": "platform"}, "searchable": false, "name": "Subway Stop / Platform"}, - "public_transport/platform/train_point": {"icon": "temaki-train", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point"], "tags": {"public_transport": "platform", "train": "yes"}, "reference": {"key": "railway", "value": "platform"}, "searchable": false, "name": "Train Stop / Platform"}, - "public_transport/platform/aerialway": {"icon": "temaki-board_gondola_lift", "fields": ["{public_transport/platform}"], "moreFields": ["{public_transport/platform}"], "geometry": ["line", "area"], "tags": {"public_transport": "platform", "aerialway": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["aerialway", "cable car", "platform", "public transit", "public transportation", "transit", "transportation"], "name": "Aerialway Platform"}, - "public_transport/platform/bus_point": {"icon": "temaki-bus", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point", "vertex"], "tags": {"public_transport": "platform", "bus": "yes"}, "addTags": {"public_transport": "platform", "bus": "yes", "highway": "bus_stop"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["bus", "platform", "public transit", "public transportation", "transit", "transportation"], "name": "Bus Stop"}, - "public_transport/platform/bus_tram_point": {"icon": "temaki-tram", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point", "vertex"], "tags": {"public_transport": "platform", "bus": "yes", "tram": "yes"}, "addTags": {"public_transport": "platform", "bus": "yes", "tram": "yes", "highway": "bus_stop"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["bus", "light rail", "platform", "public transit", "public transportation", "rail", "streetcar", "track", "tram", "transit", "transportation", "trolley"], "name": "Tram & Bus Stop"}, - "public_transport/platform/bus": {"icon": "temaki-board_bus", "fields": ["{public_transport/platform}"], "moreFields": ["{public_transport/platform}"], "geometry": ["line", "area"], "tags": {"public_transport": "platform", "bus": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["bus", "platform", "public transit", "public transportation", "transit", "transportation"], "name": "Bus Platform"}, - "public_transport/platform/ferry": {"icon": "temaki-board_ferry", "fields": ["{public_transport/platform}"], "moreFields": ["{public_transport/platform}"], "geometry": ["line", "area"], "tags": {"public_transport": "platform", "ferry": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["boat", "dock", "ferry", "pier", "platform", "public transit", "public transportation", "transit", "transportation"], "name": "Ferry Platform"}, - "public_transport/platform/light_rail": {"icon": "temaki-board_light_rail", "fields": ["{public_transport/platform}"], "moreFields": ["{public_transport/platform}"], "geometry": ["line", "area"], "tags": {"public_transport": "platform", "light_rail": "yes"}, "addTags": {"public_transport": "platform", "light_rail": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["electric", "light rail", "platform", "public transit", "public transportation", "rail", "track", "tram", "trolley", "transit", "transportation"], "name": "Light Rail Platform"}, - "public_transport/platform/monorail": {"icon": "temaki-board_monorail", "fields": ["{public_transport/platform}"], "moreFields": ["{public_transport/platform}"], "geometry": ["line", "area"], "tags": {"public_transport": "platform", "monorail": "yes"}, "addTags": {"public_transport": "platform", "monorail": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["monorail", "platform", "public transit", "public transportation", "rail", "transit", "transportation"], "name": "Monorail Platform"}, - "public_transport/platform/subway": {"icon": "temaki-board_subway", "fields": ["{public_transport/platform}"], "moreFields": ["{public_transport/platform}"], "geometry": ["line", "area"], "tags": {"public_transport": "platform", "subway": "yes"}, "addTags": {"public_transport": "platform", "subway": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["metro", "platform", "public transit", "public transportation", "rail", "subway", "track", "transit", "transportation", "underground"], "name": "Subway Platform"}, - "public_transport/platform/train": {"icon": "temaki-board_train", "fields": ["{public_transport/platform}"], "moreFields": ["{public_transport/platform}"], "geometry": ["line", "area"], "tags": {"public_transport": "platform", "train": "yes"}, "addTags": {"public_transport": "platform", "train": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["platform", "public transit", "public transportation", "rail", "track", "train", "transit", "transportation"], "name": "Train Platform"}, - "public_transport/platform/tram_point": {"icon": "temaki-tram", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point"], "tags": {"public_transport": "platform", "tram": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["electric", "light rail", "platform", "public transit", "public transportation", "rail", "streetcar", "track", "tram", "trolley", "transit", "transportation"], "name": "Tram Stop / Platform"}, - "public_transport/platform/tram": {"icon": "temaki-board_tram", "fields": ["{public_transport/platform}"], "moreFields": ["{public_transport/platform}"], "geometry": ["line", "area"], "tags": {"public_transport": "platform", "tram": "yes"}, "addTags": {"public_transport": "platform", "tram": "yes", "railway": "platform"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["electric", "light rail", "platform", "public transit", "public transportation", "rail", "streetcar", "track", "tram", "trolley", "transit", "transportation"], "name": "Tram Platform"}, - "public_transport/platform/trolleybus_point": {"icon": "temaki-trolleybus", "fields": ["{public_transport/platform_point}"], "moreFields": ["{public_transport/platform_point}"], "geometry": ["point", "vertex"], "tags": {"public_transport": "platform", "trolleybus": "yes"}, "addTags": {"public_transport": "platform", "trolleybus": "yes", "highway": "bus_stop"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["bus", "electric", "platform", "public transit", "public transportation", "streetcar", "trackless", "tram", "trolley", "transit", "transportation"], "name": "Trolleybus Stop"}, - "public_transport/platform/trolleybus": {"icon": "temaki-board_trolleybus", "fields": ["{public_transport/platform}"], "moreFields": ["{public_transport/platform}"], "geometry": ["line", "area"], "tags": {"public_transport": "platform", "trolleybus": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["bus", "electric", "platform", "public transit", "public transportation", "streetcar", "trackless", "tram", "trolley", "transit", "transportation"], "name": "Trolleybus Platform"}, - "public_transport/station_aerialway": {"icon": "temaki-gondola_lift", "fields": ["{public_transport/station}", "aerialway/access", "aerialway/summer/access"], "moreFields": ["{public_transport/station}"], "geometry": ["point", "vertex", "area"], "tags": {"aerialway": "station"}, "addTags": {"public_transport": "station", "aerialway": "station"}, "reference": {"key": "aerialway", "value": "station"}, "terms": ["aerialway", "cable car", "public transit", "public transportation", "station", "terminal", "transit", "transportation"], "name": "Aerialway Station"}, - "public_transport/station_bus": {"icon": "temaki-bus", "fields": ["{public_transport/station}"], "moreFields": ["{public_transport/station}"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "bus": "yes"}, "addTags": {"public_transport": "station", "bus": "yes", "amenity": "bus_station"}, "reference": {"key": "amenity", "value": "bus_station"}, "terms": ["bus", "public transit", "public transportation", "station", "terminal", "transit", "transportation"], "name": "Bus Station / Terminal"}, - "public_transport/station_ferry": {"icon": "temaki-ferry", "fields": ["{public_transport/station}"], "moreFields": ["{public_transport/station}"], "geometry": ["vertex", "point", "area"], "tags": {"public_transport": "station", "ferry": "yes"}, "addTags": {"public_transport": "station", "ferry": "yes", "amenity": "ferry_terminal"}, "reference": {"key": "amenity", "value": "ferry_terminal"}, "terms": ["boat", "dock", "ferry", "pier", "public transit", "public transportation", "station", "terminal", "transit", "transportation"], "name": "Ferry Terminal"}, - "public_transport/station_light_rail": {"icon": "temaki-light_rail", "fields": ["{public_transport/station}"], "moreFields": ["{public_transport/station}"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "light_rail": "yes"}, "addTags": {"public_transport": "station", "light_rail": "yes", "railway": "station", "station": "light_rail"}, "reference": {"key": "station", "value": "light_rail"}, "terms": ["electric", "light rail", "public transit", "public transportation", "rail", "station", "terminal", "track", "tram", "trolley", "transit", "transportation"], "name": "Light Rail Station"}, - "public_transport/station_monorail": {"icon": "temaki-monorail", "fields": ["{public_transport/station}"], "moreFields": ["{public_transport/station}"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "monorail": "yes"}, "addTags": {"public_transport": "station", "monorail": "yes", "railway": "station"}, "reference": {"key": "railway", "value": "station"}, "terms": ["monorail", "public transit", "public transportation", "rail", "station", "terminal", "transit", "transportation"], "name": "Monorail Station"}, - "public_transport/station_subway": {"icon": "temaki-subway", "fields": ["{public_transport/station}"], "moreFields": ["{public_transport/station}"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "subway": "yes"}, "addTags": {"public_transport": "station", "subway": "yes", "railway": "station", "station": "subway"}, "reference": {"key": "station", "value": "subway"}, "terms": ["metro", "public transit", "public transportation", "rail", "station", "subway", "terminal", "track", "transit", "transportation", "underground"], "name": "Subway Station"}, - "public_transport/station_train_halt": {"icon": "temaki-rail_flag", "fields": ["{public_transport/station}"], "moreFields": ["{public_transport/station}"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "train": "yes", "railway": "halt"}, "reference": {"key": "railway", "value": "halt"}, "terms": ["halt", "public transit", "public transportation", "rail", "station", "track", "train", "transit", "transportation", "whistle stop"], "name": "Train Station (Halt / Request)"}, - "public_transport/station_train": {"icon": "temaki-train", "fields": ["{public_transport/station}"], "moreFields": ["{public_transport/station}"], "geometry": ["vertex", "point", "area"], "tags": {"public_transport": "station", "train": "yes"}, "addTags": {"public_transport": "station", "train": "yes", "railway": "station"}, "reference": {"key": "railway", "value": "station"}, "terms": ["public transit", "public transportation", "rail", "station", "terminal", "track", "train", "transit", "transportation"], "name": "Train Station"}, - "public_transport/station_tram": {"icon": "temaki-tram", "fields": ["{public_transport/station}"], "moreFields": ["{public_transport/station}"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "tram": "yes"}, "reference": {"key": "public_transport", "value": "station"}, "terms": ["electric", "light rail", "public transit", "public transportation", "rail", "station", "streetcar", "terminal", "track", "tram", "trolley", "transit", "transportation"], "name": "Tram Station"}, - "public_transport/station_trolleybus": {"icon": "temaki-trolleybus", "fields": ["{public_transport/station}"], "moreFields": ["{public_transport/station}"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "trolleybus": "yes"}, "addTags": {"public_transport": "station", "trolleybus": "yes", "amenity": "bus_station"}, "reference": {"key": "amenity", "value": "bus_station"}, "terms": ["bus", "electric", "public transit", "public transportation", "station", "streetcar", "terminal", "trackless", "tram", "trolley", "transit", "transportation"], "name": "Trolleybus Station / Terminal"}, - "public_transport/station": {"icon": "temaki-transit", "fields": ["name", "network", "operator", "vehicles", "address", "building_area", "internet_access"], "moreFields": ["air_conditioning", "baby_feeding", "email", "fax", "gnis/feature_id", "internet_access/fee", "internet_access/ssid", "level", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"public_transport": "station"}, "terms": ["public transit", "public transportation", "station", "terminal", "transit", "transportation"], "name": "Transit Station", "matchScore": 0.2}, - "public_transport/stop_area": {"icon": "iD-relation", "fields": ["name", "ref", "network", "operator"], "geometry": ["relation"], "tags": {"type": "public_transport", "public_transport": "stop_area"}, "reference": {"key": "public_transport", "value": "stop_area"}, "name": "Transit Stop Area"}, - "public_transport/stop_position_aerialway": {"icon": "temaki-gondola_lift", "fields": ["{public_transport/stop_position}"], "moreFields": ["{public_transport/stop_position}"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "aerialway": "yes"}, "reference": {"key": "public_transport", "value": "stop_position"}, "terms": ["aerialway", "cable car", "public transit", "public transportation", "transit", "transportation"], "name": "Aerialway Stopping Location"}, - "public_transport/stop_position_bus": {"icon": "temaki-bus", "fields": ["{public_transport/stop_position}"], "moreFields": ["{public_transport/stop_position}"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "bus": "yes"}, "reference": {"key": "public_transport", "value": "stop_position"}, "terms": ["bus", "public transit", "public transportation", "transit", "transportation"], "name": "Bus Stopping Location"}, - "public_transport/stop_position_ferry": {"icon": "temaki-ferry", "fields": ["{public_transport/stop_position}"], "moreFields": ["{public_transport/stop_position}"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "ferry": "yes"}, "reference": {"key": "public_transport", "value": "stop_position"}, "terms": ["boat", "dock", "ferry", "pier", "public transit", "public transportation", "transit", "transportation"], "name": "Ferry Stopping Location"}, - "public_transport/stop_position_light_rail": {"icon": "temaki-light_rail", "fields": ["{public_transport/stop_position}"], "moreFields": ["{public_transport/stop_position}"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "light_rail": "yes"}, "addTags": {"public_transport": "stop_position", "light_rail": "yes", "railway": "stop"}, "reference": {"key": "railway", "value": "stop"}, "terms": ["electric", "light rail", "public transit", "public transportation", "rail", "track", "tram", "trolley", "transit", "transportation"], "name": "Light Rail Stopping Location"}, - "public_transport/stop_position_monorail": {"icon": "temaki-monorail", "fields": ["{public_transport/stop_position}"], "moreFields": ["{public_transport/stop_position}"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "monorail": "yes"}, "addTags": {"public_transport": "stop_position", "monorail": "yes", "railway": "stop"}, "reference": {"key": "railway", "value": "stop"}, "terms": ["monorail", "public transit", "public transportation", "rail", "transit", "transportation"], "name": "Monorail Stopping Location"}, - "public_transport/stop_position_subway": {"icon": "temaki-subway", "fields": ["{public_transport/stop_position}"], "moreFields": ["{public_transport/stop_position}"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "subway": "yes"}, "addTags": {"public_transport": "stop_position", "subway": "yes", "railway": "stop"}, "reference": {"key": "railway", "value": "stop"}, "terms": ["metro", "public transit", "public transportation", "rail", "subway", "track", "transit", "transportation", "underground"], "name": "Subway Stopping Location"}, - "public_transport/stop_position_train": {"icon": "temaki-train", "fields": ["{public_transport/stop_position}"], "moreFields": ["{public_transport/stop_position}"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "train": "yes"}, "addTags": {"public_transport": "stop_position", "train": "yes", "railway": "stop"}, "reference": {"key": "railway", "value": "stop"}, "terms": ["public transit", "public transportation", "rail", "track", "train", "transit", "transportation"], "name": "Train Stopping Location"}, - "public_transport/stop_position_tram": {"icon": "temaki-tram", "fields": ["{public_transport/stop_position}"], "moreFields": ["{public_transport/stop_position}"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "tram": "yes"}, "addTags": {"public_transport": "stop_position", "tram": "yes", "railway": "tram_stop"}, "reference": {"key": "public_transport", "value": "stop_position"}, "terms": ["electric", "light rail", "public transit", "public transportation", "rail", "streetcar", "track", "tram", "trolley", "transit", "transportation"], "name": "Tram Stopping Location"}, - "public_transport/stop_position_trolleybus": {"icon": "temaki-trolleybus", "fields": ["{public_transport/stop_position}"], "moreFields": ["{public_transport/stop_position}"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "trolleybus": "yes"}, "reference": {"key": "public_transport", "value": "stop_position"}, "terms": ["bus", "electric", "public transit", "public transportation", "streetcar", "trackless", "tram", "trolley", "transit", "transportation"], "name": "Trolleybus Stopping Location"}, - "public_transport/stop_position": {"icon": "temaki-transit", "fields": ["name", "ref_stop_position", "network", "operator", "vehicles"], "moreFields": [], "geometry": ["vertex"], "tags": {"public_transport": "stop_position"}, "terms": ["public transit", "public transportation", "transit", "transportation"], "name": "Transit Stopping Location", "matchScore": 0.2}, - "railway/halt": {"icon": "temaki-rail_flag", "geometry": ["point", "vertex"], "tags": {"railway": "halt"}, "name": "Train Station (Halt / Request)", "searchable": false}, - "railway/platform": {"icon": "temaki-board_train", "fields": ["{public_transport/platform}"], "moreFields": ["{public_transport/platform}"], "geometry": ["line", "area"], "tags": {"railway": "platform"}, "name": "Train Platform", "searchable": false}, - "railway/station": {"icon": "temaki-train", "fields": ["{public_transport/station}"], "moreFields": ["{public_transport/station}"], "geometry": ["point", "vertex", "area"], "tags": {"railway": "station"}, "matchScore": 0.95, "name": "Train Station", "searchable": false}, - "railway/tram_stop": {"icon": "temaki-tram", "fields": ["{public_transport/stop_position}"], "moreFields": ["{public_transport/stop_position}"], "geometry": ["vertex"], "tags": {"railway": "tram_stop"}, "name": "Tram Stopping Position", "searchable": false}, - "railway/abandoned": {"icon": "temaki-railway_track_askew", "fields": ["name", "structure", "service_rail", "usage_rail"], "moreFields": ["covered", "incline"], "geometry": ["line"], "tags": {"railway": "abandoned"}, "terms": [], "matchScore": 0.85, "name": "Abandoned Railway"}, - "railway/buffer_stop": {"icon": "temaki-buffer_stop", "geometry": ["vertex"], "tags": {"railway": "buffer_stop"}, "terms": ["stop", "halt", "buffer"], "name": "Buffer Stop"}, - "railway/construction": {"icon": "temaki-railway_track_partial", "fields": ["name", "opening_date", "check_date", "note", "structure", "gauge", "electrified"], "moreFields": ["covered", "frequency_electrified", "highspeed", "incline", "maxspeed", "service_rail", "usage_rail", "voltage_electrified"], "geometry": ["line"], "tags": {"railway": "construction"}, "matchScore": 0.95, "name": "Railway Under Construction"}, - "railway/crossing": {"icon": "temaki-pedestrian", "geometry": ["vertex"], "tags": {"railway": "crossing"}, "terms": ["crossing", "path railway crossing", "pedestrian crossing", "level crossing", "grade crossing", "railroad crossing", "railway path crossing", "path through railroad", "train crossing"], "name": "Railway-Path Crossing"}, - "railway/derail": {"icon": "maki-roadblock", "geometry": ["vertex"], "tags": {"railway": "derail"}, "terms": ["derailer"], "name": "Railway Derailer"}, - "railway/disused": {"icon": "temaki-railway_track", "fields": ["{railway/light_rail}"], "moreFields": ["{railway/light_rail}", "highspeed"], "geometry": ["line"], "tags": {"railway": "disused"}, "matchScore": 0.95, "name": "Disused Railway"}, - "railway/funicular": {"icon": "temaki-railway_cable_track", "fields": ["name", "operator", "incline", "structure", "gauge", "service_rail"], "moreFields": ["covered", "electrified", "frequency_electrified", "maxspeed", "voltage_electrified"], "geometry": ["line"], "terms": ["venicular", "cliff railway", "cable car", "cable railway", "funicular railway"], "tags": {"railway": "funicular"}, "name": "Funicular Track"}, - "railway/level_crossing": {"icon": "maki-cross", "geometry": ["vertex"], "tags": {"railway": "level_crossing"}, "terms": ["crossing", "level crossing", "grade crossing", "railroad crossing", "railway road crossing", "road railway crossing", "road through railroad", "train crossing"], "name": "Railway-Road Crossing"}, - "railway/light_rail": {"icon": "temaki-light_rail", "fields": ["name", "operator", "structure", "gauge", "electrified", "service_rail", "usage_rail"], "moreFields": ["covered", "frequency_electrified", "incline", "maxspeed", "voltage_electrified"], "geometry": ["line"], "tags": {"railway": "light_rail"}, "terms": ["light rail", "streetcar", "trolley"], "name": "Light Rail Track"}, - "railway/milestone": {"icon": "temaki-milestone", "geometry": ["point", "vertex"], "fields": ["railway/position", "direction_vertex"], "tags": {"railway": "milestone"}, "terms": ["milestone", "marker"], "name": "Railway Milestone"}, - "railway/miniature": {"icon": "temaki-railway_track_mini", "fields": ["{railway/light_rail}"], "moreFields": ["{railway/light_rail}"], "geometry": ["line"], "tags": {"railway": "miniature"}, "terms": ["rideable miniature railway", "narrow gauge railway", "minimum gauge railway"], "name": "Miniature Train Track"}, - "railway/monorail": {"icon": "temaki-monorail", "fields": ["{railway/light_rail}"], "moreFields": ["{railway/light_rail}"], "geometry": ["line"], "tags": {"railway": "monorail"}, "name": "Monorail Track"}, - "railway/monorail/hanging": {"icon": "temaki-hanging_rail", "geometry": ["line"], "tags": {"railway": "monorail", "monorail": "hanging"}, "reference": {"key": "monorail", "value": "hanging"}, "terms": ["suspension railway"], "name": "Hanging Monorail Track"}, - "railway/narrow_gauge": {"icon": "temaki-railway_track_narrow", "fields": ["{railway/light_rail}"], "moreFields": ["{railway/light_rail}"], "geometry": ["line"], "tags": {"railway": "narrow_gauge"}, "terms": ["narrow gauge railway", "narrow gauge railroad"], "name": "Narrow Gauge Track"}, - "railway/preserved": {"icon": "temaki-train_steam", "fields": ["railway", "{railway/light_rail}"], "moreFields": ["{railway/light_rail}"], "geometry": ["line"], "tags": {"railway": "*", "railway:preserved": "yes"}, "addTags": {"railway": "rail", "railway:preserved": "yes"}, "reference": {"key": "railway:preserved"}, "terms": ["historic train", "preserved rail", "steam train", "tourist train"], "name": "Heritage Railway Track"}, - "railway/rail": {"icon": "temaki-railway_track", "fields": ["{railway/light_rail}"], "moreFields": ["{railway/light_rail}", "highspeed"], "geometry": ["line"], "tags": {"railway": "rail"}, "terms": ["permanent way", "rail line", "railroad track", "railway track", "track", "train track"], "name": "Train Track"}, - "railway/rail/highspeed": {"icon": "temaki-train_bullet", "geometry": ["line"], "tags": {"railway": "rail", "highspeed": "yes"}, "reference": {"key": "highspeed"}, "terms": ["bullet train", "fast rail", "high speed rail", "highspeed rail", "HSR"], "name": "High-Speed Train Track"}, - "railway/railway_crossing": {"icon": "temaki-x_oblique", "geometry": ["vertex"], "tags": {"railway": "railway_crossing"}, "terms": ["diamond crossing", "flat crossing", "level junction", "railway railway crossing"], "name": "Railway-Railway Crossing"}, - "railway/signal": {"icon": "temaki-railway_signals", "geometry": ["point", "vertex"], "fields": ["railway/position", "railway/signal/direction", "ref"], "tags": {"railway": "signal"}, "terms": ["signal", "lights"], "name": "Railway Signal"}, - "railway/subway_entrance": {"icon": "maki-entrance", "geometry": ["point", "vertex"], "fields": ["name", "level", "wheelchair"], "tags": {"railway": "subway_entrance"}, "terms": ["metro", "transit"], "name": "Subway Entrance"}, - "railway/subway": {"icon": "temaki-subway", "fields": ["{railway/light_rail}"], "moreFields": ["{railway/light_rail}"], "geometry": ["line"], "tags": {"railway": "subway"}, "terms": ["metro", "transit", "underground railway"], "name": "Subway Track"}, - "railway/switch": {"icon": "temaki-junction", "geometry": ["vertex"], "tags": {"railway": "switch"}, "terms": ["switch", "points"], "name": "Railway Switch"}, - "railway/train_wash": {"icon": "temaki-train_wash", "geometry": ["point", "vertex", "area"], "fields": ["operator", "building_area"], "tags": {"railway": "wash"}, "terms": ["wash", "clean"], "name": "Train Wash"}, - "railway/tram_crossing": {"icon": "temaki-crossing_tram_striped", "geometry": ["vertex"], "tags": {"railway": "tram_crossing"}, "terms": ["crossing", "grade crossing", "level crossing", "path tram crossing", "pedestrian crossing", "streetcar crossing", "tram path crossing", "tramway crossing", "trolley crossing"], "name": "Tram-Path Crossing"}, - "railway/tram_level_crossing": {"icon": "temaki-crossing_tram_solid", "geometry": ["vertex"], "tags": {"railway": "tram_level_crossing"}, "terms": ["crossing", "grade crossing", "level crossing", "pedestrian crossing", "road tram crossing", "streetcar crossing", "tram road crossing", "tramway crossing", "trolley crossing"], "name": "Tram-Road Crossing"}, - "railway/tram": {"icon": "temaki-tram", "fields": ["{railway/light_rail}"], "moreFields": ["{railway/light_rail}"], "geometry": ["line"], "tags": {"railway": "tram"}, "terms": ["electric street railway", "light rail", "streetcar", "tramway", "trolley"], "name": "Tram Track"}, - "railway/yard": {"icon": "temaki-freight_car", "fields": ["name", "operator"], "moreFields": ["gnis/feature_id"], "geometry": ["point"], "tags": {"railway": "yard"}, "terms": ["freight car stop", "freight train station", "rail freight station", "railroad yard", "railway yard"], "name": "Rail Yard"}, - "relation": {"icon": "iD-relation", "fields": ["name", "relation"], "geometry": ["relation"], "tags": {}, "name": "Relation"}, - "route/ferry": {"icon": "temaki-ferry", "geometry": ["line"], "fields": ["name", "operator", "duration", "access", "toll", "from", "to"], "moreFields": ["charge_toll", "distance", "dog", "email", "interval", "maxheight", "maxweight", "network", "oneway", "opening_hours", "opening_hours/covid19", "phone", "ref_route", "reservation", "roundtrip", "vhf", "website", "wheelchair"], "tags": {"route": "ferry"}, "terms": ["boat", "merchant vessel", "ship", "water bus", "water shuttle", "water taxi"], "name": "Ferry Route"}, - "seamark/beacon_isolated_danger": {"fields": ["ref", "operator", "seamark/beacon_isolated_danger/shape", "seamark/type"], "geometry": ["point", "vertex"], "terms": ["beacon isolated danger", "isolated danger beacon", "iala"], "tags": {"seamark:type": "beacon_isolated_danger"}, "name": "Danger Beacon"}, - "seamark/beacon_lateral": {"fields": ["ref", "operator", "seamark/beacon_lateral/colour", "seamark/beacon_lateral/category", "seamark/beacon_lateral/shape", "seamark/beacon_lateral/system", "seamark/type"], "geometry": ["point", "vertex"], "terms": ["lateral beacon", "beacon lateral", "cevni", "channel marker", "iala", "lateral mark"], "tags": {"seamark:type": "beacon_lateral"}, "name": "Channel Beacon"}, - "seamark/buoy_lateral": {"icon": "temaki-buoy", "fields": ["ref", "operator", "seamark/buoy_lateral/colour", "seamark/buoy_lateral/category", "seamark/buoy_lateral/shape", "seamark/buoy_lateral/system", "seamark/type"], "geometry": ["point", "vertex"], "terms": ["lateral buoy", "buoy lateral", "cevni", "channel marker", "iala", "lateral mark"], "tags": {"seamark:type": "buoy_lateral"}, "name": "Channel Buoy"}, - "seamark/buoy_lateral/green": {"icon": "temaki-buoy", "geometry": ["point", "vertex"], "terms": ["lateral buoy", "buoy lateral", "cevni", "channel marker", "iala", "lateral mark"], "tags": {"seamark:type": "buoy_lateral", "seamark:buoy_lateral:colour": "green"}, "name": "Green Buoy"}, - "seamark/buoy_lateral/red": {"icon": "temaki-buoy", "geometry": ["point", "vertex"], "terms": ["lateral buoy", "buoy lateral", "cevni", "channel marker", "iala", "lateral mark"], "tags": {"seamark:type": "buoy_lateral", "seamark:buoy_lateral:colour": "red"}, "name": "Red Buoy"}, - "seamark/mooring": {"icon": "temaki-horn_cleat", "fields": ["ref", "operator", "seamark/mooring/category", "seamark/type"], "geometry": ["point"], "terms": ["dolphin", "pile", "bollard", "buoy", "post"], "tags": {"seamark:type": "mooring"}, "name": "Mooring"}, - "shop": {"icon": "maki-shop", "fields": ["name", "shop", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19", "payment_multi", "phone", "website"], "moreFields": ["air_conditioning", "brand", "building/levels_building", "currency_multi", "ele", "email", "fax", "gnis/feature_id", "height_building", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "not/name", "ref/vatin", "second_hand", "stroller", "wheelchair"], "geometry": ["point", "area"], "tags": {"shop": "*"}, "terms": [], "name": "Shop"}, - "shop/boutique": {"icon": "maki-shop", "fields": ["name", "clothes", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "boutique"}, "searchable": false, "name": "Boutique"}, - "shop/fashion": {"icon": "maki-shop", "fields": ["name", "clothes", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "fashion"}, "searchable": false, "name": "Fashion Store"}, - "shop/vacant": {"icon": "maki-shop", "fields": ["name", "address", "building_area"], "geometry": ["point", "area"], "tags": {"shop": "vacant"}, "name": "Vacant Shop", "searchable": false}, - "shop/agrarian": {"icon": "fas-tractor", "fields": ["{shop}", "agrarian"], "geometry": ["point", "area"], "terms": ["agricultural inputs", "agricultural machines", "seeds", "pesticides", "fertilizer", "agricultural tools"], "tags": {"shop": "agrarian"}, "name": "Farm Supply Shop"}, - "shop/alcohol": {"icon": "fas-wine-bottle", "fields": ["{shop}", "drive_through"], "moreFields": ["{shop}", "min_age"], "geometry": ["point", "area"], "terms": ["alcohol", "beer", "booze", "wine"], "tags": {"shop": "alcohol"}, "name": "Liquor Store"}, - "shop/anime": {"icon": "fas-dragon", "geometry": ["point", "area"], "tags": {"shop": "anime"}, "terms": ["manga", "japan", "cosplay", "figurine", "dakimakura"], "name": "Anime / Manga Shop"}, - "shop/antiques": {"icon": "temaki-furniture", "geometry": ["point", "area"], "tags": {"shop": "antiques"}, "name": "Antiques Shop"}, - "shop/appliance": {"icon": "temaki-laundry", "geometry": ["point", "area"], "terms": ["air conditioner", "appliance", "dishwasher", "dryer", "freezer", "fridge", "grill", "kitchen", "oven", "refrigerator", "stove", "washer", "washing machine"], "tags": {"shop": "appliance"}, "name": "Appliance Store"}, - "shop/art": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["art*", "exhibit*", "gallery"], "tags": {"shop": "art"}, "name": "Art Store"}, - "shop/baby_goods": {"icon": "fas-baby-carriage", "geometry": ["point", "area"], "tags": {"shop": "baby_goods"}, "name": "Baby Goods Store"}, - "shop/bag": {"icon": "fas-suitcase-rolling", "geometry": ["point", "area"], "terms": ["handbag", "purse"], "tags": {"shop": "bag"}, "name": "Bag/Luggage Store"}, - "shop/bakery": {"icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "bakery"}, "terms": ["bread", "cakes", "rolls"], "name": "Bakery"}, - "shop/bathroom_furnishing": {"icon": "fas-bath", "geometry": ["point", "area"], "tags": {"shop": "bathroom_furnishing"}, "name": "Bathroom Furnishing Store"}, - "shop/beauty": {"icon": "temaki-lipstick", "fields": ["{shop}", "beauty"], "geometry": ["point", "area"], "terms": ["spa", "salon", "tanning"], "tags": {"shop": "beauty"}, "name": "Beauty Shop"}, - "shop/beauty/nails": {"icon": "temaki-polished_nail", "geometry": ["point", "area"], "terms": ["manicure", "pedicure"], "tags": {"shop": "beauty", "beauty": "nails"}, "reference": {"key": "shop", "value": "beauty"}, "name": "Nail Salon"}, - "shop/beauty/tanning": {"icon": "temaki-tanning", "geometry": ["point", "area"], "tags": {"shop": "beauty", "beauty": "tanning"}, "reference": {"key": "leisure", "value": "tanning_salon"}, "name": "Tanning Salon"}, - "shop/bed": {"icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"shop": "bed"}, "name": "Bedding/Mattress Store"}, - "shop/beverages": {"icon": "temaki-bottles", "geometry": ["point", "area"], "tags": {"shop": "beverages"}, "terms": ["drinks"], "name": "Beverage Store"}, - "shop/bicycle": {"icon": "maki-bicycle", "fields": ["{shop}", "service/bicycle"], "geometry": ["point", "area"], "terms": ["bike", "repair", "tricycle", "unicycle"], "tags": {"shop": "bicycle"}, "name": "Bicycle Shop"}, - "shop/boat": {"icon": "temaki-boat", "geometry": ["point", "area"], "terms": ["fishing boat", "jetski", "motorboat", "rowboat", "sailboat", "vessel", "watercraft"], "tags": {"shop": "boat"}, "name": "Boat Store"}, - "shop/bookmaker": {"icon": "temaki-money_hand", "moreFields": ["{shop}", "min_age"], "geometry": ["point", "area"], "tags": {"shop": "bookmaker"}, "terms": ["betting", "bookie", "gamble", "gambling", "turf accountant"], "name": "Bookmaker"}, - "shop/books": {"icon": "fas-book", "fields": ["{shop}", "internet_access"], "moreFields": ["{shop}", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"shop": "books"}, "name": "Book Store"}, - "shop/brewing_supplies": {"icon": "temaki-storage_fermenter", "geometry": ["point", "area"], "terms": ["brew shop", "homebrew supply store"], "tags": {"shop": "brewing_supplies"}, "name": "Brewing Supply Store"}, - "shop/butcher": {"icon": "temaki-cleaver", "geometry": ["point", "area"], "terms": ["chicken", "beef", "lamb", "meat", "pork"], "tags": {"shop": "butcher"}, "name": "Butcher"}, - "shop/camera": {"icon": "fas-camera-retro", "geometry": ["point", "area"], "terms": ["camera", "film", "lens", "photo"], "tags": {"shop": "camera"}, "name": "Camera Equipment Store"}, - "shop/candles": {"icon": "fas-burn", "geometry": ["point", "area"], "tags": {"shop": "candles"}, "terms": ["wax"], "name": "Candle Shop"}, - "shop/cannabis": {"icon": "fas-cannabis", "moreFields": ["{shop}", "min_age"], "geometry": ["point", "area"], "terms": ["420", "marijuana", "pot", "reefer", "weed"], "tags": {"shop": "cannabis"}, "name": "Cannabis Shop"}, - "shop/car_parts": {"icon": "fas-car-battery", "geometry": ["point", "area"], "terms": ["automobile", "automotive"], "tags": {"shop": "car_parts"}, "name": "Car Parts Store"}, - "shop/car_repair": {"icon": "maki-car-repair", "fields": ["{shop}", "service/vehicle"], "geometry": ["point", "area"], "terms": ["auto mechanic", "automechanic", "automobile", "automotive", "garage", "inspection", "oil change", "service"], "tags": {"shop": "car_repair"}, "name": "Car Repair Shop"}, - "shop/car": {"icon": "maki-car", "fields": ["name", "brand", "{shop}", "second_hand", "service/vehicle"], "geometry": ["point", "area"], "terms": ["automobile", "automotive"], "tags": {"shop": "car"}, "name": "Car Dealership"}, - "shop/car/second_hand": {"icon": "maki-car", "geometry": ["point", "area"], "terms": ["automobile", "automotive"], "tags": {"shop": "car", "second_hand": "only"}, "name": "Used Car Dealership"}, - "shop/caravan": {"icon": "temaki-camper_trailer", "fields": ["name", "brand", "{shop}", "second_hand", "service/vehicle"], "geometry": ["point", "area"], "tags": {"shop": "caravan"}, "terms": ["auto", "camper", "recreational vehicle"], "name": "RV Dealership"}, - "shop/carpet": {"icon": "fas-tape", "geometry": ["point", "area"], "terms": ["rug"], "tags": {"shop": "carpet"}, "name": "Carpet Store"}, - "shop/catalogue": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "catalogue"}, "name": "Catalog Shop"}, - "shop/charity": {"icon": "maki-shop", "fields": ["{shop}", "second_hand"], "geometry": ["point", "area"], "terms": ["thrift", "op shop", "nonprofit"], "tags": {"shop": "charity"}, "name": "Charity Store"}, - "shop/cheese": {"icon": "fas-cheese", "geometry": ["point", "area"], "tags": {"shop": "cheese"}, "name": "Cheese Store"}, - "shop/chemist": {"icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"shop": "chemist"}, "terms": ["apothecary", "beauty", "drug store", "drugstore", "gift", "hair", "med*", "pharmacy", "prescription", "tooth"], "name": "Drugstore"}, - "shop/chocolate": {"icon": "maki-confectionery", "geometry": ["point", "area"], "tags": {"shop": "chocolate"}, "terms": ["cocoa"], "name": "Chocolate Store"}, - "shop/clothes": {"icon": "maki-clothing-store", "fields": ["name", "clothes", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "clothes"}, "terms": ["blouses", "boutique", "bras", "clothes", "dresses", "fashion", "pants", "shirts", "shorts", "skirts", "slacks", "socks", "suits", "underwear"], "name": "Clothing Store"}, - "shop/clothes/second_hand": {"icon": "fas-tshirt", "geometry": ["point", "area"], "tags": {"shop": "clothes", "second_hand": "only"}, "terms": ["blouses", "clothes", "consignment", "dresses", "pants", "second hand", "shirts", "shorts", "skirts", "slacks", "suits", "used"], "name": "Secondhand Clothing Store"}, - "shop/clothes/underwear": {"icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"shop": "clothes", "clothes": "underwear"}, "reference": {"key": "clothes", "value": "underwear"}, "terms": ["boutique", "bras", "brassieres", "briefs", "boxers", "fashion", "lingerie", "panties", "slips", "socks", "stockings", "underclothes", "undergarments", "underpants", "undies"], "name": "Underwear Store"}, - "shop/clothes/wedding": {"icon": "temaki-gown", "geometry": ["point", "area"], "tags": {"shop": "clothes", "clothes": "wedding"}, "reference": {"key": "clothes", "value": "wedding"}, "terms": ["boutique", "bridal", "bride", "bridegroom", "bridesmaid", "groom", "groomsman", "tuxedo", "wedding dress", "wedding gown"], "name": "Wedding Clothes Store"}, - "shop/coffee": {"icon": "temaki-coffee", "geometry": ["point", "area"], "tags": {"shop": "coffee"}, "name": "Coffee Store"}, - "shop/collector": {"icon": "fas-th", "fields": ["name", "collector", "{shop}"], "geometry": ["point", "area"], "terms": ["antiques", "coins", "collection", "collectors", "comics", "dolls", "figurines", "numismatics", "philately", "stamps", "thrift"], "tags": {"shop": "collector"}, "name": "Collectibles Shop"}, - "shop/computer": {"icon": "fas-laptop", "geometry": ["point", "area"], "tags": {"shop": "computer"}, "terms": ["desktop", "laptop", "hardware", "operating system", "software"], "name": "Computer Store"}, - "shop/confectionery": {"icon": "maki-confectionery", "geometry": ["point", "area"], "terms": ["sweet"], "tags": {"shop": "confectionery"}, "name": "Candy Store"}, - "shop/convenience": {"icon": "fas-shopping-basket", "moreFields": ["{shop}", "organic"], "geometry": ["point", "area"], "tags": {"shop": "convenience"}, "name": "Convenience Store"}, - "shop/copyshop": {"icon": "fas-print", "geometry": ["point", "area"], "tags": {"shop": "copyshop"}, "terms": ["print", "scan"], "name": "Copy Store"}, - "shop/cosmetics": {"icon": "temaki-lipstick", "geometry": ["point", "area"], "tags": {"shop": "cosmetics"}, "terms": ["make-up", "makeup"], "name": "Cosmetics Store"}, - "shop/country_store": {"icon": "fas-hat-cowboy-side", "geometry": ["point", "area"], "tags": {"shop": "country_store"}, "name": "Country Store"}, - "shop/craft": {"icon": "fas-cut", "geometry": ["point", "area"], "tags": {"shop": "craft"}, "terms": ["art*", "paint*", "frame", "hobby"], "name": "Arts & Crafts Store"}, - "shop/curtain": {"icon": "temaki-curtains", "geometry": ["point", "area"], "terms": ["drape*", "window"], "tags": {"shop": "curtain"}, "name": "Curtain Store"}, - "shop/dairy": {"icon": "fas-cheese", "geometry": ["point", "area"], "terms": ["milk", "egg", "cheese"], "tags": {"shop": "dairy"}, "name": "Dairy Store"}, - "shop/deli": {"icon": "temaki-meat", "geometry": ["point", "area"], "terms": ["lunch", "meat", "sandwich"], "tags": {"shop": "deli"}, "name": "Deli"}, - "shop/department_store": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "department_store"}, "name": "Department Store"}, - "shop/doityourself": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "doityourself"}, "terms": ["craft", "diy", "do it yourself", "hardware", "home improvement", "tools"], "name": "DIY Store"}, - "shop/doors": {"icon": "fas-door-open", "geometry": ["point", "area"], "tags": {"shop": "doors"}, "name": "Door Shop"}, - "shop/dry_cleaning": {"icon": "temaki-clothes_hanger", "geometry": ["point", "area"], "tags": {"shop": "dry_cleaning"}, "name": "Dry Cleaner"}, - "shop/e-cigarette": {"icon": "maki-shop", "moreFields": ["{shop}", "min_age"], "geometry": ["point", "area"], "tags": {"shop": "e-cigarette"}, "terms": ["electronic", "vape", "vaping", "vapor"], "name": "E-Cigarette Shop"}, - "shop/electrical": {"icon": "temaki-power", "geometry": ["point", "area"], "terms": ["cable", "electric", "fan", "LED", "lighting", "power", "wire"], "tags": {"shop": "electrical"}, "name": "Electrical Equipment Store"}, - "shop/electronics": {"icon": "fas-plug", "geometry": ["point", "area"], "terms": ["appliance", "audio", "blueray", "camera", "computer", "dvd", "home theater", "radio", "speaker", "tv", "video"], "tags": {"shop": "electronics"}, "name": "Electronics Store"}, - "shop/erotic": {"icon": "maki-shop", "fields": ["{shop}", "min_age"], "geometry": ["point", "area"], "terms": ["sex", "porn"], "tags": {"shop": "erotic"}, "name": "Erotic Store"}, - "shop/erotic/lgbtq": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["sex", "porn"], "tags": {"shop": "erotic", "lgbtq": "primary"}, "name": "LGBTQ+ Erotic Store"}, - "shop/fabric": {"icon": "fas-tape", "geometry": ["point", "area"], "terms": ["sew"], "tags": {"shop": "fabric"}, "name": "Fabric Store"}, - "shop/farm": {"icon": "fas-apple-alt", "fields": ["{shop}", "organic"], "geometry": ["point", "area"], "terms": ["baked goods", "farm shop", "farm stand", "fresh food", "fruits", "greengrocer", "organics", "vegetables"], "tags": {"shop": "farm"}, "name": "Produce Stand"}, - "shop/fashion_accessories": {"icon": "temaki-fashion_accessories", "fields": ["name", "clothes", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "fashion_accessories"}, "terms": ["bag", "cologne", "fragrance", "hat", "jewellery", "purfume", "purse", "scarf", "sunglasses", "umbrella", "wallet", "watch"], "name": "Fashion Accessories Store"}, - "shop/fireplace": {"icon": "temaki-fireplace", "geometry": ["point", "area"], "terms": ["fireplace", "stove", "masonry heater"], "tags": {"shop": "fireplace"}, "name": "Fireplace Store"}, - "shop/fishing": {"icon": "temaki-ice_fishing", "geometry": ["point", "area"], "tags": {"shop": "fishing"}, "terms": ["bait", "fishing line", "flies", "fly", "lure", "reel", "rod", "tackle"], "name": "Fishing Shop"}, - "shop/flooring": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "flooring"}, "terms": ["tile"], "name": "Flooring Supply Shop"}, - "shop/florist": {"icon": "maki-florist", "geometry": ["point", "area"], "terms": ["flower"], "tags": {"shop": "florist"}, "name": "Florist"}, - "shop/frame": {"icon": "fas-vector-square", "geometry": ["point", "area"], "tags": {"shop": "frame"}, "terms": ["art*", "paint*", "photo*", "frame"], "name": "Framing Shop"}, - "shop/frozen_food": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "frozen_food"}, "name": "Frozen Food Store"}, - "shop/fuel": {"icon": "temaki-propane_tank", "fields": ["{shop}", "fuel_multi"], "geometry": ["point", "area"], "tags": {"shop": "fuel"}, "name": "Fuel Shop", "matchScore": 0.5}, - "shop/funeral_directors": {"icon": "maki-cemetery", "fields": ["{shop}", "religion", "denomination"], "geometry": ["point", "area"], "terms": ["undertaker", "memorial home"], "tags": {"shop": "funeral_directors"}, "name": "Funeral Home"}, - "shop/furniture": {"icon": "fas-couch", "geometry": ["point", "area"], "terms": ["chair", "sofa", "table"], "tags": {"shop": "furniture"}, "name": "Furniture Store"}, - "shop/games": {"icon": "fas-dice", "geometry": ["point", "area"], "tags": {"shop": "games"}, "terms": ["board game", "card game", "dice game", "game shop", "live action role-playing game", "miniatures wargame", "strategy game"], "name": "Tabletop Game Store"}, - "shop/garden_centre": {"icon": "maki-garden-centre", "geometry": ["point", "area"], "terms": ["landscape", "mulch", "shrub", "tree"], "tags": {"shop": "garden_centre"}, "name": "Garden Center"}, - "shop/gas": {"icon": "temaki-propane_tank", "geometry": ["point", "area"], "terms": ["cng", "lpg", "natural gas", "propane", "refill", "tank"], "tags": {"shop": "gas"}, "name": "Bottled Gas Shop"}, - "shop/general": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "general"}, "terms": ["village shop"], "name": "General Store"}, - "shop/gift": {"icon": "maki-gift", "geometry": ["point", "area"], "terms": ["souvenir"], "tags": {"shop": "gift"}, "name": "Gift Shop"}, - "shop/greengrocer": {"icon": "fas-carrot", "fields": ["{shop}", "organic"], "geometry": ["point", "area"], "terms": ["fruit", "produce", "vegetable"], "tags": {"shop": "greengrocer"}, "name": "Greengrocer"}, - "shop/hairdresser_supply": {"icon": "temaki-hair_care", "geometry": ["point", "area"], "terms": ["barber", "shampoo", "conditioner"], "tags": {"shop": "hairdresser_supply"}, "name": "Hairdresser Supply Store"}, - "shop/hairdresser": {"icon": "temaki-beauty_salon", "geometry": ["point", "area"], "terms": ["barber"], "tags": {"shop": "hairdresser"}, "name": "Hairdresser"}, - "shop/hardware": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "hardware"}, "terms": ["craft", "diy", "do it yourself", "hardware", "home improvement", "tools"], "name": "Hardware Store"}, - "shop/health_food": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["wholefood", "vitamins", "vegetarian", "vegan"], "tags": {"shop": "health_food"}, "name": "Health Food Shop"}, - "shop/hearing_aids": {"icon": "temaki-hearing_aid", "geometry": ["point", "area"], "tags": {"shop": "hearing_aids"}, "name": "Hearing Aids Store"}, - "shop/herbalist": {"icon": "fas-leaf", "geometry": ["point", "area"], "tags": {"shop": "herbalist"}, "name": "Herbalist"}, - "shop/hifi": {"icon": "temaki-speaker", "geometry": ["point", "area"], "terms": ["audio", "hi-fi", "high fidelity", "stereo", "video"], "tags": {"shop": "hifi"}, "name": "Hifi Store"}, - "shop/hobby": {"icon": "fas-dragon", "geometry": ["point", "area"], "tags": {"shop": "hobby"}, "terms": ["manga", "figurine", "model"], "name": "Hobby Shop"}, - "shop/household_linen": {"icon": "temaki-cloth", "geometry": ["point", "area"], "tags": {"shop": "household_linen"}, "terms": ["bedspreads", "blankets", "domestic cloths", "curtains", "handkerchieves", "napkins", "pillow cases", "robes", "sheets", "towels"], "name": "Household Linen Shop"}, - "shop/houseware": {"icon": "fas-blender", "geometry": ["point", "area"], "terms": ["home", "household", "kitchenware"], "tags": {"shop": "houseware"}, "name": "Houseware Store"}, - "shop/hunting": {"icon": "temaki-bow_and_arrow", "geometry": ["point", "area"], "tags": {"shop": "hunting"}, "terms": ["arrows", "bows", "bullets", "crossbows", "rifles", "traps"], "name": "Hunting Shop"}, - "shop/interior_decoration": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "interior_decoration"}, "name": "Interior Decoration Store"}, - "shop/jewelry": {"icon": "maki-jewelry-store", "geometry": ["point", "area"], "terms": ["bracelet", "diamond", "earrings", "gem", "gold", "jeweler", "jewellery", "jeweller", "necklace", "pins", "ring", "silver"], "tags": {"shop": "jewelry"}, "name": "Jewelry Store"}, - "shop/kiosk": {"icon": "fas-store", "geometry": ["point", "area"], "tags": {"shop": "kiosk"}, "name": "Kiosk"}, - "shop/kitchen": {"icon": "temaki-kitchen_sink", "geometry": ["point", "area"], "tags": {"shop": "kitchen"}, "terms": ["cabinets", "countertops", "sinks"], "name": "Kitchen Design Store"}, - "shop/laundry": {"icon": "temaki-laundry", "fields": ["{shop}", "self_service"], "geometry": ["point", "area"], "tags": {"shop": "laundry"}, "name": "Laundry"}, - "shop/laundry/self_service": {"icon": "temaki-laundry", "geometry": ["point", "area"], "tags": {"shop": "laundry", "self_service": "yes"}, "terms": ["Coin Laundry", "Laundromat", "Coin Wash", "Launderette", "Washateria"], "name": "Self-Service Laundry"}, - "shop/leather": {"icon": "temaki-handbag", "geometry": ["point", "area"], "tags": {"shop": "leather"}, "name": "Leather Store"}, - "shop/lighting": {"icon": "temaki-desk_lamp", "geometry": ["point", "area"], "terms": ["fluorescent lighting", "lamps", "LEDs", "light fixtures", "lightbulbs"], "tags": {"shop": "lighting"}, "name": "Lighting Store"}, - "shop/locksmith": {"icon": "fas-key", "geometry": ["point", "area"], "terms": ["key", "lockpick"], "tags": {"shop": "locksmith"}, "name": "Locksmith"}, - "shop/lottery": {"icon": "fas-ticket-alt", "moreFields": ["{shop}", "min_age"], "geometry": ["point", "area"], "tags": {"shop": "lottery"}, "terms": ["lotto tickets", "gamble", "gambling", "scratch-offs"], "name": "Lottery Shop"}, - "shop/mall": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["shopping"], "tags": {"shop": "mall"}, "name": "Mall"}, - "shop/massage": {"icon": "temaki-spa", "geometry": ["point", "area"], "tags": {"shop": "massage"}, "name": "Massage Shop"}, - "shop/medical_supply": {"icon": "fas-crutch", "geometry": ["point", "area"], "tags": {"shop": "medical_supply"}, "name": "Medical Supply Store"}, - "shop/military_surplus": {"icon": "temaki-military", "geometry": ["point", "area"], "terms": ["armor", "army-navy store", "army surplus", "navy surplus", "tactical gear", "war surplus shop", "weapons"], "tags": {"shop": "military_surplus"}, "name": "Military Surplus Store"}, - "shop/mobile_phone": {"icon": "fas-mobile-alt", "geometry": ["point", "area"], "tags": {"shop": "mobile_phone"}, "name": "Mobile Phone Store"}, - "shop/model": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "model"}, "terms": ["hobby", "model building", "model figures", "model kits", "model store", "scale models"], "name": "Model Shop"}, - "shop/money_lender": {"icon": "temaki-money_hand", "fields": ["{shop}", "currency_multi"], "geometry": ["point", "area"], "tags": {"shop": "money_lender"}, "name": "Money Lender"}, - "shop/motorcycle_repair": {"icon": "temaki-motorcycle_repair", "fields": ["{shop}", "service/vehicle"], "geometry": ["point", "area"], "terms": ["auto", "bike", "garage", "motorcycle", "repair", "service"], "tags": {"shop": "motorcycle_repair"}, "name": "Motorcycle Repair Shop"}, - "shop/motorcycle": {"icon": "fas-motorcycle", "fields": ["name", "brand", "{shop}"], "geometry": ["point", "area"], "terms": ["bike"], "tags": {"shop": "motorcycle"}, "name": "Motorcycle Dealership"}, - "shop/music": {"icon": "fas-compact-disc", "geometry": ["point", "area"], "terms": ["tape cassettes", "CDs", "compact discs", "vinyl records", "CD store", "casette", "casette store"], "tags": {"shop": "music"}, "name": "Music Store"}, - "shop/musical_instrument": {"icon": "fas-guitar", "geometry": ["point", "area"], "terms": ["guitar"], "tags": {"shop": "musical_instrument"}, "name": "Musical Instrument Store"}, - "shop/newsagent": {"icon": "fas-newspaper", "geometry": ["point", "area"], "tags": {"shop": "newsagent"}, "name": "Newspaper/Magazine Shop"}, - "shop/nutrition_supplements": {"icon": "fas-pills", "geometry": ["point", "area"], "terms": ["health", "supplement", "vitamin"], "tags": {"shop": "nutrition_supplements"}, "name": "Nutrition Supplements Store"}, - "shop/optician": {"icon": "maki-optician", "geometry": ["point", "area"], "terms": ["eye", "glasses"], "tags": {"shop": "optician"}, "name": "Optician"}, - "shop/outdoor": {"icon": "temaki-compass", "fields": ["{shop}", "clothes"], "geometry": ["point", "area"], "terms": ["camping", "climbing", "hiking", "outfitter", "outdoor equipment", "outdoor supplies"], "tags": {"shop": "outdoor"}, "name": "Outdoors Store"}, - "shop/outpost": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["online", "pick up", "pickup"], "tags": {"shop": "outpost"}, "name": "Online Retailer Outpost"}, - "shop/paint": {"icon": "fas-paint-roller", "geometry": ["point", "area"], "tags": {"shop": "paint"}, "name": "Paint Store"}, - "shop/party": {"icon": "temaki-balloon", "geometry": ["point", "area"], "terms": ["balloons", "costumes", "decorations", "invitations"], "tags": {"shop": "party"}, "name": "Party Supply Store"}, - "shop/pastry": {"icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"shop": "pastry"}, "terms": ["patisserie", "cake shop", "cakery"], "name": "Pastry Shop"}, - "shop/pawnbroker": {"icon": "temaki-money_hand", "geometry": ["point", "area"], "tags": {"shop": "pawnbroker"}, "name": "Pawn Shop"}, - "shop/perfumery": {"icon": "temaki-perfume", "geometry": ["point", "area"], "tags": {"shop": "perfumery"}, "terms": ["cologne", "fragrance", "purfume"], "name": "Perfume Store"}, - "shop/pet_grooming": {"icon": "temaki-pet_grooming", "geometry": ["point", "area"], "terms": ["cat", "dog"], "tags": {"shop": "pet_grooming"}, "name": "Pet Grooming Store"}, - "shop/pet": {"icon": "fas-cat", "geometry": ["point", "area"], "terms": ["animal", "cat", "dog", "fish", "kitten", "puppy", "reptile"], "tags": {"shop": "pet"}, "name": "Pet Store"}, - "shop/photo": {"icon": "fas-camera-retro", "geometry": ["point", "area"], "terms": ["camera", "film", "lens", "photo"], "tags": {"shop": "photo"}, "name": "Photography Store"}, - "shop/pottery": {"icon": "temaki-vase", "geometry": ["point", "area"], "terms": ["ceramic", "pot", "vase"], "tags": {"shop": "pottery"}, "name": "Pottery Store"}, - "shop/printer_ink": {"icon": "fas-print", "geometry": ["point", "area"], "terms": ["copier ink", "fax ink", "ink cartridges", "toner"], "tags": {"shop": "printer_ink"}, "name": "Printer Ink Store"}, - "shop/psychic": {"icon": "temaki-psychic", "geometry": ["point", "area"], "tags": {"shop": "psychic"}, "terms": ["astrology", "crystal ball", "divination", "fortune teller", "seer", "spirit"], "name": "Psychic"}, - "shop/pyrotechnics": {"icon": "temaki-rocket_firework", "geometry": ["point", "area"], "tags": {"shop": "pyrotechnics"}, "terms": ["fireworks"], "name": "Fireworks Store"}, - "shop/radiotechnics": {"icon": "fas-microchip", "geometry": ["point", "area"], "tags": {"shop": "radiotechnics"}, "terms": ["antenna", "transistor"], "name": "Radio/Electronic Component Store"}, - "shop/religion": {"icon": "maki-shop", "fields": ["{shop}", "religion", "denomination"], "geometry": ["point", "area"], "tags": {"shop": "religion"}, "name": "Religious Store"}, - "shop/rental": {"icon": "fas-dolly", "geometry": ["point", "area"], "tags": {"shop": "rental"}, "name": "Rental Shop"}, - "shop/scuba_diving": {"icon": "temaki-scuba_diving", "fields": ["{shop}", "scuba_diving"], "geometry": ["point", "area"], "terms": ["diving", "scuba", "snorkel"], "tags": {"shop": "scuba_diving"}, "name": "Scuba Diving Shop"}, - "shop/seafood": {"icon": "temaki-fish_cleaning", "geometry": ["point", "area"], "terms": ["fishmonger"], "tags": {"shop": "seafood"}, "name": "Seafood Shop"}, - "shop/second_hand": {"icon": "maki-shop", "fields": ["{shop}", "second_hand"], "geometry": ["point", "area"], "terms": ["secondhand", "second hand", "resale", "thrift", "used"], "tags": {"shop": "second_hand"}, "name": "Consignment/Thrift Store"}, - "shop/sewing": {"icon": "temaki-needle_and_spool", "geometry": ["point", "area"], "terms": ["haberdashery"], "tags": {"shop": "sewing"}, "name": "Sewing Supply Shop"}, - "shop/shoe_repair": {"icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoe_repair"}, "terms": ["cobbler"], "name": "Shoe Repair Shop"}, - "shop/shoes": {"icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"shop": "shoes"}, "terms": ["boots", "cleats", "clogs", "heels", "loafers", "oxfords", "sneakers"], "name": "Shoe Store"}, - "shop/spices": {"icon": "temaki-spice_bottle", "geometry": ["point", "area"], "terms": ["chili", "cinnamon", "curry", "ginger", "herbs", "pepper", "saffron", "salt", "spice store", "spices", "turmeric", "wasabi"], "tags": {"shop": "spices"}, "name": "Spice Shop"}, - "shop/sports": {"icon": "fas-futbol", "fields": ["name", "operator", "sport", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "sports"}, "terms": ["athletics"], "name": "Sporting Goods Store"}, - "shop/stationery": {"icon": "fas-paperclip", "geometry": ["point", "area"], "terms": ["card", "paper"], "tags": {"shop": "stationery"}, "name": "Stationery Store"}, - "shop/storage_rental": {"icon": "temaki-storage_rental", "geometry": ["point", "area"], "tags": {"shop": "storage_rental"}, "terms": ["device storage", "garages", "self storage", "self-service storage", "storage lockers", "storage rental", "storage units"], "name": "Storage Rental"}, - "shop/supermarket": {"icon": "maki-grocery", "moreFields": ["{shop}", "diet_multi", "organic"], "geometry": ["point", "area"], "terms": ["grocery", "store", "shop", "grocery store", "market", "food market"], "tags": {"shop": "supermarket"}, "name": "Supermarket"}, - "shop/supermarket/organic": {"icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"shop": "supermarket", "organic": "only"}, "reference": {"key": "organic"}, "terms": ["natural foods"], "name": "Organic Supermarket"}, - "shop/swimming_pool": {"icon": "fas-swimmer", "geometry": ["point", "area"], "terms": ["hot tub equipment store", "hot tub maintenance store", "hot tub supply store", "pool shop", "pool store", "swimming pool equipment store", "swimming pool installation store", "swimming pool maintenance store", "swimming pool supply shop"], "tags": {"shop": "swimming_pool"}, "name": "Pool Supply Store"}, - "shop/tailor": {"icon": "temaki-needle_and_spool", "geometry": ["point", "area"], "terms": ["clothes", "suit"], "tags": {"shop": "tailor"}, "name": "Tailor"}, - "shop/tattoo": {"icon": "temaki-tattoo_machine", "moreFields": ["{shop}", "min_age"], "geometry": ["point", "area"], "tags": {"shop": "tattoo"}, "terms": ["ink"], "name": "Tattoo Parlor"}, - "shop/tea": {"icon": "maki-teahouse", "geometry": ["point", "area"], "tags": {"shop": "tea"}, "name": "Tea Store"}, - "shop/telecommunication": {"icon": "maki-telephone", "geometry": ["point", "area"], "terms": ["communication", "internet service provider", "isp", "network", "telephone", "voice"], "tags": {"shop": "telecommunication"}, "name": "Telecom Retail Store"}, - "shop/ticket": {"icon": "fas-ticket-alt", "geometry": ["point", "area"], "tags": {"shop": "ticket"}, "terms": ["box office"], "name": "Ticket Seller"}, - "shop/tiles": {"icon": "temaki-tiling", "geometry": ["point", "area"], "tags": {"shop": "tiles"}, "name": "Tile Shop"}, - "shop/tobacco": {"icon": "temaki-pipe", "moreFields": ["{shop}", "min_age"], "geometry": ["point", "area"], "tags": {"shop": "tobacco"}, "terms": ["cigarettes", "cigars"], "name": "Tobacco Shop"}, - "shop/tool_hire": {"icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"shop": "tool_hire"}, "name": "Tool Rental"}, - "shop/toys": {"icon": "fas-rocket", "geometry": ["point", "area"], "tags": {"shop": "toys"}, "terms": ["games"], "name": "Toy Store"}, - "shop/trade": {"icon": "temaki-tools", "fields": ["name", "trade", "{shop}"], "geometry": ["point", "area"], "tags": {"shop": "trade"}, "name": "Trade Shop"}, - "shop/travel_agency": {"icon": "fas-suitcase", "geometry": ["point", "area"], "tags": {"shop": "travel_agency"}, "terms": ["cruises", "flights", "hotels", "tickets", "travel packages"], "name": "Travel Agency"}, - "shop/trophy": {"icon": "fas-trophy", "geometry": ["point", "area"], "tags": {"shop": "trophy"}, "terms": ["awards", "engravings", "medals", "plaques", "trophy store"], "name": "Trophy Shop"}, - "shop/tyres": {"icon": "temaki-tire", "geometry": ["point", "area"], "tags": {"shop": "tyres"}, "name": "Tire Store"}, - "shop/vacuum_cleaner": {"icon": "temaki-vacuum", "geometry": ["point", "area"], "tags": {"shop": "vacuum_cleaner"}, "name": "Vacuum Cleaner Store"}, - "shop/variety_store": {"icon": "maki-shop", "geometry": ["point", "area"], "tags": {"shop": "variety_store"}, "name": "Variety Store"}, - "shop/video_games": {"icon": "maki-gaming", "geometry": ["point", "area"], "tags": {"shop": "video_games"}, "name": "Video Game Store"}, - "shop/video": {"icon": "temaki-movie_rental", "moreFields": ["{shop}", "min_age"], "geometry": ["point", "area"], "terms": ["DVD", "VHS", "video cassette", "video casette"], "tags": {"shop": "video"}, "name": "Video Store"}, - "shop/watches": {"icon": "maki-watch", "geometry": ["point", "area"], "tags": {"shop": "watches"}, "name": "Watches Shop"}, - "shop/water_sports": {"icon": "fas-swimmer", "geometry": ["point", "area"], "tags": {"shop": "water_sports"}, "name": "Watersport/Swim Shop"}, - "shop/water": {"icon": "temaki-water_bottle", "geometry": ["point", "area"], "tags": {"shop": "water"}, "name": "Drinking Water Shop"}, - "shop/weapons": {"icon": "temaki-dagger", "geometry": ["point", "area"], "terms": ["ammo", "gun", "knife", "knives"], "tags": {"shop": "weapons"}, "name": "Weapon Shop"}, - "shop/wholesale": {"icon": "maki-warehouse", "fields": ["{shop}", "wholesale"], "geometry": ["point", "area"], "terms": ["warehouse club", "cash and carry"], "tags": {"shop": "wholesale"}, "name": "Wholesale Store"}, - "shop/wigs": {"icon": "maki-shop", "geometry": ["point", "area"], "terms": ["hair extensions", "hair extentions"], "tags": {"shop": "wigs"}, "name": "Wig Shop"}, - "shop/window_blind": {"icon": "temaki-window", "geometry": ["point", "area"], "tags": {"shop": "window_blind"}, "name": "Window Blind Store"}, - "shop/wine": {"icon": "maki-alcohol-shop", "moreFields": ["{shop}", "min_age"], "geometry": ["point", "area"], "tags": {"shop": "wine"}, "name": "Wine Shop"}, - "telecom/data_center": {"icon": "fas-server", "fields": ["name", "ref", "operator", "building_area"], "moreFields": ["address", "gnis/feature_id", "phone", "website"], "geometry": ["point", "area"], "tags": {"telecom": "data_center"}, "terms": ["computer systems storage", "information technology", "server farm", "the cloud", "telecommunications"], "name": "Data Center"}, - "telecom/exchange": {"icon": "temaki-cable", "fields": ["ref", "operator", "telecom/medium", "address", "building_area"], "geometry": ["point", "area"], "tags": {"telecom": "exchange"}, "terms": ["telecommunications", "telephone exchange", "telephone switch"], "name": "Telecom Exchange"}, - "tourism/alpine_hut": {"icon": "temaki-cabin", "fields": ["name", "operator", "address", "building_area", "internet_access", "internet_access/fee", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access/ssid", "phone", "reservation", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["cabin", "climbing hut", "lodge", "lodging", "overnight accommodations", "wilderness hut"], "tags": {"tourism": "alpine_hut"}, "name": "Alpine Hut"}, - "tourism/apartment": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "rooms", "internet_access", "internet_access/fee"], "moreFields": ["building/levels_building", "email", "fax", "height_building", "internet_access/ssid", "level", "payment_multi", "phone", "reservation", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"tourism": "apartment"}, "terms": ["bnb", "holiday rental", "lodging", "overnight accommodations", "vacation rental"], "name": "Guest Apartment / Condo"}, - "tourism/aquarium": {"icon": "maki-aquarium", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["charge_fee", "email", "fax", "fee", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "payment_multi_fee", "phone", "ref/vatin", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["fish", "sea", "water"], "tags": {"tourism": "aquarium"}, "name": "Aquarium"}, - "tourism/artwork": {"icon": "maki-art-gallery", "fields": ["name", "artwork_type", "artist"], "moreFields": ["level", "material", "website"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "artwork"}, "terms": ["mural", "sculpture", "statue"], "name": "Artwork"}, - "tourism/artwork/bust": {"icon": "fas-user-alt", "fields": ["name", "artist", "material", "inscription"], "geometry": ["point", "vertex"], "tags": {"tourism": "artwork", "artwork_type": "bust"}, "reference": {"key": "artwork_type", "value": "bust"}, "terms": ["figure"], "name": "Bust"}, - "tourism/artwork/graffiti": {"icon": "maki-art-gallery", "fields": ["name", "artist"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "artwork", "artwork_type": "graffiti"}, "reference": {"key": "artwork_type", "value": "graffiti"}, "terms": ["Street Artwork", "Guerrilla Artwork", "Guerilla Artwork", "Graffiti Artwork"], "name": "Graffiti"}, - "tourism/artwork/installation": {"icon": "temaki-sculpture", "fields": ["name", "artist"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "artwork", "artwork_type": "installation"}, "reference": {"key": "artwork_type", "value": "installation"}, "terms": ["interactive art", "intervention art", "modern art"], "name": "Art Installation"}, - "tourism/artwork/mural": {"icon": "maki-art-gallery", "fields": ["name", "artist"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "artwork", "artwork_type": "mural"}, "reference": {"key": "artwork_type", "value": "mural"}, "terms": ["fresco", "wall painting"], "name": "Mural"}, - "tourism/artwork/sculpture": {"icon": "temaki-sculpture", "fields": ["name", "artist", "material"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "artwork", "artwork_type": "sculpture"}, "reference": {"key": "artwork_type", "value": "sculpture"}, "terms": ["statue", "figure", "carving"], "name": "Sculpture"}, - "tourism/artwork/statue": {"icon": "temaki-statue", "fields": ["name", "artist", "material"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "artwork", "artwork_type": "statue"}, "reference": {"key": "artwork_type", "value": "statue"}, "terms": ["sculpture", "figure", "carving"], "name": "Statue"}, - "tourism/attraction": {"icon": "maki-star", "fields": ["name", "operator", "address"], "moreFields": ["gnis/feature_id"], "geometry": ["point", "vertex", "line", "area"], "tags": {"tourism": "attraction"}, "matchScore": 0.75, "name": "Tourist Attraction"}, - "tourism/camp_pitch": {"icon": "maki-campsite", "fields": ["name", "ref"], "geometry": ["point", "area"], "terms": ["tent", "rv"], "tags": {"tourism": "camp_pitch"}, "name": "Camp Pitch"}, - "tourism/camp_site": {"icon": "maki-campsite", "fields": ["name", "operator", "address", "access_simple", "capacity", "fee", "payment_multi_fee", "charge_fee"], "moreFields": ["backcountry", "dog", "email", "fax", "gnis/feature_id", "group_only", "internet_access", "internet_access/fee", "internet_access/ssid", "openfire", "opening_hours", "opening_hours/covid19", "phone", "power_supply", "ref/vatin", "reservation", "sanitary_dump_station", "shower", "stars", "toilets", "website", "wheelchair"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "camp_site"}, "terms": ["caravans", "camp ground", "camp pitch", "camp site", "campers", "campground", "campsite", "mobile homes", "recreational vehicles", "rv", "tenting"], "name": "Campground"}, - "tourism/camp_site/backcountry": {"icon": "maki-campsite", "geometry": ["point", "vertex", "area"], "tags": {"tourism": "camp_site", "backcountry": "yes"}, "reference": {"key": "backcountry"}, "terms": ["alpine camping", "backpacking site", "backwoods camping", "camp ground", "camp pitch", "camp site", "campground", "campsite", "informal camping", "primitive camping"], "name": "Backcountry Camping Area"}, - "tourism/camp_site/group_only": {"icon": "maki-campsite", "geometry": ["point", "vertex", "area"], "tags": {"tourism": "camp_site", "group_only": "yes"}, "reference": {"key": "group_only"}, "terms": ["camp ground", "camp pitch", "camp site", "campground", "campsite", "scout camping", "youth camping"], "name": "Group Camping Area"}, - "tourism/caravan_site": {"icon": "temaki-camper_trailer", "fields": ["name", "address", "capacity", "sanitary_dump_station", "power_supply", "internet_access", "internet_access/fee"], "moreFields": ["charge_fee", "email", "fax", "fee", "gnis/feature_id", "internet_access/ssid", "operator", "payment_multi_fee", "phone", "reservation", "smoking", "website", "wheelchair"], "geometry": ["point", "vertex", "area"], "terms": ["Motor Home", "Camper"], "tags": {"tourism": "caravan_site"}, "name": "RV Park"}, - "tourism/chalet": {"icon": "temaki-cabin", "fields": ["name", "operator", "address", "building_area", "internet_access", "internet_access/fee"], "moreFields": ["air_conditioning", "building/levels_building", "email", "fax", "gnis/feature_id", "height_building", "internet_access/ssid", "payment_multi", "phone", "reservation", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["chalet", "holiday cabin", "holiday cottage", "holiday home", "lodge", "lodging", "overnight accommodations", "vacation cabin", "vacation home"], "tags": {"tourism": "chalet"}, "name": "Holiday Cottage"}, - "tourism/gallery": {"icon": "maki-art-gallery", "fields": ["name", "operator", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "payment_multi", "phone", "ref/vatin", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["art*", "exhibit*", "paint*", "photo*", "sculpt*"], "tags": {"tourism": "gallery"}, "name": "Art Gallery"}, - "tourism/guest_house": {"icon": "maki-lodging", "fields": ["name", "operator", "guest_house", "address", "building_area", "rooms", "internet_access", "internet_access/fee"], "moreFields": ["air_conditioning", "building/levels_building", "email", "fax", "gnis/feature_id", "height_building", "internet_access/ssid", "payment_multi", "phone", "ref/vatin", "reservation", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"tourism": "guest_house"}, "terms": ["b & b", "b and b", "B&B", "Bed and Breakfast", "bnb", "lodging", "overnight accommodations"], "name": "Guest House"}, - "tourism/hostel": {"icon": "temaki-bunk_beds", "fields": ["{tourism/guest_house}"], "moreFields": ["{tourism/guest_house}"], "geometry": ["point", "area"], "tags": {"tourism": "hostel"}, "terms": ["bunk beds", "dormitories", "dorms", "lodging", "overnight accommodations"], "name": "Hostel"}, - "tourism/hotel": {"icon": "fas-concierge-bell", "fields": ["{tourism/motel}"], "moreFields": ["{tourism/motel}", "bar", "stars"], "geometry": ["point", "area"], "tags": {"tourism": "hotel"}, "terms": ["concierge", "lodge", "lodging", "overnight accommodations"], "name": "Hotel"}, - "tourism/information": {"icon": "maki-information", "fields": ["information", "operator", "address", "building_area"], "moreFields": ["level"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "information"}, "name": "Information"}, - "tourism/information/board": {"icon": "temaki-info_board", "fields": ["name", "operator", "board_type", "direction"], "geometry": ["point", "vertex"], "tags": {"tourism": "information", "information": "board"}, "reference": {"key": "information", "value": "board"}, "name": "Information Board"}, - "tourism/information/board/welcome_sign": {"icon": "maki-embassy", "geometry": ["point"], "terms": ["new location"], "tags": {"tourism": "information", "information": "board", "board_type": "welcome_sign"}, "name": "Welcome Sign"}, - "tourism/information/guidepost": {"icon": "fas-map-signs", "fields": ["name", "ele_node", "operator", "ref"], "moreFields": ["material"], "geometry": ["point", "vertex"], "terms": ["signpost"], "tags": {"tourism": "information", "information": "guidepost"}, "reference": {"key": "information", "value": "guidepost"}, "name": "Guidepost"}, - "tourism/information/map": {"icon": "fas-map", "fields": ["operator", "map_type", "map_size", "direction"], "geometry": ["point", "vertex"], "tags": {"tourism": "information", "information": "map"}, "reference": {"key": "information", "value": "map"}, "name": "Map"}, - "tourism/information/office": {"icon": "maki-information", "fields": ["name", "operator", "address", "building_area", "internet_access", "internet_access/fee"], "moreFields": ["building/levels_building", "email", "fax", "gnis/feature_id", "height_building", "internet_access/ssid", "phone", "website", "wheelchair"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "information", "information": "office"}, "reference": {"key": "information", "value": "office"}, "terms": ["information office", "tour guide", "tourism office", "tourist information center", "visitors center", "visitors information center", "welcome center"], "name": "Visitor Center"}, - "tourism/information/route_marker": {"icon": "maki-information", "fields": ["ref", "operator", "colour", "material", "ele_node"], "geometry": ["point", "vertex"], "terms": ["cairn", "painted blaze", "route flag", "route marker", "stone pile", "trail blaze", "trail post", "way marker"], "tags": {"tourism": "information", "information": "route_marker"}, "reference": {"key": "information", "value": "route_marker"}, "name": "Trail Marker"}, - "tourism/information/terminal": {"icon": "temaki-app_terminal", "fields": ["operator"], "geometry": ["point", "vertex"], "tags": {"tourism": "information", "information": "terminal"}, "reference": {"key": "information", "value": "terminal"}, "name": "Information Terminal"}, - "tourism/motel": {"icon": "maki-lodging", "fields": ["name", "brand", "address", "building_area", "rooms", "internet_access", "internet_access/fee"], "moreFields": ["air_conditioning", "brand", "building/levels_building", "email", "fax", "gnis/feature_id", "height_building", "internet_access/ssid", "operator", "payment_multi", "phone", "ref/vatin", "reservation", "smoking", "website", "wheelchair"], "geometry": ["point", "area"], "tags": {"tourism": "motel"}, "terms": ["lodging", "motor hotel", "overnight accommodations"], "name": "Motel"}, - "tourism/museum": {"icon": "temaki-museum", "fields": ["name", "operator", "operator/type", "museum", "address", "building_area", "opening_hours", "opening_hours/covid19"], "moreFields": ["air_conditioning", "building/levels_building", "charge_fee", "email", "fax", "fee", "gnis/feature_id", "height_building", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "payment_multi", "phone", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["art*", "exhibit*", "gallery", "foundation", "hall", "institution", "paint*", "photo*", "sculpt*"], "tags": {"tourism": "museum"}, "name": "Museum"}, - "tourism/museum/history": {"icon": "temaki-museum", "geometry": ["point", "area"], "terms": ["artifacts", "dioramas", "exhibits", "exhibitions", "foundation", "hall", "institution"], "tags": {"tourism": "museum", "museum": "history"}, "reference": {"key": "museum", "value": "history"}, "name": "History Museum"}, - "tourism/picnic_site": {"icon": "maki-picnic-site", "fields": ["name", "operator", "address", "access_simple", "capacity"], "moreFields": ["charge_fee", "fee", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "level", "payment_multi_fee", "phone", "reservation", "smoking", "website", "wheelchair"], "geometry": ["point", "vertex", "area"], "terms": ["camp"], "tags": {"tourism": "picnic_site"}, "name": "Picnic Site"}, - "tourism/theme_park": {"icon": "maki-amusement-park", "fields": ["name", "operator", "address", "opening_hours", "opening_hours/covid19", "website"], "moreFields": ["brand", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "payment_multi", "phone", "wheelchair"], "geometry": ["point", "area"], "tags": {"tourism": "theme_park"}, "name": "Theme Park"}, - "tourism/trail_riding_station": {"icon": "maki-horse-riding", "fields": ["name", "horse_stables", "horse_riding", "horse_dressage"], "moreFields": ["address", "email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "opening_hours", "opening_hours/covid19", "phone", "website"], "geometry": ["point", "area"], "tags": {"tourism": "trail_riding_station"}, "name": "Trail Riding Station", "matchScore": 2}, - "tourism/viewpoint": {"icon": "temaki-spotting_scope", "geometry": ["point", "vertex"], "fields": ["direction"], "moreFields": ["level"], "tags": {"tourism": "viewpoint"}, "name": "Viewpoint"}, - "tourism/wilderness_hut": {"icon": "temaki-cabin", "fields": ["name", "operator", "address", "building_area", "fee", "payment_multi_fee", "charge_fee", "fireplace"], "moreFields": ["gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "reservation", "wheelchair"], "geometry": ["point", "area"], "terms": ["alpine hut", "cabin", "backcountry hut", "bothy", "lodge", "lodging", "overnight accommodations", "sleeping shelter", "wilderness hut"], "tags": {"tourism": "wilderness_hut"}, "name": "Wilderness Hut"}, - "tourism/zoo": {"icon": "temaki-zoo", "fields": ["name", "operator", "address", "opening_hours", "opening_hours/covid19", "fee", "charge_fee"], "moreFields": ["email", "fax", "gnis/feature_id", "internet_access", "internet_access/fee", "internet_access/ssid", "payment_multi", "phone", "ref/vatin", "website", "wheelchair"], "geometry": ["point", "area"], "terms": ["animal"], "tags": {"tourism": "zoo"}, "name": "Zoo"}, - "tourism/zoo/petting": {"icon": "fas-horse", "geometry": ["point", "area"], "tags": {"tourism": "zoo", "zoo": "petting_zoo"}, "reference": {"key": "zoo", "value": "petting_zoo"}, "terms": ["Children's Zoo", "Children's Farm", "Petting Farm", "farm animals"], "name": "Petting Zoo"}, - "tourism/zoo/safari": {"icon": "temaki-zoo", "geometry": ["point", "area"], "tags": {"tourism": "zoo", "zoo": "safari_park"}, "reference": {"key": "zoo", "value": "safari_park"}, "terms": ["Drive-Through Zoo", "Drive-In Zoo"], "name": "Safari Park"}, - "tourism/zoo/wildlife": {"icon": "fas-frog", "geometry": ["point", "area"], "tags": {"tourism": "zoo", "zoo": "wildlife_park"}, "reference": {"key": "zoo", "value": "wildlife_park"}, "terms": ["indigenous animals"], "name": "Wildlife Park"}, - "traffic_calming": {"icon": "temaki-diamond", "fields": ["traffic_calming", "surface", "direction_vertex"], "geometry": ["vertex", "line", "area"], "tags": {"traffic_calming": "*"}, "terms": ["bump", "hump", "slow", "speed"], "name": "Traffic Calming"}, - "traffic_calming/bump": {"icon": "temaki-speed_bump", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["hump", "speed", "slow"], "tags": {"traffic_calming": "bump"}, "name": "Speed Bump"}, - "traffic_calming/chicane": {"icon": "temaki-chicane_arrow", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line", "area"], "terms": ["driveway link", "speed", "slow"], "tags": {"traffic_calming": "chicane"}, "name": "Traffic Chicane"}, - "traffic_calming/choker": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line", "area"], "terms": ["speed", "slow"], "tags": {"traffic_calming": "choker"}, "name": "Traffic Choker"}, - "traffic_calming/cushion": {"icon": "temaki-speed_hump", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["bump", "hump", "speed", "slow"], "tags": {"traffic_calming": "cushion"}, "name": "Speed Cushion"}, - "traffic_calming/dip": {"icon": "temaki-speed_dip", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["speed", "slow"], "tags": {"traffic_calming": "dip"}, "name": "Dip"}, - "traffic_calming/hump": {"icon": "temaki-speed_hump", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["bump", "speed", "slow"], "tags": {"traffic_calming": "hump"}, "name": "Speed Hump"}, - "traffic_calming/island": {"icon": "temaki-diamond", "fields": ["surface"], "geometry": ["vertex", "line", "area"], "terms": ["circle", "roundabout", "slow"], "tags": {"traffic_calming": "island"}, "name": "Traffic Island"}, - "traffic_calming/rumble_strip": {"icon": "temaki-rumble_strip", "fields": ["direction_vertex"], "geometry": ["vertex", "line"], "terms": ["audible lines", "sleeper lines", "growlers"], "tags": {"traffic_calming": "rumble_strip"}, "name": "Rumble Strip"}, - "traffic_calming/table": {"icon": "temaki-speed_table", "fields": ["surface", "direction_vertex"], "geometry": ["vertex"], "tags": {"traffic_calming": "table"}, "terms": ["flat top", "hump", "speed", "slow"], "name": "Speed Table"}, - "traffic_sign": {"icon": "fas-directions", "fields": ["traffic_sign", "traffic_sign/direction", "direction_point"], "geometry": ["point", "vertex"], "tags": {"traffic_sign": "*"}, "terms": ["road", "highway"], "name": "Traffic Sign"}, - "traffic_sign/city_limit": {"icon": "maki-square-stroked", "fields": ["{traffic_sign}", "name"], "geometry": ["point", "vertex"], "tags": {"traffic_sign": "city_limit"}, "terms": ["town", "village", "hamlet", "boundary", "edge", "border", "road", "highway"], "name": "City Limit Sign"}, - "traffic_sign/maxspeed": {"icon": "maki-square-stroked", "fields": ["{traffic_sign}", "maxspeed"], "geometry": ["point", "vertex"], "tags": {"traffic_sign": "maxspeed"}, "terms": ["max speed", "maximum speed", "road", "highway"], "name": "Speed Limit Sign"}, - "type/multipolygon": {"icon": "iD-multipolygon", "geometry": ["area", "relation"], "tags": {"type": "multipolygon"}, "removeTags": {}, "name": "Multipolygon", "searchable": false, "matchScore": 0.1}, - "type/boundary": {"icon": "iD-boundary", "fields": ["name", "boundary"], "geometry": ["relation"], "tags": {"type": "boundary"}, "name": "Boundary"}, - "type/boundary/administrative": {"icon": "iD-boundary", "fields": ["name", "admin_level"], "moreFields": ["gnis/feature_id"], "geometry": ["relation"], "tags": {"type": "boundary", "boundary": "administrative"}, "reference": {"key": "boundary", "value": "administrative"}, "name": "Administrative Boundary"}, - "type/connectivity": {"icon": "iD-relation", "fields": ["connectivity"], "geometry": ["relation"], "tags": {"type": "connectivity"}, "name": "Lane Connectivity"}, - "type/destination_sign": {"icon": "iD-relation", "fields": ["destination", "destination/ref", "destination/symbol", "distance"], "geometry": ["relation"], "tags": {"type": "destination_sign"}, "terms": ["exit sign"], "name": "Destination Sign"}, - "type/enforcement": {"icon": "iD-relation", "fields": ["enforcement"], "geometry": ["relation"], "tags": {"type": "enforcement"}, "name": "Enforcement"}, - "type/enforcement/maxspeed": {"icon": "iD-relation", "fields": ["maxspeed"], "geometry": ["relation"], "tags": {"type": "enforcement", "enforcement": "maxspeed"}, "reference": {"key": "enforcement", "value": "maxspeed"}, "terms": ["maxspeed", "radar", "speed camera"], "name": "Speed Limit Enforcement"}, - "type/public_transport/stop_area_group": {"icon": "iD-relation", "fields": ["name", "ref", "network", "operator"], "geometry": ["relation"], "tags": {"type": "public_transport", "public_transport": "stop_area_group"}, "reference": {"key": "public_transport", "value": "stop_area_group"}, "name": "Transit Stop Area Group"}, - "type/restriction": {"icon": "iD-restriction", "fields": ["restriction", "except"], "geometry": ["relation"], "tags": {"type": "restriction"}, "name": "Restriction"}, - "type/restriction/no_left_turn": {"icon": "iD-restriction-no-left-turn", "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "no_left_turn"}, "reference": {"key": "restriction", "value": "no_left_turn"}, "name": "No Left Turn"}, - "type/restriction/no_right_turn": {"icon": "iD-restriction-no-right-turn", "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "no_right_turn"}, "reference": {"key": "restriction", "value": "no_right_turn"}, "name": "No Right Turn"}, - "type/restriction/no_straight_on": {"icon": "iD-restriction-no-straight-on", "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "no_straight_on"}, "reference": {"key": "restriction", "value": "no_straight_on"}, "name": "No Straight On"}, - "type/restriction/no_u_turn": {"icon": "iD-restriction-no-u-turn", "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "no_u_turn"}, "reference": {"key": "restriction", "value": "no_u_turn"}, "name": "No U-turn"}, - "type/restriction/only_left_turn": {"icon": "iD-restriction-only-left-turn", "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "only_left_turn"}, "reference": {"key": "restriction", "value": "only_left_turn"}, "name": "Only Left Turn"}, - "type/restriction/only_right_turn": {"icon": "iD-restriction-only-right-turn", "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "only_right_turn"}, "reference": {"key": "restriction", "value": "only_right_turn"}, "name": "Only Right Turn"}, - "type/restriction/only_straight_on": {"icon": "iD-restriction-only-straight-on", "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "only_straight_on"}, "reference": {"key": "restriction", "value": "only_straight_on"}, "name": "Only Straight On"}, - "type/restriction/only_u_turn": {"icon": "iD-restriction-only-u-turn", "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "only_u_turn"}, "reference": {"key": "restriction", "value": "only_u_turn"}, "name": "Only U-turn"}, - "type/route_master": {"icon": "iD-route-master", "fields": ["name", "route_master", "ref", "operator", "network"], "moreFields": ["colour", "interval", "opening_hours", "opening_hours/covid19", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route_master"}, "name": "Route Master"}, - "type/route": {"icon": "iD-route", "fields": ["name", "route", "ref_route", "operator", "network", "network/type"], "moreFields": ["distance"], "geometry": ["relation"], "tags": {"type": "route"}, "name": "Route"}, - "type/route/bicycle": {"icon": "maki-bicycle", "fields": ["name", "ref_route", "network_bicycle", "cycle_network", "network/type", "from", "to"], "moreFields": ["ascent", "colour", "descent", "distance", "roundtrip"], "geometry": ["relation"], "tags": {"type": "route", "route": "bicycle"}, "reference": {"key": "route", "value": "bicycle"}, "name": "Cycle Route"}, - "type/route/bus": {"icon": "temaki-bus", "fields": ["{type/route/train}"], "moreFields": ["{type/route/train}"], "geometry": ["relation"], "tags": {"type": "route", "route": "bus"}, "reference": {"key": "route", "value": "bus"}, "name": "Bus Route"}, - "type/route/detour": {"icon": "iD-route-detour", "fields": ["name", "ref_route", "from", "to"], "geometry": ["relation"], "tags": {"type": "route", "route": "detour"}, "reference": {"key": "route", "value": "detour"}, "name": "Detour Route"}, - "type/route/ferry": {"icon": "temaki-ferry", "fields": ["{route/ferry}"], "moreFields": ["{route/ferry}"], "geometry": ["relation"], "tags": {"type": "route", "route": "ferry"}, "reference": {"key": "route", "value": "ferry"}, "name": "Ferry Route"}, - "type/route/foot": {"icon": "temaki-pedestrian", "fields": ["{type/route/hiking}"], "moreFields": ["{type/route/hiking}"], "geometry": ["relation"], "tags": {"type": "route", "route": "foot"}, "reference": {"key": "route", "value": "foot"}, "name": "Walking Route"}, - "type/route/hiking": {"icon": "fas-hiking", "fields": ["name", "ref_route", "operator", "network_foot", "network/type", "from", "to"], "moreFields": ["ascent", "colour", "descent", "distance", "roundtrip"], "geometry": ["relation"], "tags": {"type": "route", "route": "hiking"}, "reference": {"key": "route", "value": "hiking"}, "name": "Hiking Route"}, - "type/route/horse": {"icon": "maki-horse-riding", "fields": ["name", "ref_route", "operator", "network_horse", "network/type", "from", "to"], "moreFields": ["ascent", "colour", "descent", "distance"], "geometry": ["relation"], "tags": {"type": "route", "route": "horse"}, "reference": {"key": "route", "value": "horse"}, "name": "Riding Route"}, - "type/route/light_rail": {"icon": "temaki-light_rail", "fields": ["{type/route/train}"], "moreFields": ["{type/route/train}"], "geometry": ["relation"], "tags": {"type": "route", "route": "light_rail"}, "reference": {"key": "route", "value": "light_rail"}, "name": "Light Rail Route"}, - "type/route/monorail": {"icon": "temaki-monorail", "fields": ["{type/route/train}"], "moreFields": ["{type/route/train}"], "geometry": ["relation"], "tags": {"type": "route", "route": "monorail"}, "reference": {"key": "route", "value": "monorail"}, "name": "Monorail Route"}, - "type/route/pipeline": {"icon": "iD-pipeline-line", "fields": ["{type/route/power}"], "moreFields": ["{type/route/power}"], "geometry": ["relation"], "tags": {"type": "route", "route": "pipeline"}, "reference": {"key": "route", "value": "pipeline"}, "name": "Pipeline Route"}, - "type/route/piste": {"icon": "fas-skiing", "fields": ["name", "piste/type", "ref_route", "operator", "from", "to"], "moreFields": ["ascent", "colour", "descent", "distance", "roundtrip"], "geometry": ["relation"], "tags": {"type": "route", "route": "piste"}, "reference": {"key": "route", "value": "piste"}, "name": "Piste/Ski Route"}, - "type/route/power": {"icon": "iD-power-line", "fields": ["name", "ref_route", "operator", "from", "to"], "moreFields": ["distance"], "geometry": ["relation"], "tags": {"type": "route", "route": "power"}, "reference": {"key": "route", "value": "power"}, "name": "Power Route"}, - "type/route/road": {"icon": "iD-highway-unclassified", "fields": ["name", "ref_route", "network_road", "from", "to"], "moreFields": ["colour", "distance", "roundtrip"], "geometry": ["relation"], "tags": {"type": "route", "route": "road"}, "reference": {"key": "route", "value": "road"}, "name": "Road Route"}, - "type/route/subway": {"icon": "temaki-subway", "fields": ["{type/route/train}"], "moreFields": ["{type/route/train}"], "geometry": ["relation"], "tags": {"type": "route", "route": "subway"}, "reference": {"key": "route", "value": "subway"}, "name": "Subway Route"}, - "type/route/train": {"icon": "temaki-train", "fields": ["name", "ref_route", "operator", "network", "from", "to"], "moreFields": ["colour", "distance", "duration", "interval", "opening_hours", "opening_hours/covid19", "roundtrip", "wheelchair"], "geometry": ["relation"], "tags": {"type": "route", "route": "train"}, "reference": {"key": "route", "value": "train"}, "name": "Train Route"}, - "type/route/tram": {"icon": "temaki-tram", "fields": ["{type/route/train}"], "moreFields": ["{type/route/train}"], "geometry": ["relation"], "tags": {"type": "route", "route": "tram"}, "reference": {"key": "route", "value": "tram"}, "name": "Tram Route"}, - "type/route/trolleybus": {"icon": "temaki-trolleybus", "fields": ["{type/route/train}"], "moreFields": ["{type/route/train}"], "geometry": ["relation"], "tags": {"type": "route", "route": "trolleybus"}, "reference": {"key": "route", "value": "trolleybus"}, "name": "Trolleybus Route"}, - "type/site": {"icon": "iD-relation", "fields": ["name", "site"], "geometry": ["relation"], "tags": {"type": "site"}, "name": "Site"}, - "type/waterway": {"icon": "iD-waterway-stream", "fields": ["name", "waterway", "destination_waterway", "ref"], "geometry": ["relation"], "tags": {"type": "waterway"}, "name": "Waterway"}, - "waterway/riverbank": {"icon": "maki-water", "geometry": ["area"], "tags": {"waterway": "riverbank"}, "name": "Riverbank", "searchable": false}, - "waterway/boatyard": {"icon": "temaki-boat", "fields": ["name", "operator"], "moreFields": ["address", "email", "fax", "gnis/feature_id", "phone", "website", "wheelchair"], "geometry": ["area", "vertex", "point"], "tags": {"waterway": "boatyard"}, "name": "Boatyard"}, - "waterway/canal": {"icon": "iD-waterway-canal", "fields": ["name", "structure_waterway", "width", "intermittent", "lock"], "moreFields": ["fishing", "gnis/feature_id", "salt", "tidal"], "geometry": ["line"], "tags": {"waterway": "canal"}, "name": "Canal"}, - "waterway/canal/lock": {"icon": "iD-waterway-canal", "fields": ["name", "width", "lock"], "moreFields": ["gnis/feature_id", "intermittent", "salt", "tidal"], "geometry": ["line"], "tags": {"waterway": "canal", "lock": "yes"}, "name": "Canal Lock"}, - "waterway/dam": {"icon": "maki-dam", "geometry": ["point", "vertex", "line", "area"], "fields": ["name", "operator", "gnis/feature_id", "height", "material"], "moreFields": ["seamark/type", "website"], "tags": {"waterway": "dam"}, "name": "Dam"}, - "waterway/ditch": {"icon": "iD-waterway-ditch", "fields": ["{waterway/drain}"], "moreFields": ["{waterway/drain}"], "geometry": ["line"], "tags": {"waterway": "ditch"}, "name": "Ditch"}, - "waterway/dock": {"icon": "maki-harbor", "fields": ["name", "dock", "operator"], "geometry": ["area", "vertex", "point"], "terms": ["boat", "ship", "vessel", "marine"], "tags": {"waterway": "dock"}, "name": "Wet Dock / Dry Dock"}, - "waterway/drain": {"icon": "iD-waterway-ditch", "fields": ["structure_waterway", "intermittent"], "moreFields": ["covered"], "geometry": ["line"], "tags": {"waterway": "drain"}, "name": "Drain"}, - "waterway/fish_pass": {"icon": "temaki-fish_ladder", "fields": ["name", "structure_waterway", "width", "seasonal"], "moreFields": ["covered", "gnis/feature_id", "salt"], "geometry": ["line"], "terms": ["eel ladder", "eel pass", "fish ladder", "fish migration", "fish passage", "fish siphon", "fish steps", "fish way", "fishladder", "fishpass", "fishsteps", "fishway"], "tags": {"waterway": "fish_pass"}, "name": "Fish Pass"}, - "waterway/fuel": {"icon": "maki-fuel", "fields": ["name", "operator", "address", "opening_hours", "opening_hours/covid19", "fuel_multi"], "moreFields": ["brand", "building", "email", "fax", "payment_multi", "phone", "seamark/type", "website", "wheelchair"], "geometry": ["point", "vertex", "area"], "terms": ["petrol", "gas", "diesel", "boat"], "tags": {"waterway": "fuel"}, "name": "Marine Fuel Station"}, - "waterway/lock_gate": {"icon": "maki-dam", "geometry": ["vertex", "line"], "fields": ["name", "ref", "height", "material"], "tags": {"waterway": "lock_gate"}, "addTags": {"waterway": "lock_gate", "seamark:type": "gate"}, "terms": ["canal"], "name": "Lock Gate"}, - "waterway/milestone": {"icon": "temaki-milestone", "fields": ["distance", "direction_vertex"], "moreFields": ["seamark/type"], "geometry": ["point", "vertex"], "tags": {"waterway": "milestone"}, "terms": ["milestone", "marker"], "name": "Waterway Milestone"}, - "waterway/river": {"icon": "iD-waterway-river", "fields": ["name", "structure_waterway", "width", "intermittent", "tidal"], "moreFields": ["covered", "fishing", "gnis/feature_id", "salt"], "geometry": ["line"], "terms": ["beck", "branch", "brook", "course", "creek", "estuary", "rill", "rivulet", "run", "runnel", "stream", "tributary", "watercourse"], "tags": {"waterway": "river"}, "name": "River"}, - "waterway/sanitary_dump_station": {"icon": "temaki-waste", "fields": ["name", "operator", "access_simple", "fee", "payment_multi_fee", "charge_fee", "water_point"], "moreFields": ["opening_hours", "opening_hours/covid19", "seamark/type"], "geometry": ["point", "vertex", "area"], "terms": ["Boat", "Watercraft", "Sanitary", "Dump Station", "Pumpout", "Pump out", "Elsan", "CDP", "CTDP", "Chemical Toilet"], "tags": {"waterway": "sanitary_dump_station"}, "name": "Marine Toilet Disposal"}, - "waterway/stream_intermittent": {"icon": "iD-waterway-stream", "fields": ["{waterway/stream}"], "moreFields": ["{waterway/stream}"], "geometry": ["line"], "terms": ["arroyo", "beck", "branch", "brook", "burn", "course", "creek", "drift", "flood", "flow", "gully", "run", "runnel", "rush", "spate", "spritz", "tributary", "wadi", "wash", "watercourse"], "tags": {"waterway": "stream", "intermittent": "yes"}, "reference": {"key": "waterway", "value": "stream"}, "name": "Intermittent Stream"}, - "waterway/stream": {"icon": "iD-waterway-stream", "fields": ["name", "structure_waterway", "width", "intermittent"], "moreFields": ["covered", "fishing", "gnis/feature_id", "salt", "tidal"], "geometry": ["line"], "terms": ["beck", "branch", "brook", "burn", "course", "creek", "current", "drift", "flood", "flow", "freshet", "race", "rill", "rindle", "rivulet", "run", "runnel", "rush", "spate", "spritz", "surge", "tide", "torrent", "tributary", "watercourse"], "tags": {"waterway": "stream"}, "name": "Stream"}, - "waterway/tidal_channel": {"icon": "iD-waterway-stream", "fields": ["name", "structure_waterway", "width", "salt", "tidal", "intermittent"], "moreFields": ["covered", "fishing", "gnis/feature_id"], "geometry": ["line"], "terms": ["coastal", "pill", "intertidal", "mangroves", "marine", "salt marsh", "tidal creek", "tidal flat", "tidal inlet", "waterway"], "tags": {"waterway": "tidal_channel"}, "name": "Tidal Channel"}, - "waterway/water_point": {"icon": "maki-drinking-water", "fields": ["{amenity/water_point}"], "moreFields": ["{amenity/water_point}"], "geometry": ["point", "vertex", "area"], "tags": {"waterway": "water_point"}, "terms": ["water faucet", "water point", "water tap", "water source", "water spigot"], "name": "Marine Drinking Water"}, - "waterway/waterfall": {"icon": "maki-waterfall", "fields": ["name", "height", "width", "intermittent"], "moreFields": ["gnis/feature_id"], "geometry": ["vertex"], "terms": ["fall"], "tags": {"waterway": "waterfall"}, "name": "Waterfall"}, - "waterway/weir": {"icon": "maki-dam", "fields": ["name", "operator", "height", "material"], "moreFields": ["gnis/feature_id", "seamark/type"], "geometry": ["vertex", "line"], "terms": ["low-head dam", "low-rise dam", "wier"], "tags": {"waterway": "weir"}, "name": "Weir"}, - "amenity/animal_boarding/PetsHotel": {"name": "PetsHotel", "icon": "maki-veterinary", "imageURL": "https://graph.facebook.com/PetSmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q67141961", "amenity": "animal_boarding"}, "addTags": {"amenity": "animal_boarding", "animal_boarding": "dog;cat", "brand": "PetsHotel", "brand:wikidata": "Q67141961", "name": "PetsHotel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ABANCA": {"name": "ABANCA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SomosAbanca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9598744", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ABANCA", "brand:wikidata": "Q9598744", "brand:wikipedia": "es:Abanca", "name": "ABANCA", "official_name": "ABANCA Corporación Bancaria"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ABN AMRO": {"name": "ABN AMRO", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/abnamro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q287471", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ABN AMRO", "brand:wikidata": "Q287471", "brand:wikipedia": "nl:ABN AMRO Group", "name": "ABN AMRO", "official_name": "ABN AMRO Bank N.V."}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ABSA": {"name": "ABSA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AbsaSouthAfrica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58641733", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ABSA", "brand:wikidata": "Q58641733", "brand:wikipedia": "en:Absa Group Limited", "name": "ABSA"}, "countryCodes": ["za"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ACBA": {"name": "ACBA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/acbacreditagricolebank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55602923", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ACBA", "brand:wikidata": "Q55602923", "brand:wikipedia": "hy:ԱԿԲԱ-Կրեդիտ Ագրիկոլ բանկ", "name": "ACBA"}, "countryCodes": ["am"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/AIB": {"name": "AIB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/aib/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1642179", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "AIB", "brand:wikidata": "Q1642179", "brand:wikipedia": "en:Allied Irish Banks", "name": "AIB", "official_name": "Allied Irish Banks"}, "countryCodes": ["gb", "ie"], "terms": ["aib bank", "allied irish bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/AMP": {"name": "AMP", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AMPaustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q295261", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "AMP", "brand:wikidata": "Q295261", "brand:wikipedia": "en:AMP Limited", "name": "AMP", "official_name": "AMP Limited"}, "countryCodes": ["au", "nz"], "terms": ["amp bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/ANZ": {"name": "ANZ", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ANZAustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q714641", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ANZ", "brand:wikidata": "Q714641", "brand:wikipedia": "en:Australia and New Zealand Banking Group", "name": "ANZ", "official_name": "Australia and New Zealand Banking Group Limited"}, "countryCodes": ["au", "nz"], "terms": ["anz bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/ASB Bank": {"name": "ASB Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ASBBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q297214", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ASB Bank", "brand:wikidata": "Q297214", "brand:wikipedia": "en:ASB Bank", "name": "ASB Bank"}, "countryCodes": ["nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ATB Financial": {"name": "ATB Financial", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ATBFinancial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q298762", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ATB Financial", "brand:wikidata": "Q298762", "brand:wikipedia": "en:ATB Financial", "name": "ATB Financial", "official_name": "Alberta Treasury Branches"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/AXA": {"name": "AXA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/axainsurance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q160054", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "AXA", "brand:wikidata": "Q160054", "brand:wikipedia": "en:AXA", "name": "AXA"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Access Bank": {"name": "Access Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AccessBankPlc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4672418", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Access Bank", "brand:wikidata": "Q4672418", "brand:wikipedia": "en:Access Bank plc", "name": "Access Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ActivoBank": {"name": "ActivoBank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ActivoBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9581725", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ActivoBank", "brand:wikidata": "Q9581725", "brand:wikipedia": "pt:ActivoBank", "name": "ActivoBank"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Addiko Bank": {"name": "Addiko Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/addiko.ba/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27926559", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Addiko Bank", "brand:wikidata": "Q27926559", "brand:wikipedia": "en:Addiko Bank", "name": "Addiko Bank"}, "countryCodes": ["ba", "hr", "me", "rs", "si"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Affinity Credit Union": {"name": "Affinity Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/affinitycu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4688969", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Affinity Credit Union", "brand:wikidata": "Q4688969", "brand:wikipedia": "en:Affinity Credit Union", "name": "Affinity Credit Union"}, "countryCodes": ["ca"], "terms": ["affinity"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Agribank (USA)": {"name": "Agribank (USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/63806221089/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4693829", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Agribank", "brand:wikidata": "Q4693829", "brand:wikipedia": "en:AgriBank", "name": "Agribank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Agribank (Vietnam)": {"name": "Agribank (Vietnam)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AgribankVN/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1924723", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Agribank", "brand:wikidata": "Q1924723", "brand:wikipedia": "vi:Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", "name": "Agribank", "official_name": "Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", "official_name:en": "Vietnam Bank for Agriculture and Rural Development"}, "countryCodes": ["vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Agribank (Zimbabwe)": {"name": "Agribank (Zimbabwe)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/agribankzim/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4693887", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Agribank", "brand:wikidata": "Q4693887", "brand:wikipedia": "en:Agricultural Development Bank of Zimbabwe", "name": "Agribank"}, "countryCodes": ["zw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Akbank": {"name": "Akbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Akbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q416624", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Akbank", "brand:wikidata": "Q416624", "brand:wikipedia": "tr:Akbank", "name": "Akbank"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Aktia": {"name": "Aktia", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/aktia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4353753", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Aktia", "brand:wikidata": "Q4353753", "brand:wikipedia": "fi:Aktia Pankki", "name": "Aktia"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Alior Bank": {"name": "Alior Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AliorBankSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9148395", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Alior Bank", "brand:wikidata": "Q9148395", "brand:wikipedia": "pl:Alior Bank", "name": "Alior Bank"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Allahabad Bank": {"name": "Allahabad Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AllahabadBankOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2018840", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Allahabad Bank", "brand:wikidata": "Q2018840", "brand:wikipedia": "en:Allahabad Bank", "name": "Allahabad Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Allied Bank (Pakistan)": {"name": "Allied Bank (Pakistan)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/alliedbankpk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4732553", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Allied Bank", "brand:wikidata": "Q4732553", "brand:wikipedia": "en:Allied Bank Limited", "name": "Allied Bank"}, "countryCodes": ["pk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Allied Bank (defunct bank in Philipiness)": {"name": "Allied Bank (defunct bank in Philipiness)", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAllied%20Bank%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4732555", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Allied Bank", "brand:wikidata": "Q4732555", "brand:wikipedia": "en:Allied Banking Corporation", "name": "Allied Bank"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Alpha Bank": {"name": "Alpha Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/125297404838251/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q747394", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Alpha Bank", "brand:wikidata": "Q747394", "brand:wikipedia": "en:Alpha Bank", "name": "Alpha Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Alterna Savings": {"name": "Alterna Savings", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/alternasavings/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4736322", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Alterna Savings", "brand:wikidata": "Q4736322", "brand:wikipedia": "en:Alterna Savings", "name": "Alterna Savings"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/America First Credit Union": {"name": "America First Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/americafirstcu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4742758", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "America First Credit Union", "brand:wikidata": "Q4742758", "brand:wikipedia": "en:America First Credit Union", "name": "America First Credit Union", "short_name": "AFCU"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Andhra Bank": {"name": "Andhra Bank", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAndhra%20bank.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2003476", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Andhra Bank", "brand:wikidata": "Q2003476", "brand:wikipedia": "en:Andhra Bank", "name": "Andhra Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Antonveneta": {"name": "Antonveneta", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3633689", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Antonveneta", "brand:wikidata": "Q3633689", "brand:wikipedia": "en:Banca Antonveneta", "name": "Antonveneta"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Apple Bank": {"name": "Apple Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AppleBankfan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4781125", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Apple Bank", "brand:wikidata": "Q4781125", "brand:wikipedia": "en:Apple Bank for Savings", "name": "Apple Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Argenta": {"name": "Argenta", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/argenta/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q932856", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Argenta", "brand:wikidata": "Q932856", "brand:wikipedia": "nl:Argenta Groep", "name": "Argenta"}, "countryCodes": ["be", "lu", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Arvest Bank": {"name": "Arvest Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ArvestBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4802393", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Arvest Bank", "brand:wikidata": "Q4802393", "brand:wikipedia": "en:Arvest Bank", "name": "Arvest Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Asia United Bank": {"name": "Asia United Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AUB.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4806482", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Asia United Bank", "brand:wikidata": "Q4806482", "brand:wikipedia": "tl:Asia United Bank", "name": "Asia United Bank"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Askari Bank": {"name": "Askari Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/askaribankpakistan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4807137", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Askari Bank", "brand:wikidata": "Q4807137", "brand:wikipedia": "en:Askari Bank", "name": "Askari Bank"}, "countryCodes": ["pk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Associated Bank": {"name": "Associated Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/associatedbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4809155", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Associated Bank", "brand:wikidata": "Q4809155", "brand:wikipedia": "en:Associated Banc-Corp", "name": "Associated Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Attijariwafa Bank": {"name": "Attijariwafa Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AttijariWB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q758052", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Attijariwafa Bank", "brand:wikidata": "Q758052", "brand:wikipedia": "en:Attijariwafa Bank", "name": "Attijariwafa Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Axis Bank": {"name": "Axis Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/axisbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2003549", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Axis Bank", "brand:wikidata": "Q2003549", "brand:wikipedia": "en:Axis Bank", "name": "Axis Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BAC Credomatic": {"name": "BAC Credomatic", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BACCredomaticSV/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5715556", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BAC Credomatic", "brand:wikidata": "Q5715556", "brand:wikipedia": "en:BAC Credomatic", "name": "BAC Credomatic"}, "terms": ["bac"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BAI": {"name": "BAI", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bai.angola/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806172", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BAI", "brand:wikidata": "Q806172", "brand:wikipedia": "en:Banco Angolano de Investimentos", "name": "BAI", "official_name": "Banco Angolano de Investimentos"}, "countryCodes": ["ao"], "terms": ["banco africano de investimentos"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BAWAG PSK": {"name": "BAWAG PSK", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bawag.psk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q379938", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BAWAG PSK", "brand:wikidata": "Q379938", "brand:wikipedia": "en:BAWAG P.S.K.", "name": "BAWAG PSK"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BB&T": {"name": "BB&T", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BBTBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q795486", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BB&T", "brand:wikidata": "Q795486", "brand:wikipedia": "en:BB&T", "name": "BB&T", "official_name": "Branch Banking and Trust Company"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BBBank": {"name": "BBBank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BBBank.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q795504", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BBBank", "brand:wikidata": "Q795504", "brand:wikipedia": "en:BBBank", "name": "BBBank"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BBVA": {"name": "BBVA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/GrupoBBVA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806189", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BBVA", "brand:wikidata": "Q806189", "brand:wikipedia": "en:Banco Bilbao Vizcaya Argentaria", "name": "BBVA", "official_name": "Banco Bilbao Vizcaya Argentaria"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BBVA Bancomer": {"name": "BBVA Bancomer", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BBVASeguros.mx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2876794", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BBVA Bancomer", "brand:wikidata": "Q2876794", "brand:wikipedia": "en:BBVA Bancomer", "name": "BBVA Bancomer"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BBVA Compass": {"name": "BBVA Compass", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bbvaintheusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4835088", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BBVA Compass", "brand:wikidata": "Q4835088", "brand:wikipedia": "en:BBVA Compass", "name": "BBVA Compass", "official_name": "BBVA Compass Bancshares"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BBVA Continental": {"name": "BBVA Continental", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BBVAenPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4835089", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BBVA Continental", "brand:wikidata": "Q4835089", "brand:wikipedia": "en:BBVA Continental", "name": "BBVA Continental"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BBVA Francés": {"name": "BBVA Francés", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bbva.argentina/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2876788", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BBVA Francés", "brand:en": "BBVA France", "brand:fr": "BBVA France", "brand:wikidata": "Q2876788", "brand:wikipedia": "en:BBVA Francés", "name": "BBVA Francés", "name:en": "BBVA France", "name:fr": "BBVA Francés"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BCA": {"name": "BCA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/316954705121733/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806626", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BCA", "brand:wikidata": "Q806626", "brand:wikipedia": "id:Bank Central Asia", "name": "BCA", "official_name": "Bank Central Asia"}, "terms": ["bank bca"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BCEE": {"name": "BCEE", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/spuerkeess/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q668996", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BCEE", "brand:wikidata": "Q668996", "brand:wikipedia": "fr:Banque et caisse d'épargne de l'État", "name": "BCEE", "official_name": "Banque et Caisse d'Épargne de l'État"}, "countryCodes": ["lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BCI": {"name": "BCI", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoBci/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882083", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BCI", "brand:wikidata": "Q2882083", "brand:wikipedia": "es:Banco de Crédito e Inversiones", "name": "BCI", "official_name": "Banco de Crédito e Inversiones", "official_name:en": "Bank of Credit and Investments", "official_name:es": "Banco de Crédito e Inversiones"}, "terms": ["banco bci"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BCP (Bolivia)": {"name": "BCP (Bolivia)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancodeCreditoBolivia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16826675", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BCP", "brand:wikidata": "Q16826675", "brand:wikipedia": "es:Banco de Crédito de Bolivia", "name": "BCP", "official_name": "Banco de Crédito de Bolivia"}, "countryCodes": ["bo"], "terms": ["banco de crédito", "bcp"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BCP (France)": {"name": "BCP (France)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/millenniumbcp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q118581", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BCP", "brand:wikidata": "Q118581", "brand:wikipedia": "pt:Banco Comercial Português", "name": "BCP"}, "countryCodes": ["fr"], "terms": ["banque bcp", "bcp"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BCP (Luxembourg)": {"name": "BCP (Luxembourg)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/millenniumbcp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q118581", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BCP", "brand:wikidata": "Q118581", "brand:wikipedia": "pt:Banco Comercial Português", "name": "BCP"}, "countryCodes": ["lu"], "terms": ["banque bcp", "bcp"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BCP (Peru)": {"name": "BCP (Peru)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancodecreditobcp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854124", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BCP", "brand:wikidata": "Q4854124", "brand:wikipedia": "es:Banco de Crédito del Perú", "name": "BCP", "official_name": "Banco de Crédito del Perú", "official_name:en": "Credit Bank of Peru", "official_name:es": "Banco de Crédito del Perú"}, "countryCodes": ["pe"], "terms": ["banco de crédito del perú"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BCR (Banca Comercială Română)": {"name": "BCR (Banca Comercială Română)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BCRRomania/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806149", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BCR", "brand:wikidata": "Q806149", "brand:wikipedia": "ro:Banca Comercială Română", "name": "BCR", "official_name": "Banca Comercială Română", "official_name:en": "Romanian Commercial Bank", "official_name:ro": "Banca Comercială Română"}, "countryCodes": ["ro"], "terms": ["banca comercială română"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BCR (Costa Rica)": {"name": "BCR (Costa Rica)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoBCR/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6951632", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BCR", "brand:wikidata": "Q6951632", "brand:wikipedia": "es:Banco de Costa Rica", "name": "BCR", "official_name": "Banco de Costa Rica", "official_name:en": "Bank of Costa Rica", "official_name:es": "Banco de Costa Rica"}, "countryCodes": ["cr"], "terms": ["banco de costa rica"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BDM": {"name": "BDM", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bdmbot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2883022", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BDM", "brand:wikidata": "Q2883022", "brand:wikipedia": "fr:Banque de développement du Mali", "name": "BDM", "official_name": "Banque du Développement du Mali", "official_name:en": "Mali Development Bank", "official_name:fr": "Banque du Développement du Mali"}, "countryCodes": ["ml"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BDO": {"name": "BDO", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BDOUnibank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854129", "amenity": "bank"}, "addTags": {"alt_name": "Banco de Oro", "amenity": "bank", "brand": "BDO", "brand:wikidata": "Q4854129", "brand:wikipedia": "en:Banco de Oro", "name": "BDO"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BECU": {"name": "BECU", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/becu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4835409", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BECU", "brand:wikidata": "Q4835409", "brand:wikipedia": "en:BECU", "name": "BECU"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BGL BNP Paribas": {"name": "BGL BNP Paribas", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BGL.BNP.Paribas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q795898", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BGL BNP Paribas", "brand:wikidata": "Q795898", "brand:wikipedia": "fr:BGL BNP Paribas", "name": "BGL BNP Paribas"}, "countryCodes": ["lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BGŻ BNP Paribas": {"name": "BGŻ BNP Paribas", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BNPParibasBankPolska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20744004", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BGŻ BNP Paribas", "brand:wikidata": "Q20744004", "brand:wikipedia": "pl:BNP Paribas Bank Polska", "name": "BGŻ BNP Paribas"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BIAT": {"name": "BIAT", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BanqueInternationaleArabedeTunisie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q690739", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BIAT", "brand:wikidata": "Q690739", "brand:wikipedia": "fr:Banque internationale arabe de Tunisie", "name": "BIAT", "official_name": "Banque internationale arabe de Tunisie", "official_name:en": "Arab International Bank of Tunisia", "official_name:fr": "Banque internationale arabe de Tunisie"}, "countryCodes": ["tn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BIDV": {"name": "BIDV", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BIDVbankvietnam/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1003180", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BIDV", "brand:wikidata": "Q1003180", "brand:wikipedia": "vi:Ngân hàng Đầu tư và Phát triển Việt Nam", "name": "BIDV", "official_name": "Ngân hàng Đầu tư và Phát triển Việt Nam", "official_name:en": "Bank for Investment and Development of Vietnam", "official_name:vi": "Ngân hàng Đầu tư và Phát triển Việt Nam"}, "countryCodes": ["vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BIL": {"name": "BIL", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BIL1856/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2883404", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BIL", "brand:wikidata": "Q2883404", "brand:wikipedia": "en:Banque Internationale à Luxembourg", "name": "BIL", "official_name": "Banque Internationale à Luxembourg", "official_name:en": "International Bank in Luxembourg", "official_name:fr": "Banque Internationale à Luxembourg"}, "countryCodes": ["lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BMCE Bank": {"name": "BMCE Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BMCEBankOfAfrica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2300433", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BMCE Bank", "brand:wikidata": "Q2300433", "brand:wikipedia": "ar:البنك المغربي للتجارة الخارجية", "name": "BMCE Bank", "official_name": "البنك المغربي للتجارة الخارجية‎", "official_name:ar": "البنك المغربي للتجارة الخارجية‎", "official_name:en": "Moroccan Bank of Foreign Commerce"}, "countryCodes": ["ma"], "terms": ["bmce"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BMCI": {"name": "BMCI", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bmcigroupebnpparibas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2883409", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BMCI", "brand:wikidata": "Q2883409", "brand:wikipedia": "ar:البنك المغربي للتجارة والصناعة", "name": "BMCI"}, "countryCodes": ["ma"], "terms": ["bmci bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BMN": {"name": "BMN", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBMN%20nuevo%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3754900", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BMN", "brand:wikidata": "Q3754900", "brand:wikipedia": "es:Banco Mare Nostrum", "name": "BMN", "official_name": "Banco Mare Nostrum"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BMO Harris Bank (USA)": {"name": "BMO Harris Bank (USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bmoharrisbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4835981", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BMO Harris Bank", "brand:wikidata": "Q4835981", "brand:wikipedia": "en:BMO Harris Bank", "name": "BMO Harris Bank"}, "countryCodes": ["us"], "terms": ["bank of montreal", "bmo", "bmo bank of montreal", "bmo harris bank", "harris bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BMO (Canada)": {"name": "BMO (Canada)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BMOcommunity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806693", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BMO", "brand:wikidata": "Q806693", "brand:wikipedia": "en:Bank of Montreal", "name": "BMO", "official_name": "Bank of Montreal"}, "countryCodes": ["ca"], "terms": ["bank of montreal", "banque de montréal", "bmo", "bmo bank of montreal", "bmo banque de montréal"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BNA (Algeria)": {"name": "BNA (Algeria)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bnalgerie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2883410", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BNA", "brand:wikidata": "Q2883410", "brand:wikipedia": "fr:Banque nationale d'Algérie", "name": "BNA", "official_name": "Banque nationale d'Algérie", "official_name:en": "National Bank of Algeria", "official_name:fr": "Banque nationale d'Algérie"}, "countryCodes": ["dz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BNA (Tunisia)": {"name": "BNA (Tunisia)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BanqueNationaleAgricole/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2883413", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BNA", "brand:wikidata": "Q2883413", "brand:wikipedia": "fr:Banque nationale agricole", "name": "BNA"}, "countryCodes": ["tn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BNDA": {"name": "BNDA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/MaliBNDA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30594734", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BNDA", "brand:wikidata": "Q30594734", "brand:wikipedia": "en:Banque Nationale de Développement Agricole", "name": "BNDA", "official_name": "Banque Nationale de Développement Agricole"}, "countryCodes": ["ml"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BNI": {"name": "BNI", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BNI/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882611", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BNI", "brand:wikidata": "Q2882611", "brand:wikipedia": "id:Bank Negara Indonesia", "name": "BNI", "official_name": "Bank Negara Indonesia", "official_name:en": "State Bank of Indonesia", "official_name:id": "Bank Negara Indonesia"}, "terms": ["bank bni"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BNL": {"name": "BNL", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BNLBNPParibas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2201225", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BNL", "brand:wikidata": "Q2201225", "brand:wikipedia": "it:Banca Nazionale del Lavoro", "name": "BNL", "official_name": "Banca Nazionale del Lavoro", "official_name:en": "National Labor Bank", "official_name:it": "Banca Nazionale del Lavoro"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BNP Paribas": {"name": "BNP Paribas", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/mabanque.bnpparibas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q499707", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BNP Paribas", "brand:wikidata": "Q499707", "brand:wikipedia": "en:BNP Paribas", "name": "BNP Paribas"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BNP Paribas Fortis": {"name": "BNP Paribas Fortis", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BNPParibasFortisBelgique/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q796827", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BNP Paribas Fortis", "brand:wikidata": "Q796827", "brand:wikipedia": "en:BNP Paribas Fortis", "name": "BNP Paribas Fortis"}, "countryCodes": ["be"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BOC": {"name": "BOC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankofchina.cn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q790068", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BOC", "brand:wikidata": "Q790068", "brand:wikipedia": "en:Bank of China", "name": "BOC", "official_name": "Bank of China"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BOM": {"name": "BOM", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankofMelbourne/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4856151", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BOM", "brand:wikidata": "Q4856151", "brand:wikipedia": "en:Bank of Melbourne (2011)", "name": "BOM", "official_name": "Bank of Melbourne"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BOQ": {"name": "BOQ", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BOQOnline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4856173", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BOQ", "brand:wikidata": "Q4856173", "brand:wikipedia": "en:Bank of Queensland", "name": "BOQ", "official_name": "Bank of Queensland"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BPC": {"name": "BPC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BpcBancoDePoupancaECredito/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854132", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BPC", "brand:wikidata": "Q4854132", "brand:wikipedia": "en:Banco de Poupança e Crédito", "name": "BPC", "official_name": "Banco de Poupança e Crédito"}, "countryCodes": ["ao"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BPER Banca": {"name": "BPER Banca", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BPERbanca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806167", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BPER Banca", "brand:wikidata": "Q806167", "brand:wikipedia": "it:BPER Banca", "name": "BPER Banca", "official_name": "Banca Popolare dell'Emilia Romagna"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BPI (Global)": {"name": "BPI (Global)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bpi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2501256", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BPI", "brand:wikidata": "Q2501256", "brand:wikipedia": "en:Bank of the Philippine Islands", "name": "BPI", "official_name": "Bank of the Philippine Islands"}, "terms": ["bpi family savings bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BRD": {"name": "BRD", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BRDGroupeSocieteGenerale/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q796927", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BRD", "brand:wikidata": "Q796927", "brand:wikipedia": "ro:BRD - Groupe Société Générale", "name": "BRD"}, "countryCodes": ["ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BRED": {"name": "BRED", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BRED.Banque.Populaire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2877455", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BRED", "brand:wikidata": "Q2877455", "brand:wikipedia": "fr:BRED Banque populaire", "name": "BRED", "official_name": "Banque régionale d'escompte et de dépôts", "official_name:en": "Regional Discount and Deposit Bank", "official_name:fr": "Banque régionale d'escompte et de dépôts"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BRI": {"name": "BRI", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BRIofficialpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q623042", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BRI", "brand:wikidata": "Q623042", "brand:wikipedia": "id:Bank Rakyat Indonesia", "name": "BRI", "official_name": "Bank Rakyat Indonesia", "official_name:en": "People's Bank of Indonesia", "official_name:id": "Bank Rakyat Indonesia"}, "countryCodes": ["id"], "terms": ["bank bri"], "matchScore": 2, "suggestion": true}, - "amenity/bank/BTN": {"name": "BTN", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/www.btn.co.id/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12474534", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BTN", "brand:en": "BTN", "brand:id": "BTN", "brand:wikidata": "Q12474534", "brand:wikipedia": "id:Bank Tabungan Negara", "name": "BTN", "name:en": "BTN", "name:id": "BTN", "official_name": "Bank Tabungan Negara", "official_name:en": "State Savings Bank", "official_name:id": "Bank Tabungan Negara"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BW-Bank": {"name": "BW-Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BWBank.Stuttgart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q798891", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BW-Bank", "brand:de": "BW-Bank", "brand:en": "BW-Bank", "brand:wikidata": "Q798891", "brand:wikipedia": "de:Baden-Württembergische Bank", "name": "BW-Bank", "name:de": "BW-Bank", "name:en": "BW-Bank"}, "countryCodes": ["de"], "terms": ["baden-württembergische bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banamex": {"name": "Banamex", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Citibanamex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q749474", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banamex", "brand:wikidata": "Q749474", "brand:wikipedia": "en:Grupo Financiero Banamex", "name": "Banamex", "official_name": "Grupo Financiero Banamex", "official_name:en": "Banamex Financial Group", "official_name:es": "Grupo Financiero Banamex"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Intesa": {"name": "Banca Intesa", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancaintesa.rs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q647092", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Intesa", "brand:wikidata": "Q647092", "brand:wikipedia": "en:Banca Intesa", "name": "Banca Intesa", "name:en": "Intesa Bank", "name:it": "Banca Intesa"}, "countryCodes": ["it", "rs"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca March": {"name": "Banca March", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/529243270367309824/JFWCTY94_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q578252", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca March", "brand:wikidata": "Q578252", "brand:wikipedia": "en:Banca March", "name": "Banca March"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Mediolanum": {"name": "Banca Mediolanum", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancaMediolanum/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3633712", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Mediolanum", "brand:wikidata": "Q3633712", "brand:wikipedia": "en:Banca Mediolanum", "name": "Banca Mediolanum"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Popolare di Bari": {"name": "Banca Popolare di Bari", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/popolarebari/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3633730", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Bari", "brand:wikidata": "Q3633730", "brand:wikipedia": "en:Banca Popolare di Bari", "name": "Banca Popolare di Bari"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Popolare di Milano": {"name": "Banca Popolare di Milano", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoBPM/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806154", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Milano", "brand:en": "Popular Bank of Milan", "brand:it": "Banca Popolare di Milano", "brand:wikidata": "Q806154", "brand:wikipedia": "en:Banca Popolare di Milano", "name": "Banca Popolare di Milano", "name:en": "Popular Bank of Milan", "name:it": "Banca Popolare di Milano"}, "countryCodes": ["it"], "terms": ["bpm"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Popolare di Novara": {"name": "Banca Popolare di Novara", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3633742", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Novara", "brand:en": "Popular Bank of Novara", "brand:it": "Banca Popolare di Novara", "brand:wikidata": "Q3633742", "brand:wikipedia": "en:Banca Popolare di Novara", "name": "Banca Popolare di Novara", "name:en": "Popular Bank of Novara", "name:it": "Banca Popolare di Novara"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Popolare di Sondrio": {"name": "Banca Popolare di Sondrio", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q686176", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Sondrio", "brand:en": "Popular Bank of Sandrio", "brand:it": "Banca Popolare di Sondrio", "brand:wikidata": "Q686176", "brand:wikipedia": "en:Banca Popolare di Sondrio", "name": "Banca Popolare di Sondrio", "name:en": "Popular Bank of Sandrio", "name:it": "Banca Popolare di Sondrio"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Popolare di Verona": {"name": "Banca Popolare di Verona", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3167468", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Verona", "brand:en": "Popular Bank of Verona", "brand:it": "Banca Popolare di Verona", "brand:wikidata": "Q3167468", "brand:wikipedia": "en:Banca Popolare di Verona", "name": "Banca Popolare di Verona", "name:en": "Popular Bank of Verona", "name:it": "Banca Popolare di Verona"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Popolare di Vicenza": {"name": "Banca Popolare di Vicenza", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3127200", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Popolare di Vicenza", "brand:en": "Popular Bank of Vicenza", "brand:it": "Banca Popolare di Vicenza", "brand:wikidata": "Q3127200", "brand:wikipedia": "en:Banca Popolare di Vicenza", "name": "Banca Popolare di Vicenza", "name:en": "Popular Bank of Vicena", "name:it": "Banca Popolare di Vicenza"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Românească": {"name": "Banca Românească", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancaRomaneascaOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854052", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Românească", "brand:en": "Romanian Bank", "brand:ro": "Banca Românească", "brand:wikidata": "Q4854052", "brand:wikipedia": "ro:Banca Românească", "name": "Banca Românească", "name:en": "Popular Bank of Vicena", "name:ro": "Banca Românească"}, "countryCodes": ["ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Sella": {"name": "Banca Sella", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancasella/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3633749", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Sella", "brand:en": "Sella Bank", "brand:it": "Banca Sella", "brand:wikidata": "Q3633749", "brand:wikipedia": "en:Banca Sella Group", "name": "Banca Sella", "name:en": "Sella Bank", "name:it": "Banca Sella"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banca Transilvania": {"name": "Banca Transilvania", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancaTransilvania/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806161", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banca Transilvania", "brand:en": "Transilvania Bank", "brand:ro": "Banca Transilvania", "brand:wikidata": "Q806161", "brand:wikipedia": "en:Banca Transilvania", "name": "Banca Transilvania", "name:en": "Transilvania Bank", "name:ro": "Banca Transilvania"}, "countryCodes": ["ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bancaribe": {"name": "Bancaribe", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Bancaribe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5717827", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bancaribe", "brand:wikidata": "Q5717827", "brand:wikipedia": "en:Bancaribe", "name": "Bancaribe"}, "countryCodes": ["ve"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco AV Villas": {"name": "Banco AV Villas", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AVVillas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854068", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco AV Villas", "brand:en": "Bank of Villas", "brand:es": "Banco AV Villas", "brand:wikidata": "Q4854068", "brand:wikipedia": "en:Banco AV Villas", "name": "Banco AV Villas", "name:en": "Bank of Villas", "name:es": "Banco AV Villas"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Agrario": {"name": "Banco Agrario", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancoagrario/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20013358", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Agrario", "brand:en": "Agrarian Bank", "brand:wikidata": "Q20013358", "brand:wikipedia": "es:Banco Agrario de Colombia", "name": "Banco Agrario", "name:en": "Agrarian Bank", "name:es": "Banco Agrario", "official_name": "Banco Agrario de Colombia", "official_name:en": "Agrarian Bank of Colombia", "official_name:es": "Banco Agrario de Colombia"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Azteca": {"name": "Banco Azteca", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoAzteca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854076", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Azteca", "brand:en": "Aztec Bank", "brand:es": "Banco Azteca", "brand:wikidata": "Q4854076", "brand:wikipedia": "en:Banco Azteca", "name": "Banco Azteca", "name:en": "Aztec Bank", "name:es": "Banco Azteca"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco BISA": {"name": "Banco BISA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoBisa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21044225", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco BISA", "brand:wikidata": "Q21044225", "brand:wikipedia": "es:Banco BISA", "name": "Banco BISA"}, "countryCodes": ["bo"], "terms": ["bisa"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco BPI (Portugal)": {"name": "Banco BPI (Portugal)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancobpi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q537886", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Branco BPI", "brand:wikidata": "Q537886", "brand:wikipedia": "en:Banco Português de Investimento", "name": "Banco BPI", "official_name": "Banco Português de Investimento", "short_name": "BPI"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco BPM": {"name": "Banco BPM", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoBPM/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27331643", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco BPM", "brand:en": "BPM Bank", "brand:es": "Banco BPM", "brand:wikidata": "Q27331643", "brand:wikipedia": "en:Banco BPM", "name": "Banco BPM", "name:en": "BPM Bank", "name:es": "Banco BPM"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco CTT": {"name": "Banco CTT", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanco%20CTT%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65161642", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco CTT", "brand:wikidata": "Q65161642", "brand:wikipedia": "pt:Banco CTT", "name": "Banco CTT"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Caja Social": {"name": "Banco Caja Social", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoCajaSocial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5717869", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Caja Social", "brand:en": "Social Housing Bank", "brand:es": "Banco Caja Social", "brand:wikidata": "Q5717869", "brand:wikipedia": "es:Banco Caja Social", "name": "Banco Caja Social", "name:en": "Social Housing Bank", "name:es": "Banco Caja Social"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Ciudad": {"name": "Banco Ciudad", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancociudad/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4856204", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Ciudad", "brand:en": "City Bank", "brand:es": "Banco Ciudad", "brand:wikidata": "Q4856204", "brand:wikipedia": "en:Bank of the City of Buenos Aires", "name": "Banco Ciudad", "name:en": "City Bank", "name:es": "Banco Ciudad", "official_name": "Banco Ciudad de Buenos Aires", "official_name:en": "Bank of the City of Buenos Aires", "official_name:es": "Banco Ciudad de Buenos Aires"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Continental (Paraguay)": {"name": "Banco Continental (Paraguay)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bcontinentalpy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62054564", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Continental", "brand:en": "Continental Bank", "brand:es": "Banco Continental", "brand:wikidata": "Q62054564", "name": "Banco Continental", "name:en": "Continental Bank", "name:es": "Banco Continental"}, "countryCodes": ["py"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Continental (Peru)": {"name": "Banco Continental (Peru)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BBVAenPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4835089", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Continental", "brand:en": "Continental Bank", "brand:es": "Banco Continental", "brand:wikidata": "Q4835089", "brand:wikipedia": "en:BBVA Continental", "name": "Banco Continental", "name:en": "Continental Bank", "name:es": "Banco Continental"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Económico": {"name": "Banco Económico", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Bancoeconomico/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854087", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Económico", "brand:wikidata": "Q4854087", "brand:wikipedia": "es:Banco Económico", "name": "Banco Económico"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Estado": {"name": "Banco Estado", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoEstado/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5718188", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Estado", "brand:en": "State Bank", "brand:es": "Banco Estado", "brand:wikidata": "Q5718188", "brand:wikipedia": "es:Banco del Estado de Chile", "name": "Banco Estado", "name:en": "State Bank", "name:es": "Banco Estado", "official_name": "Banco del Estado de Chile", "official_name:en": "Bank of the State of Chile", "official_name:es": "Banco del Estado de Chile"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Falabella": {"name": "Banco Falabella", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/248982132664061/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854088", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Falabella", "brand:en": "Falabella Bank", "brand:es": "Banco Falabella", "brand:wikidata": "Q4854088", "brand:wikipedia": "en:Banco Falabella", "name": "Banco Falabella", "name:en": "Falabella Bank", "name:es": "Banco Falabella"}, "countryCodes": ["cl", "co", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Fassil": {"name": "Banco Fassil", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancofassil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62118592", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Fassil", "brand:wikidata": "Q62118592", "name": "Banco Fassil"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Fie": {"name": "Banco Fie", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoFieBo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81782924", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Fie", "brand:wikidata": "Q81782924", "name": "Banco Fie", "official_name": "Banco para el Fomento a Iniciativas Económicas"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Fortaleza": {"name": "Banco Fortaleza", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81787643", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Fortaleza", "brand:wikidata": "Q81787643", "name": "Banco Fortaleza"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco G&T Continental": {"name": "Banco G&T Continental", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoGTC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5717949", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco G&T Continental", "brand:en": "G&T Continental Bank", "brand:es": "Banco G&T Continental", "brand:wikidata": "Q5717949", "brand:wikipedia": "es:Banco GYT Continental, S.A.", "name": "Banco G&T Continental", "name:en": "G&T Continental Bank", "name:es": "Banco G&T Continental"}, "countryCodes": ["gt", "sv"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Ganadero": {"name": "Banco Ganadero", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bg.com.bo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81788241", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Ganadero", "brand:wikidata": "Q81788241", "name": "Banco Ganadero", "short_name": "BG"}, "countryCodes": ["bo"], "terms": ["bg"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco General": {"name": "Banco General", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancogeneral/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27618271", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BW-Bank", "brand:en": "BW-Bank", "brand:es": "BW-Bank", "brand:wikidata": "Q27618271", "brand:wikipedia": "es:Banco General (Panamá)", "name": "Banco General", "name:en": "General Bank", "name:es": "Banco General"}, "countryCodes": ["cr", "pa"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Industrial": {"name": "Banco Industrial", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bindARG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16489444", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Industrial", "brand:en": "Industrial Bank", "brand:es": "Banco Industrial", "brand:wikidata": "Q16489444", "brand:wikipedia": "es:Banco Industrial", "name": "Banco Industrial", "name:en": "Industrial Bank", "name:es": "Banco Industrial"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Internacional (Chile)": {"name": "Banco Internacional (Chile)", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/438324350148571136/fCNvpo-F_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56605586", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Internacional", "brand:en": "International Bank", "brand:es": "Banco Internacional", "brand:wikidata": "Q56605586", "brand:wikipedia": "es:Banco Internacional (Chile)", "name": "Banco Internacional", "name:en": "International Bank", "name:es": "Banco Internacional"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Internacional (Ecuador)": {"name": "Banco Internacional (Ecuador)", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/986297558493487104/4Y3z4QEF_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806187", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Internacional", "brand:en": "International Bank", "brand:es": "Banco Internacional", "brand:wikidata": "Q806187", "brand:wikipedia": "es:Banco Internacional", "name": "Banco Internacional", "name:en": "International Bank", "name:es": "Banco Internacional"}, "countryCodes": ["ec"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Mercantil": {"name": "Banco Mercantil", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoMercantilSantaCruz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26250269", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Mercantil Santa Cruz", "brand:wikidata": "Q26250269", "brand:wikipedia": "es:Banco Mercantil Santa Cruz", "name": "Banco Mercantil Santa Cruz", "short_name": "BMSC"}, "countryCodes": ["bo"], "terms": ["bmsc"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Metropolitano": {"name": "Banco Metropolitano", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BanmetCuba/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62118612", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Metropolitano", "brand:en": "Metroplitan Bank", "brand:es": "Banco Metropolitano", "brand:wikidata": "Q62118612", "name": "Banco Metropolitano", "name:en": "Metropolitan Bank", "name:es": "Banco Metropolitano"}, "countryCodes": ["cu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Nacional": {"name": "Banco Nacional", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bnmascerca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2917708", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Nacional de Costa Rica", "brand:en": "National Bank of Costa Rica", "brand:es": "Banco Nacional de Costa Rica", "brand:wikidata": "Q2917708", "brand:wikipedia": "es:Banco Nacional de Costa Rica", "name": "Banco Nacional", "name:en": "National Bank", "name:es": "Banco Nacional", "official_name": "Banco Nacional de Costa Rica", "official_name:en": "National Bank of Costa Rica", "official_name:es": "Banco Nacional de Costa Rica", "short_name": "BNCR"}, "countryCodes": ["cr", "pa"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Nacional de Bolivia": {"name": "Banco Nacional de Bolivia", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoNacionaldeBoliviaSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21044226", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Nacional de Bolivia", "brand:wikidata": "Q21044226", "brand:wikipedia": "es:Banco Nacional de Bolivia", "name": "Banco Nacional de Bolivia", "short_name": "BNB"}, "countryCodes": ["bo"], "terms": ["bnb"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Nación": {"name": "Banco Nación", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/banconacion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2883376", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Nación", "brand:en": "Nation Bank", "brand:es": "Banco Nación", "brand:wikidata": "Q2883376", "brand:wikipedia": "en:Banco de la Nación Argentina", "name": "Banco Nación", "name:en": "Nation Bank", "name:es": "Banco Nación", "official_name": "Banco de la Nación Argentina", "official_name:en": "Bank of the Argentine Nation", "official_name:es": "Banco de la Nación Argentina"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Pastor": {"name": "Banco Pastor", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancosantander/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806193", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Pastor", "brand:en": "Shepherd Bank", "brand:es": "Banco Pastor", "brand:wikidata": "Q806193", "brand:wikipedia": "en:Banco Pastor", "name": "Banco Pastor", "name:en": "Shepherd Bank", "name:es": "Banco Pastor", "official_name": "Banco Popular Pastor", "official_name:en": "Popular Shepherd Bank", "official_name:es": "Banco Popular Pastor"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Pichincha": {"name": "Banco Pichincha", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoPichinchaEcuador/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854135", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Pichincha", "brand:en": "Pichincha Bank", "brand:es": "Banco Pichincha", "brand:wikidata": "Q4854135", "brand:wikipedia": "en:Banco Pichincha", "name": "Banco Pichincha", "name:en": "Pichincha Bank", "name:es": "Banco Pichincha"}, "countryCodes": ["co", "ec", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Popular de Ahorro": {"name": "Banco Popular de Ahorro", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bpa.cu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62118626", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Popular de Ahorro", "brand:en": "Popular Saving Bank", "brand:es": "Banco Popular de Ahorro", "brand:wikidata": "Q62118626", "name": "Banco Popular de Ahorro", "name:en": "Popular Saving Bank", "name:es": "Banco Popular de Ahorro"}, "countryCodes": ["cu"], "terms": ["bpa"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Provincia": {"name": "Banco Provincia", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancoprovincia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4856209", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Provincia", "brand:en": "Province Bank", "brand:es": "Banco Provincia", "brand:wikidata": "Q4856209", "brand:wikipedia": "es:Banco de la Provincia de Buenos Aires", "name": "Banco Provincia", "name:en": "Province Bank", "name:es": "Banco Provincia", "official_name": "Banco de la Provincia de Buenos Aires", "official_name:en": "Bank of the Province of Buenos Aires", "official_name:es": "Banco de la Provincia de Buenos Aires"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Sabadell": {"name": "Banco Sabadell", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancosabadell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q762330", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Sabadell", "brand:ca": "Banc Sabadell", "brand:es": "Banco Sabadell", "brand:wikidata": "Q762330", "brand:wikipedia": "es:Banco Sabadell", "name": "Banco Sabadell", "name:ca": "Banc Sabadell", "name:es": "Banco Sabadell", "official_name": "Banco de Sabadell, S.A."}, "countryCodes": ["es"], "terms": ["banc sabadell", "sabadell"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Santa Fe": {"name": "Banco Santa Fe", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoSantaFe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6046871", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Santa Fe", "brand:en": "Santa Fe Bank", "brand:es": "Banco Santa Fe", "brand:wikidata": "Q6046871", "brand:wikipedia": "es:Nuevo Banco de Santa Fe", "name": "Banco Santa Fe", "name:en": "Santa Fe Bank", "name:es": "Banco Santa Fe", "official_name": "Nuevo Banco de Santa Fe", "official_name:en": "New Bank of Santa Fe", "official_name:es": "Nuevo Banco de Santa Fe"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Santander": {"name": "Banco Santander", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancosantander/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6496310", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Santander", "brand:en": "Santander Bank", "brand:es": "Banco Santander", "brand:wikidata": "Q6496310", "brand:wikipedia": "es:Banco Santander", "name": "Banco Santander", "name:en": "Santander Bank", "name:es": "Banco Santander", "official_name": "Santander Group"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Sol (Angola)": {"name": "Banco Sol (Angola)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancosolangola/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62118744", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Sol", "brand:en": "Sol Bank", "brand:pt": "Banco Sol", "brand:wikidata": "Q62118744", "name": "Banco Sol", "name:en": "Sol Bank", "name:pt": "Banco Sol"}, "countryCodes": ["ao"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Sol (Bolivia)": {"name": "Banco Sol (Bolivia)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoSolidarioBolivia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62118746", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Sol", "brand:wikidata": "Q62118746", "name": "Banco Sol", "official_name": "Banco Solidario"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco Unión": {"name": "Banco Unión", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoUnionSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72315494", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco Unión", "brand:wikidata": "Q72315494", "name": "Banco Unión", "official_name": "Banco de la Unión"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de Bogotá": {"name": "Banco de Bogotá", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancodeBogota/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854122", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco de Bogotá", "brand:en": "Bank of Bogota", "brand:es": "Banco de Bogotá", "brand:wikidata": "Q4854122", "brand:wikipedia": "es:Banco de Bogotá", "name": "Banco de Bogotá", "name:en": "Bank of Bogota", "name:es": "Banco de Bogotá"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de Chile": {"name": "Banco de Chile", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancochile.cl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882085", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco de Chile", "brand:en": "Bank of Chile", "brand:es": "Banco de Chile", "brand:wikidata": "Q2882085", "brand:wikipedia": "es:Banco de Chile", "name": "Banco de Chile", "name:en": "Bank of Chile", "name:es": "Banco de Chile"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de Desarrollo Banrural": {"name": "Banco de Desarrollo Banrural", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BanruralHonduras/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5719130", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco de Desarrollo Banrural", "brand:en": "Bank of Banrural Development", "brand:es": "Banco de Desarrollo Banrural", "brand:wikidata": "Q5719130", "brand:wikipedia": "es:Banrural", "name": "Banco de Desarrollo Banrural", "name:en": "Bank of Banrural Development", "name:es": "Banco de Desarrollo Banrural"}, "countryCodes": ["gt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de Fomento Angola (BFA)": {"name": "Banco de Fomento Angola (BFA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Banco.BFA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806197", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco de Fomento Angola (BFA)", "brand:en": "Angola Development Bank (BFA)", "brand:es": "Banco de Fomento Angola (BFA)", "brand:wikidata": "Q806197", "brand:wikipedia": "de:Banco de Fomento Angola", "name": "Banco de Fomento Angola (BFA)", "name:en": "Angola Development Bank (BFA)", "name:es": "Banco de Fomento Angola (BFA)"}, "countryCodes": ["ao"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de Occidente": {"name": "Banco de Occidente", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BcoOccidente/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854127", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco de Occidente", "brand:wikidata": "Q4854127", "brand:wikipedia": "es:Banco de Occidente (Colombia)", "name": "Banco de Occidente"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de Venezuela": {"name": "Banco de Venezuela", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancodeVenezuelaOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q517093", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco de Venezuela", "brand:wikidata": "Q517093", "brand:wikipedia": "es:Banco de Venezuela", "name": "Banco de Venezuela"}, "countryCodes": ["ve"], "terms": ["de venezuela", "venezuela"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de la Nación (Argentina)": {"name": "Banco de la Nación (Argentina)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/banconacion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2883376", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco de la Nación", "brand:wikidata": "Q2883376", "brand:wikipedia": "en:Banco de la Nación Argentina", "name": "Banco de la Nación"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco de la Nación (Peru)": {"name": "Banco de la Nación (Peru)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancodelaNacion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4856206", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco de la Nación", "brand:wikidata": "Q4856206", "brand:wikipedia": "en:Bank of the Nation (Peru)", "name": "Banco de la Nación"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco del Austro": {"name": "Banco del Austro", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancodelaustro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62122344", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco del Austro", "brand:wikidata": "Q62122344", "name": "Banco del Austro"}, "countryCodes": ["ec"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco di Napoli": {"name": "Banco di Napoli", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3633835", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco di Napoli", "brand:wikidata": "Q3633835", "brand:wikipedia": "en:Banco di Napoli", "name": "Banco di Napoli"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco di Sardegna": {"name": "Banco di Sardegna", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806205", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco di Sardegna", "brand:wikidata": "Q806205", "brand:wikipedia": "en:Banco di Sardegna", "name": "Banco di Sardegna"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco di Sicilia": {"name": "Banco di Sicilia", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3633842", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco di Sicilia", "brand:wikidata": "Q3633842", "brand:wikipedia": "it:Banco di Sicilia", "name": "Banco di Sicilia"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco do Brasil": {"name": "Banco do Brasil", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancodobrasil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q610817", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco do Brasil", "brand:wikidata": "Q610817", "brand:wikipedia": "en:Banco do Brasil", "name": "Banco do Brasil"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banco do Nordeste": {"name": "Banco do Nordeste", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancodonordeste/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854137", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banco do Nordeste", "brand:wikidata": "Q4854137", "brand:wikipedia": "en:Banco do Nordeste", "name": "Banco do Nordeste"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bancolombia": {"name": "Bancolombia", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancolombia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806206", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bancolombia", "brand:wikidata": "Q806206", "brand:wikipedia": "en:Bancolombia", "name": "Bancolombia"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bancomer": {"name": "Bancomer", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BBVASeguros.mx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2876794", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bancomer", "brand:wikidata": "Q2876794", "brand:wikipedia": "en:BBVA Bancomer", "name": "Bancomer"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bancpost": {"name": "Bancpost", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/1408419985932200/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854143", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bancpost", "brand:wikidata": "Q4854143", "brand:wikipedia": "ro:Bancpost", "name": "Bancpost"}, "countryCodes": ["ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banesco": {"name": "Banesco", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BanescoBancoUniversal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854841", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banesco", "brand:wikidata": "Q4854841", "brand:wikipedia": "en:Banesco", "name": "Banesco"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bangkok Bank": {"name": "Bangkok Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/924817393049677824/zctRzkcO_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806483", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bangkok Bank", "brand:wikidata": "Q806483", "brand:wikipedia": "en:Bangkok Bank", "name": "Bangkok Bank"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Al Habib": {"name": "Bank Al Habib", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankalhabiblimited/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4034833", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Al Habib", "brand:wikidata": "Q4034833", "brand:wikipedia": "ur:بينک الحبيب لمیٹڈ", "name": "Bank Al Habib"}, "countryCodes": ["pk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Alfalah": {"name": "Bank Alfalah", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankAlfalahOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4855895", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Alfalah", "brand:wikidata": "Q4855895", "brand:wikipedia": "en:Bank Alfalah", "name": "Bank Alfalah"}, "countryCodes": ["pk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Austria": {"name": "Bank Austria", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/941602537043525632/UALD6dxn_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q697619", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Austria", "brand:wikidata": "Q697619", "brand:wikipedia": "en:Bank Austria", "name": "Bank Austria"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Danamon": {"name": "Bank Danamon", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/DanamonIndonesia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4855913", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Danamon", "brand:wikidata": "Q4855913", "brand:wikipedia": "en:Bank Danamon", "name": "Bank Danamon"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Islam": {"name": "Bank Islam", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankIslamFB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4115279", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Islam", "brand:wikidata": "Q4115279", "brand:wikipedia": "en:Bank Islam Malaysia", "name": "Bank Islam"}, "countryCodes": ["my"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Mandiri": {"name": "Bank Mandiri", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankmandiricare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806639", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Mandiri", "brand:wikidata": "Q806639", "brand:wikipedia": "en:Bank Mandiri", "name": "Bank Mandiri"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Mandiri Syariah": {"name": "Bank Mandiri Syariah", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/syariahmandiri/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12474533", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Mandiri Syariah", "brand:wikidata": "Q12474533", "brand:wikipedia": "id:Bank Syariah Mandiri", "name": "Bank Mandiri Syariah"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Mega": {"name": "Bank Mega", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankMegaID/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12474504", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Mega", "brand:wikidata": "Q12474504", "brand:wikipedia": "id:Bank Mega", "name": "Bank Mega"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Muamalat": {"name": "Bank Muamalat", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankMuamalatIndonesia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4855949", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Muamalat", "brand:wikidata": "Q4855949", "brand:wikipedia": "en:Bank Muamalat", "name": "Bank Muamalat"}, "countryCodes": ["id", "my"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Pekao": {"name": "Bank Pekao", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankpekaosa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806642", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Pekao", "brand:wikidata": "Q806642", "brand:wikipedia": "pl:Bank Polska Kasa Opieki", "name": "Bank Pekao"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Rakyat": {"name": "Bank Rakyat", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/myBANKRAKYAT/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4855964", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Rakyat", "brand:wikidata": "Q4855964", "brand:wikipedia": "ms:Bank Rakyat", "name": "Bank Rakyat"}, "countryCodes": ["my"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank Simpanan Nasional": {"name": "Bank Simpanan Nasional", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BSNMalaysia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4855972", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank Simpanan Nasional", "brand:wikidata": "Q4855972", "brand:wikipedia": "ms:Bank Simpanan Nasional", "name": "Bank Simpanan Nasional"}, "countryCodes": ["my"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of Africa": {"name": "Bank of Africa", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/710434129763049472/UW4D7zBk_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882627", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of Africa", "brand:wikidata": "Q2882627", "brand:wikipedia": "en:Bank of Africa Group", "name": "Bank of Africa", "short_name": "BOA"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of America": {"name": "Bank of America", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankofAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q487907", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of America", "brand:wikidata": "Q487907", "brand:wikipedia": "en:Bank of America", "name": "Bank of America"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of Baroda": {"name": "Bank of Baroda", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankofbaroda/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2003797", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of Baroda", "brand:wikidata": "Q2003797", "brand:wikipedia": "en:Bank of Baroda", "name": "Bank of Baroda"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of Ceylon": {"name": "Bank of Ceylon", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BANKOFCEYLON/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882652", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of Ceylon", "brand:wikidata": "Q2882652", "brand:wikipedia": "en:Bank of Ceylon", "name": "Bank of Ceylon"}, "countryCodes": ["lk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of Commerce": {"name": "Bank of Commerce", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4856092", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of Commerce", "brand:wikidata": "Q4856092", "brand:wikipedia": "en:Bank of Commerce", "name": "Bank of Commerce"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of Cyprus": {"name": "Bank of Cyprus", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankofCyprusOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806678", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of Cyprus", "brand:wikidata": "Q806678", "brand:wikipedia": "en:Bank of Cyprus", "name": "Bank of Cyprus"}, "countryCodes": ["cy", "gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of India": {"name": "Bank of India", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankOfIndia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2004439", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of India", "brand:wikidata": "Q2004439", "brand:wikipedia": "en:Bank of India", "name": "Bank of India"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of Ireland": {"name": "Bank of Ireland", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankofIreland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806689", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of Ireland", "brand:wikidata": "Q806689", "brand:wikipedia": "en:Bank of Ireland", "name": "Bank of Ireland"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of Maharashtra": {"name": "Bank of Maharashtra", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1118048368020692992/OGTTKn3B_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2004304", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of Maharashtra", "brand:wikidata": "Q2004304", "brand:wikipedia": "en:Bank of Maharashtra", "name": "Bank of Maharashtra"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of New Zealand": {"name": "Bank of New Zealand", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BNZBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806687", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of New Zealand", "brand:wikidata": "Q806687", "brand:wikipedia": "en:Bank of New Zealand", "name": "Bank of New Zealand"}, "countryCodes": ["nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of Scotland": {"name": "Bank of Scotland", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankofscotland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q627381", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of Scotland", "brand:wikidata": "Q627381", "brand:wikipedia": "en:Bank of Scotland", "name": "Bank of Scotland"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bank of the West": {"name": "Bank of the West", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankoftheWest/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2881919", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bank of the West", "brand:wikidata": "Q2881919", "brand:wikipedia": "en:Bank of the West", "name": "Bank of the West"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/BankWest (USA)": {"name": "BankWest (USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankWestSouthDakota/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90386673", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "BankWest", "brand:wikidata": "Q90386673", "name": "BankWest"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bankia": {"name": "Bankia", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankia.es/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806807", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bankia", "brand:wikidata": "Q806807", "brand:wikipedia": "en:Bankia", "name": "Bankia"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bankinter": {"name": "Bankinter", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankinter/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806808", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bankinter", "brand:wikidata": "Q806808", "brand:wikipedia": "es:Bankinter", "name": "Bankinter"}, "countryCodes": ["es", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bankwest (Australia)": {"name": "Bankwest (Australia)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankwest/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4856817", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bankwest", "brand:wikidata": "Q4856817", "brand:wikipedia": "en:Bankwest", "name": "Bankwest"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banner Bank": {"name": "Banner Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bannerbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4856910", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banner Bank", "brand:wikidata": "Q4856910", "brand:wikipedia": "en:Banner Bank", "name": "Banner Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banorte": {"name": "Banorte", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/banorte/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806914", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banorte", "brand:wikidata": "Q806914", "brand:wikipedia": "en:Banorte", "name": "Banorte"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banque Atlantique": {"name": "Banque Atlantique", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BqAtlantiqueOfficiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882890", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banque Atlantique", "brand:wikidata": "Q2882890", "brand:wikipedia": "en:Atlantic Bank Group", "name": "Banque Atlantique"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banque Dupuy de Parseval": {"name": "Banque Dupuy de Parseval", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882897", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banque Dupuy de Parseval", "brand:wikidata": "Q2882897", "brand:wikipedia": "fr:Banque Dupuy de Parseval", "name": "Banque Dupuy de Parseval"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banque Laurentienne": {"name": "Banque Laurentienne", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BLaurentienne/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1360087", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banque Laurentienne", "brand:wikidata": "Q1360087", "brand:wikipedia": "en:Laurentian Bank of Canada", "name": "Banque Laurentienne"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banque Populaire (France)": {"name": "Banque Populaire (France)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/banquepopulaire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q846647", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banque Populaire", "brand:wikidata": "Q846647", "brand:wikipedia": "fr:Banque populaire", "name": "Banque Populaire"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banque Populaire (Maroc)": {"name": "Banque Populaire (Maroc)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/PopulaireEtDigitale/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2883441", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banque Populaire", "brand:wikidata": "Q2883441", "brand:wikipedia": "en:Banque Populaire du Maroc", "name": "Banque Populaire"}, "countryCodes": ["de", "es", "it", "ma", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banque de France": {"name": "Banque de France", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BanquedeFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806950", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banque de France", "brand:wikidata": "Q806950", "brand:wikipedia": "en:Bank of France", "name": "Banque de France"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banque de l'Habitat du Mali": {"name": "Banque de l'Habitat du Mali", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4857076", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banque de l'Habitat du Mali", "brand:wikidata": "Q4857076", "brand:wikipedia": "en:Banque de l'Habitat du Mali", "name": "Banque de l'Habitat du Mali"}, "countryCodes": ["ml"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banrisul": {"name": "Banrisul", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/banrisul/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4857098", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banrisul", "brand:wikidata": "Q4857098", "brand:wikipedia": "en:Banrisul", "name": "Banrisul"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Banrural": {"name": "Banrural", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BanruralHonduras/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5719130", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banrural", "brand:wikidata": "Q5719130", "brand:wikipedia": "es:Banrural", "name": "Banrural"}, "countryCodes": ["gt", "hn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Barclays": {"name": "Barclays", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BarclaysUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q245343", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Barclays", "brand:wikidata": "Q245343", "brand:wikipedia": "en:Barclays", "name": "Barclays"}, "terms": ["barclays bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bcc": {"name": "Bcc", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BCCRomaOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25060394", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bcc", "brand:wikidata": "Q25060394", "brand:wikipedia": "en:Banca di Credito Cooperativo di Roma", "name": "Bcc"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Belfius": {"name": "Belfius", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/belfius/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1956014", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Belfius", "brand:wikidata": "Q1956014", "brand:wikipedia": "en:Belfius", "name": "Belfius"}, "countryCodes": ["be"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bendigo Bank": {"name": "Bendigo Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BendigoBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4887077", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bendigo Bank", "brand:wikidata": "Q4887077", "brand:wikipedia": "en:Bendigo and Adelaide Bank", "name": "Bendigo Bank"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Beobank": {"name": "Beobank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/504563613378416641/F2K4x0xz_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q14911971", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Beobank", "brand:wikidata": "Q14911971", "brand:wikipedia": "nl:Beobank", "name": "Beobank"}, "countryCodes": ["be"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Berliner Volksbank": {"name": "Berliner Volksbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BerlinerVolksbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q821855", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Berliner Volksbank", "brand:wikidata": "Q821855", "brand:wikipedia": "de:Berliner Volksbank", "name": "Berliner Volksbank"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bicentenario": {"name": "Bicentenario", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BicentenarioBU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5728123", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bicentenario", "brand:wikidata": "Q5728123", "brand:wikipedia": "es:Bicentenario Banco Universal", "name": "Bicentenario"}, "countryCodes": ["ve"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bicici": {"name": "Bicici", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BICICIGroupeBNPParibas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1667302", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bicici", "brand:wikidata": "Q1667302", "brand:wikipedia": "fr:Banque internationale pour le commerce et l'industrie de la Côte d'Ivoire", "name": "Bicici"}, "countryCodes": ["ci"], "terms": ["agence bicici"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Bradesco": {"name": "Bradesco", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bradesco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806181", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Bradesco", "brand:wikidata": "Q806181", "brand:wikipedia": "en:Banco Bradesco", "name": "Bradesco"}, "countryCodes": ["br"], "terms": ["banco bradesco"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Budapest Bank": {"name": "Budapest Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/budapestbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27493463", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Budapest Bank", "brand:wikidata": "Q27493463", "brand:wikipedia": "en:Budapest Bank", "name": "Budapest Bank"}, "countryCodes": ["hu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CBAO": {"name": "CBAO", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/161410284020244/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q532104", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CBAO", "brand:wikidata": "Q532104", "brand:wikipedia": "fr:CBAO Groupe Attijariwafa bank", "name": "CBAO"}, "countryCodes": ["sn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CEC Bank": {"name": "CEC Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/521658591374182/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1023306", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CEC Bank", "brand:wikidata": "Q1023306", "brand:wikipedia": "en:CEC Bank", "name": "CEC Bank"}, "countryCodes": ["ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CIB Bank": {"name": "CIB Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/with.cib.hu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q839566", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CIB Bank", "brand:wikidata": "Q839566", "brand:wikipedia": "en:CIB Bank", "name": "CIB Bank"}, "countryCodes": ["hu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CIBC": {"name": "CIBC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CIBC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q666694", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CIBC", "brand:wikidata": "Q666694", "brand:wikipedia": "en:Canadian Imperial Bank of Commerce", "name": "CIBC"}, "countryCodes": ["ca"], "terms": ["cibc banking centre"], "matchScore": 2, "suggestion": true}, - "amenity/bank/CIC": {"name": "CIC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/cic/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q746525", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CIC", "brand:wikidata": "Q746525", "brand:wikipedia": "en:Crédit Industriel et Commercial", "name": "CIC"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CIH Bank": {"name": "CIH Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/cihbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3006220", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CIH Bank", "brand:wikidata": "Q3006220", "brand:wikipedia": "en:CIH Bank", "name": "CIH Bank"}, "countryCodes": ["ma"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CIMB Bank": {"name": "CIMB Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CIMBMalaysia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3045976", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CIMB Bank", "brand:wikidata": "Q3045976", "brand:wikipedia": "en:CIMB", "name": "CIMB Bank"}, "countryCodes": ["my"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CIMB Niaga": {"name": "CIMB Niaga", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CIMBIndonesia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5011747", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CIMB Niaga", "brand:wikidata": "Q5011747", "brand:wikipedia": "en:CIMB Niaga", "name": "CIMB Niaga"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CNEP": {"name": "CNEP", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CNEPOfficielle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2931752", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CNEP", "brand:wikidata": "Q2931752", "brand:wikipedia": "fr:CNEP-Banque", "name": "CNEP"}, "countryCodes": ["dz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CRDB Bank": {"name": "CRDB Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/crdbbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5013848", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CRDB Bank", "brand:wikidata": "Q5013848", "brand:wikipedia": "en:CRDB Bank", "name": "CRDB Bank"}, "countryCodes": ["tz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Caisse d'Épargne": {"name": "Caisse d'Épargne", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Caisse.Epargne/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1547738", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Caisse d'Épargne", "brand:wikidata": "Q1547738", "brand:wikipedia": "fr:Caisse d'épargne (banque)", "name": "Caisse d'Épargne"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Caixa Econômica Federal (Brazil)": {"name": "Caixa Econômica Federal (Brazil)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/caixa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q835283", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Caixa Econômica Federal", "brand:wikidata": "Q835283", "brand:wikipedia": "pt:Caixa Econômica Federal", "name": "Caixa Econômica Federal"}, "countryCodes": ["br"], "terms": ["caixa", "caixabank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Caixa Geral de Depósitos": {"name": "Caixa Geral de Depósitos", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/caixageraldedepositos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1026044", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Caixa Geral de Depósitos", "brand:wikidata": "Q1026044", "brand:wikipedia": "pt:Caixa Geral de Depósitos", "name": "Caixa Geral de Depósitos"}, "countryCodes": ["es", "fr", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Caixabank (Spain)": {"name": "Caixabank (Spain)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CaixaBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q847225", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Caixabank", "brand:wikidata": "Q847225", "brand:wikipedia": "en:CaixaBank", "name": "Caixabank"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Caja Duero": {"name": "Caja Duero", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/222871461403445/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3821055", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Caja Duero", "brand:wikidata": "Q3821055", "brand:wikipedia": "es:Caja Duero", "name": "Caja Duero"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Caja España": {"name": "Caja España", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo-vector-caja-espana.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q966985", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Caja España", "brand:wikidata": "Q966985", "brand:wikipedia": "es:Caja España", "name": "Caja España"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Caja Rural": {"name": "Caja Rural", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLOGO%20GRUPO%20Caja%20Rural.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3649971", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Caja Rural", "brand:wikidata": "Q3649971", "brand:wikipedia": "es:Caja Rural", "name": "Caja Rural"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Caja Rural de Jaén": {"name": "Caja Rural de Jaén", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCaja%20Rural.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18720350", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Caja Rural de Jaén", "brand:wikidata": "Q18720350", "brand:wikipedia": "es:Caja Rural de Jaén", "name": "Caja Rural de Jaén"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CajaSur": {"name": "CajaSur", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Cajasur/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3751637", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CajaSur", "brand:wikidata": "Q3751637", "brand:wikipedia": "en:CajaSur", "name": "CajaSur"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Cajamar": {"name": "Cajamar", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/cajamar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8254971", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Cajamar", "brand:wikidata": "Q8254971", "brand:wikipedia": "es:Cajamar", "name": "Cajamar"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/California Coast Credit Union": {"name": "California Coast Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CalCoastCU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25025281", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "California Coast Credit Union", "brand:wikidata": "Q25025281", "brand:wikipedia": "en:California Coast Credit Union", "name": "California Coast Credit Union"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Canara Bank": {"name": "Canara Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/canarabank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2003777", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Canara Bank", "brand:wikidata": "Q2003777", "brand:wikipedia": "en:Canara Bank", "name": "Canara Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Capital Bank": {"name": "Capital Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5035481", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Capital Bank", "brand:wikidata": "Q5035481", "brand:wikipedia": "en:Capital Bank Financial", "name": "Capital Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Capital One": {"name": "Capital One", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/capitalone/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1034654", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Capital One", "brand:wikidata": "Q1034654", "brand:wikipedia": "en:Capital One", "name": "Capital One"}, "countryCodes": ["us"], "terms": ["capital one bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Carige": {"name": "Carige", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/608212417395499008/oUMlcP6e_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3633695", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Carige", "brand:wikidata": "Q3633695", "brand:wikipedia": "en:Banca Carige", "name": "Carige"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Cariparma": {"name": "Cariparma", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CreditAgricoleItalia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2938832", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Cariparma", "brand:wikidata": "Q2938832", "brand:wikipedia": "en:Crédit Agricole Italia", "name": "Cariparma"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Carisbo": {"name": "Carisbo", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3661937", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Carisbo", "brand:wikidata": "Q3661937", "brand:wikipedia": "en:Cassa di Risparmio in Bologna", "name": "Carisbo"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Casden": {"name": "Casden", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CASDEN.BanquePopulaire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2930976", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Casden", "brand:wikidata": "Q2930976", "brand:wikipedia": "fr:CASDEN Banque populaire", "name": "Casden"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Cassa di Risparmio del Veneto": {"name": "Cassa di Risparmio del Veneto", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CassadiRisparmiodelVeneto/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3661909", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Cassa di Risparmio del Veneto", "brand:wikidata": "Q3661909", "brand:wikipedia": "en:Cassa di Risparmio del Veneto", "name": "Cassa di Risparmio del Veneto"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/CatalunyaCaixa": {"name": "CatalunyaCaixa", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20cx%20original.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3750952", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "CatalunyaCaixa", "brand:wikidata": "Q3750952", "brand:wikipedia": "en:CatalunyaCaixa", "name": "CatalunyaCaixa"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Cathay Bank": {"name": "Cathay Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/cathaybank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4189507", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Cathay Bank", "brand:wikidata": "Q4189507", "brand:wikipedia": "en:Cathay Bank", "name": "Cathay Bank"}, "countryCodes": ["cn", "tw", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Central Bank of India": {"name": "Central Bank of India", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CentralBankofIndia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2007090", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Central Bank of India", "brand:wikidata": "Q2007090", "brand:wikipedia": "en:Central Bank of India", "name": "Central Bank of India"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Chase": {"name": "Chase", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/chase/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q524629", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Chase", "brand:wikidata": "Q524629", "brand:wikipedia": "en:Chase Bank", "name": "Chase"}, "terms": ["chase bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Chemical Bank": {"name": "Chemical Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ChemicalBankCommunity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q86815846", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Chemical Bank", "brand:wikidata": "Q86815846", "name": "Chemical Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/China Bank": {"name": "China Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/chinabank.ph/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5100080", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "China Bank", "brand:wikidata": "Q5100080", "brand:wikipedia": "en:Chinabank", "name": "China Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/China Bank Savings": {"name": "China Bank Savings", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/cbschinabanksavings/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18387359", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "China Bank Savings", "brand:wikidata": "Q18387359", "brand:wikipedia": "en:China Bank Savings", "name": "China Bank Savings"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/China Construction Bank": {"name": "China Construction Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/225342697629586/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26299", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "China Construction Bank", "brand:wikidata": "Q26299", "brand:wikipedia": "en:China Construction Bank", "name": "China Construction Bank", "short_name": "CCB"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Citibank": {"name": "Citibank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/citi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q857063", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Citibank", "brand:wikidata": "Q857063", "brand:wikipedia": "en:Citibank", "name": "Citibank", "short_name": "Citi"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Citizens Bank (Eastern USA)": {"name": "Citizens Bank (Eastern USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/citizensbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5122694", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Citizens Bank", "brand:wikidata": "Q5122694", "brand:wikipedia": "en:Citizens Financial Group", "name": "Citizens Bank", "short_name": "Citizens"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Citizens Bank (Kentucky)": {"name": "Citizens Bank (Kentucky)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/citizensbankofkentucky/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5122711", "amenity": "bank"}, "addTags": {"alt_name": "Citizens Bank of Kentucky", "amenity": "bank", "brand": "Citizens Bank", "brand:wikidata": "Q5122711", "brand:wikipedia": "en:Citizens National Bank (Eastern Kentucky)", "name": "Citizens Bank", "official_name": "Citizens National Bank", "short_name": "Citizens"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Citizens Bank (Nepal)": {"name": "Citizens Bank (Nepal)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ctznbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13186934", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Citizens Bank International", "brand:wikidata": "Q13186934", "brand:wikipedia": "en:Citizens Bank International", "name": "Citizens Bank", "official_name": "Citizens Bank International Ltd.", "short_name": "Citizens"}, "countryCodes": ["np"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/City National Bank (California)": {"name": "City National Bank (California)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CityNationalBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5123314", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "City National Bank", "brand:wikidata": "Q5123314", "brand:wikipedia": "en:City National Bank (California)", "name": "City National Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/City National Bank (Florida)": {"name": "City National Bank (Florida)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CityNationalBankFL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16958644", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "City National Bank", "brand:wikidata": "Q16958644", "brand:wikipedia": "en:City National Bank of Florida", "name": "City National Bank", "official_name": "City National Bank of Florida"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/City National Bank (West Virginia)": {"name": "City National Bank (West Virginia)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankatcity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90937436", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "City National Bank", "brand:wikidata": "Q90937436", "name": "City National Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Clydesdale Bank": {"name": "Clydesdale Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/clydesdalebank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q971680", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Clydesdale Bank", "brand:wikidata": "Q971680", "brand:wikipedia": "en:Clydesdale Bank", "name": "Clydesdale Bank"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Coast Capital Savings": {"name": "Coast Capital Savings", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/coastcapitalsavings/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5138088", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Coast Capital Savings", "brand:wikidata": "Q5138088", "brand:wikipedia": "en:Coast Capital Savings", "name": "Coast Capital Savings", "official_name": "Coast Capital Savings Federal Credit Union"}, "countryCodes": ["ca"], "terms": ["coast capital", "coast capital savings credit union"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Columbia Bank (New Jersey)": {"name": "Columbia Bank (New Jersey)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/columbiabank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62084096", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Columbia Bank", "brand:wikidata": "Q62084096", "name": "Columbia Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Columbia Bank (Washington)": {"name": "Columbia Bank (Washington)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/columbiastatebank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62084089", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Columbia Bank", "brand:wikidata": "Q62084089", "name": "Columbia Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Comerica Bank": {"name": "Comerica Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/comerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1114148", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Comerica Bank", "brand:wikidata": "Q1114148", "brand:wikipedia": "en:Comerica", "name": "Comerica Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Commerce Bank": {"name": "Commerce Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/commercebank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5152411", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Commerce Bank", "brand:wikidata": "Q5152411", "brand:wikipedia": "en:Commerce Bancshares", "name": "Commerce Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Commercial Bank of Ceylon PLC": {"name": "Commercial Bank of Ceylon PLC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/combanksl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5152468", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Commercial Bank of Ceylon PLC", "brand:wikidata": "Q5152468", "brand:wikipedia": "en:Commercial Bank of Ceylon", "name": "Commercial Bank of Ceylon PLC"}, "countryCodes": ["lk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Commerzbank": {"name": "Commerzbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/commerzbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q157617", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Commerzbank", "brand:wikidata": "Q157617", "brand:wikipedia": "en:Commerzbank", "name": "Commerzbank"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Commonwealth Bank": {"name": "Commonwealth Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/commonwealthbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q285328", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Commonwealth Bank", "brand:wikidata": "Q285328", "brand:wikipedia": "en:Commonwealth Bank", "name": "Commonwealth Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Community Bank": {"name": "Community Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/communitybankna/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5154635", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Community Bank", "brand:wikidata": "Q5154635", "brand:wikipedia": "en:Community Bank, N.A.", "name": "Community Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Corporation Bank": {"name": "Corporation Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/corporationbank.co.in/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2003387", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Corporation Bank", "brand:wikidata": "Q2003387", "brand:wikipedia": "en:Corporation Bank", "name": "Corporation Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Credem": {"name": "Credem", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/credem/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3696881", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Credem", "brand:wikidata": "Q3696881", "brand:wikipedia": "en:Credito Emiliano", "name": "Credem"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Credicoop": {"name": "Credicoop", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancocredicoopcl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854086", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Credicoop", "brand:wikidata": "Q4854086", "brand:wikipedia": "en:Banco Credicoop", "name": "Credicoop"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Credit Suisse": {"name": "Credit Suisse", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/creditsuisse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q372657", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Credit Suisse", "brand:wikidata": "Q372657", "brand:wikipedia": "en:Credit Suisse", "name": "Credit Suisse"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Credito Valtellinese": {"name": "Credito Valtellinese", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Creval/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3696888", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Credito Valtellinese", "brand:wikidata": "Q3696888", "brand:wikipedia": "en:Credito Valtellinese", "name": "Credito Valtellinese"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Crelan": {"name": "Crelan", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Crelan.Banque/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q389872", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Crelan", "brand:wikidata": "Q389872", "brand:wikipedia": "en:Crelan", "name": "Crelan"}, "countryCodes": ["be"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Crédit Agricole": {"name": "Crédit Agricole", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CreditAgricole/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q590952", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Crédit Agricole", "brand:wikidata": "Q590952", "brand:wikipedia": "fr:Crédit agricole", "name": "Crédit Agricole"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Crédit Maritime": {"name": "Crédit Maritime", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CreditMaritimeGrandOuest/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17176866", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Crédit Maritime", "brand:wikidata": "Q17176866", "brand:wikipedia": "fr:Crédit maritime", "name": "Crédit Maritime"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Crédit Mutuel": {"name": "Crédit Mutuel", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/creditmutuel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q642627", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Crédit Mutuel", "brand:wikidata": "Q642627", "brand:wikipedia": "en:Crédit Mutuel", "name": "Crédit Mutuel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Crédit Mutuel de Bretagne": {"name": "Crédit Mutuel de Bretagne", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/GroupeArkea/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3006236", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Crédit Mutuel de Bretagne", "brand:wikidata": "Q3006236", "brand:wikipedia": "fr:Crédit mutuel Arkéa", "name": "Crédit Mutuel de Bretagne"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Crédit du Nord": {"name": "Crédit du Nord", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/creditdunord/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3006209", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Crédit du Nord", "brand:wikidata": "Q3006209", "brand:wikipedia": "en:Crédit du Nord", "name": "Crédit du Nord"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Crédito Agrícola": {"name": "Crédito Agrícola", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/grupocreditoagricola/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10262017", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Crédito Agrícola", "brand:wikidata": "Q10262017", "brand:wikipedia": "pt:Crédito Agrícola", "name": "Crédito Agrícola"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Danske Bank": {"name": "Danske Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/DanskeBankDanmark/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1636974", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Danske Bank", "brand:wikidata": "Q1636974", "brand:wikipedia": "en:Danske Bank", "name": "Danske Bank"}, "countryCodes": ["dk", "fi", "gb", "lt", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Davivienda": {"name": "Davivienda", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoDavivienda/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5242054", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Davivienda", "brand:wikidata": "Q5242054", "brand:wikipedia": "es:Davivienda", "name": "Davivienda"}, "countryCodes": ["co", "cr", "hn", "pa", "sv"], "terms": ["banco davivienda"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Degussa": {"name": "Degussa", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDegussa%20bank%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1182932", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Degussa", "brand:wikidata": "Q1182932", "brand:wikipedia": "de:Degussa Bank", "name": "Degussa"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Denizbank": {"name": "Denizbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/DenizBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1115064", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Denizbank", "brand:wikidata": "Q1115064", "brand:wikipedia": "en:DenizBank", "name": "Denizbank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Desjardins": {"name": "Desjardins", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/desjardins/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2933350", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Desjardins", "brand:wikidata": "Q2933350", "brand:wikipedia": "en:Desjardins Group", "name": "Desjardins"}, "countryCodes": ["ca"], "terms": ["caisse desjardins"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Deutsche Bank": {"name": "Deutsche Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/DeutscheBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66048", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Deutsche Bank", "brand:wikidata": "Q66048", "brand:wikipedia": "en:Deutsche Bank", "name": "Deutsche Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Dollar Bank": {"name": "Dollar Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/dollarbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5289205", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Dollar Bank", "brand:wikidata": "Q5289205", "brand:wikipedia": "en:Dollar Bank", "name": "Dollar Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Dubai Islamic Bank": {"name": "Dubai Islamic Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/dib.uae/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5310570", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Dubai Islamic Bank", "brand:wikidata": "Q5310570", "brand:wikipedia": "en:Dubai Islamic Bank", "name": "Dubai Islamic Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/EastWest Unibank": {"name": "EastWest Unibank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/EastWestBanker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5327595", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "EastWest Unibank", "brand:wikidata": "Q5327595", "brand:wikipedia": "en:EastWest Bank", "name": "EastWest Unibank"}, "countryCodes": ["ph"], "terms": ["eastwest bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Ecobank": {"name": "Ecobank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/EcobankGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q930225", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Ecobank", "brand:wikidata": "Q930225", "brand:wikipedia": "en:Ecobank", "name": "Ecobank"}, "terms": ["agence ecobank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Emirates NBD": {"name": "Emirates NBD", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/EmiratesNBD/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5372575", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Emirates NBD", "brand:wikidata": "Q5372575", "brand:wikipedia": "en:Emirates NBD", "name": "Emirates NBD"}, "countryCodes": ["ae"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Equity Bank (Congo)": {"name": "Equity Bank (Congo)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/www.equitybank.cd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21178738", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q21178738", "brand:wikipedia": "en:Equity Bank Congo", "name": "Equity Bank"}, "countryCodes": ["cd"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Equity Bank (Kenya)": {"name": "Equity Bank (Kenya)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/KeEquityBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5384664", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384664", "brand:wikipedia": "en:Equity Bank Kenya Limited", "name": "Equity Bank"}, "countryCodes": ["ke"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Equity Bank (Rwanda)": {"name": "Equity Bank (Rwanda)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/RwEquityBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5384665", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384665", "brand:wikipedia": "en:Equity Bank Rwanda Limited", "name": "Equity Bank"}, "countryCodes": ["rw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Equity Bank (South Sudan)": {"name": "Equity Bank (South Sudan)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5384666", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384666", "brand:wikipedia": "en:Equity Bank South Sudan Limited", "name": "Equity Bank"}, "countryCodes": ["ss"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Equity Bank (Tanzania)": {"name": "Equity Bank (Tanzania)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/TzEquityBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5384667", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384667", "brand:wikipedia": "en:Equity Bank Tanzania Limited", "name": "Equity Bank"}, "countryCodes": ["tz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Equity Bank (USA)": {"name": "Equity Bank (USA)", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/624655695741366272/12-izccG_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62260414", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q62260414", "brand:wikipedia": "en:Equity Bank USA", "name": "Equity Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Equity Bank (Uganda)": {"name": "Equity Bank (Uganda)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UgEquityBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5384668", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Equity Bank", "brand:wikidata": "Q5384668", "brand:wikipedia": "en:Equity Bank Uganda Limited", "name": "Equity Bank"}, "countryCodes": ["ug"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Erste Bank": {"name": "Erste Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1008639007046107136/-MtFGuJT_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q696867", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Erste Bank", "brand:wikidata": "Q696867", "brand:wikipedia": "de:Erste Bank", "name": "Erste Bank"}, "countryCodes": ["at", "hr", "hu", "rs"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/EuroBic": {"name": "EuroBic", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/607149339334285/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806175", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "EuroBic", "brand:wikidata": "Q806175", "brand:wikipedia": "pt:EuroBic", "name": "EuroBic", "official_name": "Banco BIC Português"}, "countryCodes": ["pt"], "terms": ["banco bic"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Eurobank (Greece)": {"name": "Eurobank (Greece)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/319859041765749/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q951850", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Eurobank", "brand:wikidata": "Q951850", "brand:wikipedia": "el:Eurobank", "name": "Eurobank"}, "countryCodes": ["gr"], "terms": ["eurobank ergasias"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Eurobank (Poland)": {"name": "Eurobank (Poland)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9256201", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Eurobank", "brand:wikidata": "Q9256201", "brand:wikipedia": "pl:Euro Bank", "name": "Eurobank"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Eurobank (Serbia)": {"name": "Eurobank (Serbia)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/EurobankSrbija/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5411684", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Eurobank", "brand:wikidata": "Q5411684", "brand:wikipedia": "sr:Eurobanka", "name": "Eurobank"}, "countryCodes": ["rs"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/FNB (South Africa)": {"name": "FNB (South Africa)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FNBSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3072956", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "FNB", "brand:wikidata": "Q3072956", "brand:wikipedia": "en:First National Bank (South Africa)", "name": "FNB", "official_name": "First National Bank"}, "countryCodes": ["bw", "mz", "na", "us", "za", "zm"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Faysal Bank": {"name": "Faysal Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/faysalbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5439099", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Faysal Bank", "brand:wikidata": "Q5439099", "brand:wikipedia": "en:Faysal Bank", "name": "Faysal Bank"}, "countryCodes": ["pk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Federal Bank": {"name": "Federal Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/federalbankltd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2044983", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Federal Bank", "brand:wikidata": "Q2044983", "brand:wikipedia": "en:Federal Bank", "name": "Federal Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Fidelity Bank (Ghana)": {"name": "Fidelity Bank (Ghana)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/fidelitybankgh/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5446778", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Fidelity Bank", "brand:wikidata": "Q5446778", "brand:wikipedia": "en:Fidelity Bank Ghana", "name": "Fidelity Bank"}, "countryCodes": ["gh"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Fidelity Bank (Nigeria)": {"name": "Fidelity Bank (Nigeria)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FidelityBankplc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5446777", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Fidelity Bank", "brand:wikidata": "Q5446777", "brand:wikipedia": "en:Fidelity Bank Nigeria", "name": "Fidelity Bank"}, "countryCodes": ["ng"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Fidelity Bank (USA)": {"name": "Fidelity Bank (USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/fidelityinvestments/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1411292", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Fidelity Bank", "brand:wikidata": "Q1411292", "brand:wikipedia": "en:Fidelity Investments", "name": "Fidelity Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Fifth Third Bank": {"name": "Fifth Third Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FifthThirdBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1411810", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Fifth Third Bank", "brand:wikidata": "Q1411810", "brand:wikipedia": "en:Fifth Third Bank", "name": "Fifth Third Bank", "short_name": "5/3 Bank"}, "countryCodes": ["us"], "terms": ["5/3"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Finansbank": {"name": "Finansbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/qnbfinansbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1416237", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Finansbank", "brand:wikidata": "Q1416237", "brand:wikipedia": "en:Finansbank", "name": "Finansbank"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Fio banka": {"name": "Fio banka", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Fiobanka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12016657", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Fio banka", "brand:wikidata": "Q12016657", "brand:wikipedia": "cs:Fio banka", "name": "Fio banka"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First Bank (North and South Carolina)": {"name": "First Bank (North and South Carolina)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/localfirstbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5452332", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First Bank", "brand:wikidata": "Q5452332", "brand:wikipedia": "en:First Bancorp", "name": "First Bank"}, "countryCodes": ["us"], "terms": ["1st bancorp", "1st bank", "first bancorp"], "matchScore": 2, "suggestion": true}, - "amenity/bank/First Bank (Puerto Rico)": {"name": "First Bank (Puerto Rico)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/firstbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5452333", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First Bank", "brand:wikidata": "Q5452333", "brand:wikipedia": "en:First BanCorp", "name": "First Bank"}, "countryCodes": ["us"], "terms": ["1st bancorp", "1st bank", "first bancorp"], "matchScore": 2, "suggestion": true}, - "amenity/bank/First Bank (Western USA)": {"name": "First Bank (Western USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/efirstbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5452217", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First Bank", "brand:wikidata": "Q5452217", "brand:wikipedia": "en:FirstBank Holding Co", "name": "First Bank", "short_name": "1STBank"}, "countryCodes": ["us"], "terms": ["1st bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/First Citizens Bank (Trinidad and Tobago)": {"name": "First Citizens Bank (Trinidad and Tobago)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FirstCitizens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5452734", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First Citizens Bank", "brand:wikidata": "Q5452734", "brand:wikipedia": "en:First Citizens Bank (Trinidad and Tobago)", "name": "First Citizens Bank"}, "countryCodes": ["bb", "tt"], "terms": ["1st citizens bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/First Citizens Bank (USA)": {"name": "First Citizens Bank (USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/firstcitizensbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5452733", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First Citizens Bank", "brand:wikidata": "Q5452733", "brand:wikipedia": "en:First Citizens BancShares", "name": "First Citizens Bank"}, "countryCodes": ["us"], "terms": ["1st citizens bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/First Financial Bank": {"name": "First Financial Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FirstFinancialBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5453009", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First Financial Bank", "brand:wikidata": "Q5453009", "brand:wikipedia": "en:First Financial Bank (Ohio)", "name": "First Financial Bank"}, "countryCodes": ["us"], "terms": ["1st financial bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/First Interstate Bank": {"name": "First Interstate Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FirstInterstateBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5453107", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First Interstate BancSystem", "brand:wikidata": "Q5453107", "brand:wikipedia": "en:First Interstate BancSystem", "name": "First Interstate Bank"}, "countryCodes": ["us"], "terms": ["1st interstate", "1st interstate bancsystem", "1st interstate bank", "first interstate", "first interstate bancsystem"], "matchScore": 2, "suggestion": true}, - "amenity/bank/First Midwest Bank": {"name": "First Midwest Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FirstMidwest/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5453331", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First Midwest Bank", "brand:wikidata": "Q5453331", "brand:wikipedia": "en:First Midwest Bank", "name": "First Midwest Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First National Bank (USA)": {"name": "First National Bank (USA)", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5426765", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First National Bank", "brand:wikidata": "Q5426765", "brand:wikipedia": "en:F.N.B. Corporation", "name": "First National Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First State Bank Nebraska": {"name": "First State Bank Nebraska", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87646525", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First State Bank", "brand:wikidata": "Q87646525", "name": "First State Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First State Bank (Florida)": {"name": "First State Bank (Florida)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/keysbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87647395", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First State Bank", "brand:wikidata": "Q87647395", "name": "First State Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First State Bank (Illinois)": {"name": "First State Bank (Illinois)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FirstStateBankIL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87647340", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First State Bank", "brand:wikidata": "Q87647340", "name": "First State Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First State Bank (Michigan)": {"name": "First State Bank (Michigan)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/193858687327900/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87647479", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First State Bank", "brand:wikidata": "Q87647479", "name": "First State Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First State Bank (Mississippi)": {"name": "First State Bank (Mississippi)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FirstStateBnk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87647452", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First State Bank", "brand:wikidata": "Q87647452", "name": "First State Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First State Bank (Nebraska)": {"name": "First State Bank (Nebraska)", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1029745033338007555/oh66HKqk_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5453817", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First State Bank", "brand:wikidata": "Q5453817", "name": "First State Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First State Bank (Ohio)": {"name": "First State Bank (Ohio)", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/544566147052339200/WKGio7YM_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87647374", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First State Bank", "brand:wikidata": "Q87647374", "name": "First State Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First State Bank (Texas)": {"name": "First State Bank (Texas)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FirstStateBankTX/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87647065", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First State Bank", "brand:wikidata": "Q87647065", "name": "First State Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/First Tech Credit Union": {"name": "First Tech Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Firsttechfed/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5453865", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "First Tech Credit Union", "brand:wikidata": "Q5453865", "brand:wikipedia": "en:First Tech Credit Union", "name": "First Tech Credit Union"}, "countryCodes": ["us"], "terms": ["1st tech", "1st tech credit union", "first tech"], "matchScore": 2, "suggestion": true}, - "amenity/bank/First West Credit Union": {"name": "First West Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/WebsterFirst/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5454073", "amenity": "bank"}, "addTags": {"alt_name": "First West", "amenity": "bank", "brand": "First West Credit Union", "brand:wikidata": "Q5454073", "brand:wikipedia": "en:First West Credit Union", "name": "First West Credit Union"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Frost Bank": {"name": "Frost Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/FrostBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5506152", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Frost Bank", "brand:wikidata": "Q5506152", "brand:wikipedia": "en:Frost Bank", "name": "Frost Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Fulton Bank": {"name": "Fulton Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/605798444855197696/U70Uo44x_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16976594", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Fulton Bank", "brand:wikidata": "Q16976594", "name": "Fulton Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/GCB Bank": {"name": "GCB Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/gcbbanklimited/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1521346", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "GCB Bank", "brand:wikidata": "Q1521346", "brand:wikipedia": "en:GCB Bank", "name": "GCB Bank"}, "countryCodes": ["gh"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/GT Bank": {"name": "GT Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/gtbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q579747", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "GT Bank", "brand:wikidata": "Q579747", "brand:wikipedia": "en:Guaranty Trust Bank", "name": "GT Bank", "official_name": "Guaranty Trust Bank"}, "countryCodes": ["ci", "gb", "gh", "gm", "ke", "lr", "ng", "rw", "tz", "ug"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Galicia": {"name": "Galicia", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancogalicia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5717952", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Galicia", "brand:wikidata": "Q5717952", "brand:wikipedia": "es:Banco Galicia", "name": "Galicia"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Garanti": {"name": "Garanti", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/GarantiBBVA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q322962", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Garanti", "brand:wikidata": "Q322962", "brand:wikipedia": "en:Garanti Bank", "name": "Garanti"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Garanti Bankası": {"name": "Garanti Bankası", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/GarantiBBVA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q322962", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Garanti Bankası", "brand:wikidata": "Q322962", "brand:wikipedia": "en:Garanti Bank", "name": "Garanti Bankası"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Getin Bank": {"name": "Getin Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/GetinBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9267646", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Getin Bank", "brand:wikidata": "Q9267646", "brand:wikipedia": "pl:Getin Bank", "name": "Getin Bank"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Golden 1 Credit Union": {"name": "Golden 1 Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/golden1cu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7736976", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Golden 1 Credit Union", "brand:wikidata": "Q7736976", "brand:wikipedia": "en:Golden 1 Credit Union", "name": "Golden 1 Credit Union"}, "countryCodes": ["us"], "terms": ["golden 1", "golden one", "golden one credit union", "the golden 1 credit union", "the golden one credit union"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Great Western Bank": {"name": "Great Western Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/500391873328778/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5600185", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Great Western Bank", "brand:wikidata": "Q5600185", "brand:wikipedia": "en:Great Western Bank (1907–present)", "name": "Great Western Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Groupama": {"name": "Groupama", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/groupama/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3083531", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Groupama", "brand:wikidata": "Q3083531", "brand:wikipedia": "en:Groupama", "name": "Groupama"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/HBL Bank": {"name": "HBL Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/HBLBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1566843", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "HBL Bank", "brand:wikidata": "Q1566843", "brand:wikipedia": "ur:ایچ بی ایل پاکستان", "name": "HBL Bank"}, "countryCodes": ["pk"], "terms": ["hbl"], "matchScore": 2, "suggestion": true}, - "amenity/bank/HDFC Bank": {"name": "HDFC Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/HDFC.bank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q631047", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "HDFC Bank", "brand:wikidata": "Q631047", "brand:wikipedia": "en:HDFC Bank", "name": "HDFC Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/HNB": {"name": "HNB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/HNBPLC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3532080", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "HNB", "brand:wikidata": "Q3532080", "brand:wikipedia": "en:Hatton National Bank", "name": "HNB"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/HSBC UK (UK)": {"name": "HSBC UK (UK)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/hsbcuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64767453", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "HSBC UK", "brand:wikidata": "Q64767453", "name": "HSBC UK"}, "countryCodes": ["gb"], "terms": ["hsbc"], "matchScore": 2, "suggestion": true}, - "amenity/bank/HSBC (Global)": {"name": "HSBC (Global)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/HSBC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q190464", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "HSBC", "brand:wikidata": "Q190464", "brand:wikipedia": "en:HSBC", "name": "HSBC"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Halifax": {"name": "Halifax", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/halifax/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3310164", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Halifax", "brand:wikidata": "Q3310164", "brand:wikipedia": "en:Halifax (bank)", "name": "Halifax"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Halkbank": {"name": "Halkbank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3593818", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Halkbank", "brand:wikidata": "Q3593818", "brand:wikipedia": "en:Halkbank a.d.", "name": "Halkbank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Hamburger Sparkasse": {"name": "Hamburger Sparkasse", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/haspa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1573140", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Hamburger Sparkasse", "brand:wikidata": "Q1573140", "brand:wikipedia": "de:Hamburger Sparkasse", "name": "Hamburger Sparkasse", "short_name": "Haspa"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Handelsbanken": {"name": "Handelsbanken", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Handelsbanken/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1421630", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Handelsbanken", "brand:wikidata": "Q1421630", "brand:wikipedia": "en:Handelsbanken", "name": "Handelsbanken"}, "countryCodes": ["dk", "fi", "gb", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Heritage Bank": {"name": "Heritage Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/heritage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5738690", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Heritage Bank", "brand:wikidata": "Q5738690", "brand:wikipedia": "en:Heritage Bank", "name": "Heritage Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Hong Leong Bank": {"name": "Hong Leong Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/HLBMalaysia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4383943", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Hong Leong Bank", "brand:wikidata": "Q4383943", "brand:wikipedia": "en:Hong Leong Bank", "name": "Hong Leong Bank"}, "countryCodes": ["my"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Hrvatska poštanska banka": {"name": "Hrvatska poštanska banka", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/mojpunnovcanik/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5923981", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Hrvatska poštanska banka", "brand:wikidata": "Q5923981", "brand:wikipedia": "en:Hrvatska poštanska banka", "name": "Hrvatska poštanska banka"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Huntington Bank": {"name": "Huntington Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/HuntingtonBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q798819", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Huntington Bank", "brand:wikidata": "Q798819", "brand:wikipedia": "en:Huntington Bancshares", "name": "Huntington Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/HypoVereinsbank": {"name": "HypoVereinsbank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/950681154906095618/sFON4jIk_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q220189", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "HypoVereinsbank", "brand:wikidata": "Q220189", "brand:wikipedia": "en:HypoVereinsbank", "name": "HypoVereinsbank"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ICBC": {"name": "ICBC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/icbcglobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26463", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ICBC", "brand:wikidata": "Q26463", "brand:wikipedia": "en:Industrial and Commercial Bank of China", "name": "ICBC"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ICICI Bank": {"name": "ICICI Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/icicibank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1653258", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ICICI Bank", "brand:wikidata": "Q1653258", "brand:wikipedia": "en:ICICI Bank", "name": "ICICI Bank"}, "countryCodes": ["ca", "gb", "in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/IDBI Bank": {"name": "IDBI Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/IDBIBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3633485", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "IDBI Bank", "brand:wikidata": "Q3633485", "brand:wikipedia": "en:IDBI Bank", "name": "IDBI Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ING": {"name": "ING", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ING/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q645708", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ING", "brand:wikidata": "Q645708", "brand:wikipedia": "en:ING Group", "name": "ING"}, "terms": ["ing bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/ING Bank Śląski": {"name": "ING Bank Śląski", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/INGPolska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1410383", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ING Bank Śląski", "brand:wikidata": "Q1410383", "brand:wikipedia": "pl:ING Bank Śląski", "name": "ING Bank Śląski"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Ibercaja": {"name": "Ibercaja", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Ibercaja/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5907815", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Ibercaja", "brand:wikidata": "Q5907815", "brand:wikipedia": "es:Ibercaja (banco)", "name": "Ibercaja"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Indian Bank": {"name": "Indian Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/MyIndianBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2003789", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Indian Bank", "brand:wikidata": "Q2003789", "brand:wikipedia": "en:Indian Bank", "name": "Indian Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Indian Overseas Bank": {"name": "Indian Overseas Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankiob/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2003611", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Indian Overseas Bank", "brand:wikidata": "Q2003611", "brand:wikipedia": "en:Indian Overseas Bank", "name": "Indian Overseas Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Interbank": {"name": "Interbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/InterbankPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2835558", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Interbank", "brand:wikidata": "Q2835558", "brand:wikipedia": "es:Interbank", "name": "Interbank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Intesa Sanpaolo": {"name": "Intesa Sanpaolo", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/intesasanpaolo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1343118", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Intesa Sanpaolo", "brand:wikidata": "Q1343118", "brand:wikipedia": "it:Intesa Sanpaolo", "name": "Intesa Sanpaolo"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Investors Bank": {"name": "Investors Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Investorsbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15109896", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Investors Bank", "brand:wikidata": "Q15109896", "brand:wikipedia": "en:Investors Bank", "name": "Investors Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Itaú (Brazil)": {"name": "Itaú (Brazil)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/itau/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1424293", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Itaú Unibanco", "brand:wikidata": "Q1424293", "brand:wikipedia": "pt:Itaú Unibanco", "name": "Itaú"}, "countryCodes": ["br"], "terms": ["banco itau"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Itaú (Chile)": {"name": "Itaú (Chile)", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1193543054105415681/GNeUutB1_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2423252", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Itaú Corpbanca", "brand:wikidata": "Q2423252", "brand:wikipedia": "en:Itaú Corpbanca", "name": "Itaú"}, "countryCodes": ["cl"], "terms": ["banco itau"], "matchScore": 2, "suggestion": true}, - "amenity/bank/J&T Banka": {"name": "J&T Banka", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/JT.BANKA.SK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12022160", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "J&T Banka", "brand:wikidata": "Q12022160", "brand:wikipedia": "sk:J & T BANKA", "name": "J&T Banka"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/JS Bank": {"name": "JS Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/JSBankLtd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6108986", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "JS Bank", "brand:wikidata": "Q6108986", "brand:wikipedia": "en:JS Bank", "name": "JS Bank"}, "countryCodes": ["pk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Jyske Bank": {"name": "Jyske Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1062308131567517702/0I4wgGmc_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q136672", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Jyske Bank", "brand:wikidata": "Q136672", "brand:wikipedia": "en:Jyske Bank", "name": "Jyske Bank"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/K&H Bank": {"name": "K&H Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/dontsokosan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6393834", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "K&H Bank", "brand:wikidata": "Q6393834", "brand:wikipedia": "en:K&H Bank", "name": "K&H Bank"}, "countryCodes": ["hu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/KBC": {"name": "KBC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/KBCBankEnVerzekering/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q941020", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "KBC", "brand:wikidata": "Q941020", "brand:wikipedia": "en:KBC Bank", "name": "KBC"}, "countryCodes": ["be", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/KBZ Bank": {"name": "KBZ Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/KanbawzaBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6360949", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "KBZ Bank", "brand:wikidata": "Q6360949", "brand:wikipedia": "en:Kanbawza Bank", "name": "KBZ Bank"}, "countryCodes": ["mm"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Karnataka Bank": {"name": "Karnataka Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/KarnatakaBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2042632", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Karnataka Bank", "brand:wikidata": "Q2042632", "brand:wikipedia": "en:Karnataka Bank", "name": "Karnataka Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Karur Vysya Bank": {"name": "Karur Vysya Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/KVB100/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6373724", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Karur Vysya Bank", "brand:wikidata": "Q6373724", "brand:wikipedia": "en:Karur Vysya Bank", "name": "Karur Vysya Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Kasa Stefczyka": {"name": "Kasa Stefczyka", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/kasastefczykapl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57624461", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Kasa Stefczyka", "brand:wikidata": "Q57624461", "name": "Kasa Stefczyka"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/KeyBank": {"name": "KeyBank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/keybank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1740314", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "KeyBank", "brand:wikidata": "Q1740314", "brand:wikipedia": "en:KeyBank", "name": "KeyBank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Komerční banka": {"name": "Komerční banka", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/komercni.banka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1541079", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Komerční banka", "brand:wikidata": "Q1541079", "brand:wikipedia": "en:Komerční banka", "name": "Komerční banka"}, "countryCodes": ["cz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Kotak Mahindra Bank": {"name": "Kotak Mahindra Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/KotakBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2040404", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Kotak Mahindra Bank", "brand:wikidata": "Q2040404", "brand:wikipedia": "en:Kotak Mahindra Bank", "name": "Kotak Mahindra Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Kutxabank": {"name": "Kutxabank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Kutxabank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5139377", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Kutxabank", "brand:wikidata": "Q5139377", "brand:wikipedia": "en:Kutxabank", "name": "Kutxabank"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Kuveyt Türk": {"name": "Kuveyt Türk", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/KuveytTurk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6036058", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Kuveyt Türk", "brand:wikidata": "Q6036058", "brand:wikipedia": "tr:Kuveyt Türk", "name": "Kuveyt Türk"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/LCL": {"name": "LCL", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/LCL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q779722", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "LCL", "brand:wikidata": "Q779722", "brand:wikipedia": "fr:Crédit lyonnais", "name": "LCL"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/LCNB": {"name": "LCNB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/LCNBNATBANK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65095575", "amenity": "bank"}, "addTags": {"alt_name": "Lebanon Citizens National Bank", "amenity": "bank", "brand": "LCNB", "brand:wikidata": "Q65095575", "name": "LCNB", "official_name": "LCNB National Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/La Banque Postale": {"name": "La Banque Postale", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/labanquepostale/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3206431", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "La Banque Postale", "brand:wikidata": "Q3206431", "brand:wikipedia": "en:La Banque postale", "name": "La Banque Postale"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/La Caixa": {"name": "La Caixa", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/fundlacaixa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q287753", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "La Caixa", "brand:wikidata": "Q287753", "brand:wikipedia": "en:La Caixa", "name": "La Caixa"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Laboral Kutxa": {"name": "Laboral Kutxa", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/laboralkutxa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12052386", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Laboral Kutxa", "brand:wikidata": "Q12052386", "brand:wikipedia": "en:Laboral Kutxa", "name": "Laboral Kutxa"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Lake Michigan Credit Union": {"name": "Lake Michigan Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/LakeMichiganCreditUnion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6476906", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Lake Michigan Credit Union", "brand:wikidata": "Q6476906", "brand:wikipedia": "en:Lake Michigan Credit Union", "name": "Lake Michigan Credit Union", "short_name": "LMCU"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Landbank": {"name": "Landbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/landbankofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6483872", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Landbank", "brand:wikidata": "Q6483872", "brand:wikipedia": "en:Land Bank of the Philippines", "name": "Landbank"}, "countryCodes": ["ph"], "terms": ["bangko sa lupa ng pilipinas", "land bank of the philippines", "lbp"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Leeds Building Society": {"name": "Leeds Building Society", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/LeedsBS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6515848", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Leeds Building Society", "brand:wikidata": "Q6515848", "brand:wikipedia": "en:Leeds Building Society", "name": "Leeds Building Society"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Liberbank": {"name": "Liberbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/liberbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2891018", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Liberbank", "brand:wikidata": "Q2891018", "brand:wikipedia": "en:Liberbank", "name": "Liberbank"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Liberty Bank (Connecticut)": {"name": "Liberty Bank (Connecticut)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Liberty/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6541584", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Liberty Bank", "brand:wikidata": "Q6541584", "brand:wikipedia": "en:Liberty Bank", "name": "Liberty Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Lloyds Bank": {"name": "Lloyds Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/lloydsbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1152847", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Lloyds Bank", "brand:wikidata": "Q1152847", "brand:wikipedia": "en:Lloyds Bank", "name": "Lloyds Bank"}, "countryCodes": ["gb", "im"], "terms": ["lloyds", "lloyds tsb"], "matchScore": 2, "suggestion": true}, - "amenity/bank/M&T Bank": {"name": "M&T Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/MandTBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3272257", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "M&T Bank", "brand:wikidata": "Q3272257", "brand:wikipedia": "en:M&T Bank", "name": "M&T Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/MCB": {"name": "MCB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/mcbbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15982510", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "MCB", "brand:wikidata": "Q15982510", "brand:wikipedia": "ur:ایم سی بی بینک لمیٹڈ", "name": "MCB"}, "terms": ["mcb bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/MONETA Money Bank": {"name": "MONETA Money Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/726534904452931588/E4dnojuF_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24282966", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "MONETA Money Bank", "brand:wikidata": "Q24282966", "brand:wikipedia": "cs:Moneta Money Bank", "name": "MONETA Money Bank"}, "countryCodes": ["cz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Macro": {"name": "Macro", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancomacro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2335199", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Macro", "brand:wikidata": "Q2335199", "brand:wikipedia": "en:Banco Macro", "name": "Macro"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Maybank": {"name": "Maybank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Maybank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1364018", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Maybank", "brand:wikidata": "Q1364018", "brand:wikipedia": "en:Maybank", "name": "Maybank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Meezan Bank": {"name": "Meezan Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/MeezanBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6807934", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Meezan Bank", "brand:wikidata": "Q6807934", "brand:wikipedia": "en:Meezan Bank", "name": "Meezan Bank"}, "countryCodes": ["pk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Mercantil": {"name": "Mercantil", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/mercantilbancooficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6818004", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Mercantil", "brand:wikidata": "Q6818004", "brand:wikipedia": "en:Mercantil Servicios Financieros", "name": "Mercantil"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Meridian Credit Union": {"name": "Meridian Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/MeridianCreditUnion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6819303", "amenity": "bank"}, "addTags": {"alt_name": "Meridian", "amenity": "bank", "brand": "Meridian Credit Union", "brand:wikidata": "Q6819303", "brand:wikipedia": "en:Meridian Credit Union", "name": "Meridian Credit Union"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Metro Bank (UK)": {"name": "Metro Bank (UK)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/380904035384141/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6824499", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Metro Bank", "brand:wikidata": "Q6824499", "brand:wikipedia": "en:Metro Bank (United Kingdom)", "name": "Metro Bank"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Metrobank (Philippines)": {"name": "Metrobank (Philippines)", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1140117795809550338/ySSJStq-_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1925799", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Metrobank", "brand:wikidata": "Q1925799", "brand:wikipedia": "en:Metrobank (Philippines)", "name": "Metrobank"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Mibanco": {"name": "Mibanco", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/MibancoOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5558589", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Mibanco", "brand:wikidata": "Q5558589", "name": "Mibanco"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/MidFirst Bank": {"name": "MidFirst Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1234498051462455296/5HyYwET1_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17081131", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "MidFirst Bank", "brand:wikidata": "Q17081131", "brand:wikipedia": "en:MidFirst Bank", "name": "MidFirst Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Millennium Bank": {"name": "Millennium Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/684026097688817664/fg1i7QVc_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4855947", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Millennium Bank", "brand:wikidata": "Q4855947", "brand:wikipedia": "pl:Bank Millennium", "name": "Millennium Bank"}, "countryCodes": ["pl"], "terms": ["bank millennium"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Millennium bcp": {"name": "Millennium bcp", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/millenniumbcp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q118581", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Millennium bcp", "brand:wikidata": "Q118581", "brand:wikipedia": "pt:Banco Comercial Português", "name": "Millennium bcp", "official_name": "Banco Comercial Português", "official_name:en": "Portuguese Commercial Bank", "official_name:es": "Banco Comercial Português"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Mission Federal Credit Union": {"name": "Mission Federal Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/missionfedcu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18345955", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Mission Federal Credit Union", "brand:wikidata": "Q18345955", "brand:wikipedia": "en:Mission Federal Credit Union", "name": "Mission Federal Credit Union"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Mittelbrandenburgische Sparkasse": {"name": "Mittelbrandenburgische Sparkasse", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/mbs.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1940058", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Mittelbrandenburgische Sparkasse", "brand:wikidata": "Q1940058", "brand:wikipedia": "de:Mittelbrandenburgische Sparkasse", "name": "Mittelbrandenburgische Sparkasse"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Monte dei Paschi di Siena": {"name": "Monte dei Paschi di Siena", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bancamps/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q46730", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Monte dei Paschi di Siena", "brand:wikidata": "Q46730", "brand:wikipedia": "en:Banca Monte dei Paschi di Siena", "name": "Monte dei Paschi di Siena"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Montepio": {"name": "Montepio", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1946091", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Montepio", "brand:wikidata": "Q1946091", "brand:wikipedia": "en:Montepio (bank)", "name": "Montepio"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Mountain America Credit Union": {"name": "Mountain America Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/MountainAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6924862", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Mountain America Credit Union", "brand:wikidata": "Q6924862", "brand:wikipedia": "en:Mountain America Credit Union", "name": "Mountain America Credit Union"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/NAB": {"name": "NAB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/NAB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1430985", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "NAB", "brand:wikidata": "Q1430985", "brand:wikipedia": "en:National Australia Bank", "name": "NAB"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/NASA Federal Credit Union": {"name": "NASA Federal Credit Union", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/458951842995503105/UQGjhMmT_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6952409", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "NASA Federal Credit Union", "brand:wikidata": "Q6952409", "brand:wikipedia": "en:NASA Federal Credit Union", "name": "NASA Federal Credit Union"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/NLB": {"name": "NLB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/NLBdd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1481509", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "NLB", "brand:wikidata": "Q1481509", "brand:wikipedia": "en:NLB Group", "name": "NLB"}, "countryCodes": ["si"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/NSB": {"name": "NSB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/NSBSLOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12500189", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "NSB", "brand:wikidata": "Q12500189", "brand:wikipedia": "en:National Savings Bank (Sri Lanka)", "name": "NSB"}, "countryCodes": ["lk"], "terms": ["national savings bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/NatWest": {"name": "NatWest", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/NatWest/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2740021", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "NatWest", "brand:wikidata": "Q2740021", "brand:wikipedia": "en:NatWest", "name": "NatWest"}, "countryCodes": ["gb", "gg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/National Bank": {"name": "National Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/banquenationale/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q634298", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "National Bank", "brand:en": "National Bank", "brand:fr": "Banque Nationale", "brand:wikidata": "Q634298", "brand:wikipedia": "en:National Bank of Canada", "name": "National Bank", "name:en": "National Bank", "name:fr": "Banque Nationale", "official_name": "National Bank of Canada", "official_name:en": "National Bank of Canada", "official_name:fr": "Banque Nationale du Canada"}, "countryCodes": ["ca"], "terms": ["banque nationale", "banque nationale du canada"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Nationwide": {"name": "Nationwide", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/NationwideBuildingSociety/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q846735", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Nationwide", "brand:wikidata": "Q846735", "brand:wikipedia": "en:Nationwide Building Society", "name": "Nationwide"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Navy Federal Credit Union": {"name": "Navy Federal Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/NavyFederal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6982632", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Navy Federal Credit Union", "brand:wikidata": "Q6982632", "brand:wikipedia": "en:Navy Federal Credit Union", "name": "Navy Federal Credit Union"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Nedbank": {"name": "Nedbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Nedbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2751701", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Nedbank", "brand:wikidata": "Q2751701", "brand:wikipedia": "en:Nedbank", "name": "Nedbank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Nordea": {"name": "Nordea", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Nordea/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1123823", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Nordea", "brand:wikidata": "Q1123823", "brand:wikipedia": "en:Nordea", "name": "Nordea"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Novo Banco": {"name": "Novo Banco", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/novobancocultura/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17488861", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Novo Banco", "brand:wikidata": "Q17488861", "brand:wikipedia": "en:Novo Banco", "name": "Novo Banco"}, "countryCodes": ["es", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/OLB": {"name": "OLB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/OLB.Bank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q879591", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "OLB", "brand:wikidata": "Q879591", "brand:wikipedia": "en:Oldenburgische Landesbank", "name": "OLB"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/OTP": {"name": "OTP", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/otpbank.hu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q912778", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "OTP", "brand:wikidata": "Q912778", "brand:wikipedia": "en:OTP Bank", "name": "OTP Bank"}, "terms": ["otp bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Oberbank": {"name": "Oberbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/oberbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2009139", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Oberbank", "brand:wikidata": "Q2009139", "brand:wikipedia": "de:Oberbank", "name": "Oberbank"}, "countryCodes": ["at", "cz", "de", "hu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Occidental de Descuento": {"name": "Occidental de Descuento", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/1086400904717496/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854108", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Occidental de Descuento", "brand:wikidata": "Q4854108", "brand:wikipedia": "en:Banco Occidental de Descuento", "name": "Occidental de Descuento"}, "countryCodes": ["ve"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Oldenburgische Landesbank": {"name": "Oldenburgische Landesbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/OLB.Bank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q879591", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Oldenburgische Landesbank", "brand:wikidata": "Q879591", "brand:wikipedia": "en:Oldenburgische Landesbank", "name": "Oldenburgische Landesbank"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/One Network Bank": {"name": "One Network Bank", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7093019", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "One Network Bank", "brand:wikidata": "Q7093019", "brand:wikipedia": "en:One Network Bank", "name": "One Network Bank"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Oriental": {"name": "Oriental", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/OrientalBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64887002", "amenity": "bank"}, "addTags": {"alt_name": "Oriental Bank", "amenity": "bank", "brand": "Oriental", "brand:wikidata": "Q64887002", "name": "Oriental"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Oriental Bank of Commerce": {"name": "Oriental Bank of Commerce", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/OBCIndOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q367008", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Oriental Bank of Commerce", "brand:wikidata": "Q367008", "brand:wikipedia": "en:Oriental Bank of Commerce", "name": "Oriental Bank of Commerce"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Osuuspankki": {"name": "Osuuspankki", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/OP.fi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4045597", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Osuuspankki", "brand:wikidata": "Q4045597", "brand:wikipedia": "fi:OP (finanssiryhmä)", "name": "Osuuspankki"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/PBZ": {"name": "PBZ", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/privrednabankazagreb/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7246343", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "PBZ", "brand:wikidata": "Q7246343", "brand:wikipedia": "en:Privredna banka Zagreb", "name": "PBZ"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/PKO BP": {"name": "PKO BP", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/PKOBankPolski/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q578832", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "PKO BP", "brand:wikidata": "Q578832", "brand:wikipedia": "pl:Powszechna Kasa Oszczędności Bank Polski", "name": "PKO BP"}, "countryCodes": ["pl"], "terms": ["pko bank polski"], "matchScore": 2, "suggestion": true}, - "amenity/bank/PNB": {"name": "PNB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/PNBph/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1657971", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "PNB", "brand:wikidata": "Q1657971", "brand:wikipedia": "en:Philippine National Bank", "name": "PNB", "official_name": "Philippine National Bank"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/PNC Bank": {"name": "PNC Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/pncbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q38928", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "PNC Bank", "brand:wikidata": "Q38928", "brand:wikipedia": "en:PNC Financial Services", "name": "PNC Bank"}, "countryCodes": ["us"], "terms": ["pnc"], "matchScore": 2, "suggestion": true}, - "amenity/bank/PSBank": {"name": "PSBank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/psbankofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7185203", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "PSBank", "brand:wikidata": "Q7185203", "brand:wikipedia": "en:Philippine Savings Bank", "name": "PSBank"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Panin Bank": {"name": "Panin Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/paninbankfanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12502751", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Panin Bank", "brand:wikidata": "Q12502751", "brand:wikipedia": "id:Panin Bank", "name": "Panin Bank"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Patagonia": {"name": "Patagonia", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoPatagonia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882078", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Patagonia", "brand:wikidata": "Q2882078", "brand:wikipedia": "en:Banco Patagonia", "name": "Patagonia"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Pekao SA": {"name": "Pekao SA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankpekaosa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806642", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Pekao SA", "brand:wikidata": "Q806642", "brand:wikipedia": "pl:Bank Polska Kasa Opieki", "name": "Pekao SA"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/PenFed Credit Union": {"name": "PenFed Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/PenFed/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3374885", "amenity": "bank"}, "addTags": {"alt_name": "Pentagon Federal Credit Union", "amenity": "bank", "brand": "PenFed Credit Union", "brand:wikidata": "Q3374885", "brand:wikipedia": "en:Pentagon Federal Credit Union", "name": "PenFed Credit Union", "short_name": "PenFed"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/People's United Bank": {"name": "People's United Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/peoplesunited/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7165802", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "People's United Bank", "brand:wikidata": "Q7165802", "brand:wikipedia": "en:People's United Financial", "name": "People's United Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Peoples Bank (Ohio)": {"name": "Peoples Bank (Ohio)", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1196505714942005250/zxK84aT2_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65716607", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Peoples Bank", "brand:wikidata": "Q65716607", "name": "Peoples Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Peoples Bank (Washington)": {"name": "Peoples Bank (Washington)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/peoplesbankwa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7166050", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Peoples Bank", "brand:wikidata": "Q7166050", "brand:wikipedia": "en:Peoples Bank", "name": "Peoples Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Permanent TSB": {"name": "Permanent TSB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/557742141060618/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3154461", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Permanent TSB", "brand:wikidata": "Q3154461", "brand:wikipedia": "en:Permanent TSB", "name": "Permanent TSB"}, "countryCodes": ["ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Piraeus Bank": {"name": "Piraeus Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/piraeusbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3312", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Piraeus Bank", "brand:wikidata": "Q3312", "brand:wikipedia": "en:Piraeus Bank", "name": "Piraeus Bank"}, "countryCodes": ["bg", "cy", "gr", "ro", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Popular": {"name": "Popular", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/PopularVI/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7229656", "amenity": "bank"}, "addTags": {"alt_name": "Banco Popular", "alt_name:en": "Popular Bank", "alt_name:es": "Banco Popular", "amenity": "bank", "brand": "Popular", "brand:en": "Popular", "brand:es": "Popular", "brand:wikidata": "Q7229656", "brand:wikipedia": "en:Popular, Inc.", "name": "Popular", "name:en": "Popular", "name:es": "Popular", "official_name": "Banco Popular de Puerto Rico", "official_name:es": "Banco Popular de Puerto Rico", "short_name": "BPPR"}, "countryCodes": ["us"], "terms": ["popular bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Postbank (Bulgaria)": {"name": "Postbank (Bulgaria)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/PostbankBG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7234083", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Postbank", "brand:wikidata": "Q7234083", "brand:wikipedia": "en:Bulgarian Postbank", "name": "Postbank"}, "countryCodes": ["bg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Postbank (Germany)": {"name": "Postbank (Germany)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/postbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q708835", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Postbank", "brand:wikidata": "Q708835", "brand:wikipedia": "en:Deutsche Postbank", "name": "Postbank"}, "countryCodes": ["de"], "terms": ["postbank finanzcenter"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Prima banka": {"name": "Prima banka", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/primabankaslovensko/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13538661", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Prima banka", "brand:wikidata": "Q13538661", "brand:wikipedia": "sk:Prima banka Slovensko", "name": "Prima banka"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Privatbanka": {"name": "Privatbanka", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12774628", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Privatbanka", "brand:wikidata": "Q12774628", "brand:wikipedia": "sk:Privatbanka", "name": "Privatbanka"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Provincial": {"name": "Provincial", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BBVAProvincial.Venezuela/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4835087", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Provincial", "brand:wikidata": "Q4835087", "brand:wikipedia": "es:BBVA Provincial", "name": "Provincial"}, "countryCodes": ["ve"], "terms": ["bbva provincial"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Prvá stavebná sporiteľňa": {"name": "Prvá stavebná sporiteľňa", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/riesenieprebyvanie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q29054618", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Prvá stavebná sporiteľňa", "brand:wikidata": "Q29054618", "brand:wikipedia": "sk:Prvá stavebná sporiteľňa", "name": "Prvá stavebná sporiteľňa"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Public Bank (Malaysia)": {"name": "Public Bank (Malaysia)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/277915305558566/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3046561", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Public Bank", "brand:wikidata": "Q3046561", "brand:wikipedia": "en:Public Bank Berhad", "name": "Public Bank"}, "terms": ["public bank berhad"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Punjab National Bank": {"name": "Punjab National Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/pnbindia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2743499", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Punjab National Bank", "brand:wikidata": "Q2743499", "brand:wikipedia": "en:Punjab National Bank", "name": "Punjab National Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/RBC": {"name": "RBC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/rbc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q735261", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "RBC", "brand:wikidata": "Q735261", "brand:wikipedia": "en:Royal Bank of Canada", "name": "RBC", "official_name": "Royal Bank of Canada"}, "terms": ["rbc financial group", "rbc royal bank", "royal bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/RBS": {"name": "RBS", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/royalbankofscotland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q160126", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "RBS", "brand:wikidata": "Q160126", "brand:wikipedia": "en:Royal Bank of Scotland", "name": "RBS", "official_name": "Royal Bank of Scotland"}, "countryCodes": ["gb", "je", "ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/RCBC": {"name": "RCBC", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/RCBCGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7339070", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "RCBC", "brand:wikidata": "Q7339070", "brand:wikipedia": "en:Rizal Commercial Banking Corporation", "name": "RCBC", "official_name": "Rizal Commercial Banking Corporation"}, "countryCodes": ["ph"], "terms": ["rcbc savings bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Rabobank": {"name": "Rabobank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/rabobank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q252004", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Rabobank", "brand:wikidata": "Q252004", "brand:wikipedia": "en:Rabobank", "name": "Rabobank"}, "countryCodes": ["au", "id", "nl", "nz", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Raiffeisen Polbank": {"name": "Raiffeisen Polbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BNPParibasBankPolska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9303218", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Raiffeisen Polbank", "brand:wikidata": "Q9303218", "brand:wikipedia": "pl:Raiffeisen Bank Polska", "name": "Raiffeisen Polbank"}, "countryCodes": ["de", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Raiffeisenbank (Albania)": {"name": "Raiffeisenbank (Albania)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/raiffeisenbankshqiperi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2127541", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Raiffeisenbank", "brand:wikidata": "Q2127541", "brand:wikipedia": "sq:Raiffeisen Bank Shqipëri", "name": "Raiffeisenbank"}, "countryCodes": ["al"], "terms": ["raiffeisen"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Raiffeisenbank (Bulgaria)": {"name": "Raiffeisenbank (Bulgaria)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/RBB.bg/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7283808", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Raiffeisenbank", "brand:wikidata": "Q7283808", "brand:wikipedia": "bg:Райфайзенбанк (България)", "name": "Raiffeisenbank"}, "countryCodes": ["bg"], "terms": ["raiffeisen"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Raiffeisenbank (Czech Republic)": {"name": "Raiffeisenbank (Czech Republic)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/RaiffeisenbankCZ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24282825", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Raiffeisenbank", "brand:wikidata": "Q24282825", "brand:wikipedia": "cs:Raiffeisenbank", "name": "Raiffeisenbank"}, "countryCodes": ["cz"], "terms": ["raiffeisen", "raiffeisenkasse"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Raiffeisenbank (Romania)": {"name": "Raiffeisenbank (Romania)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/RaiffeisenBankRomania/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7283806", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Raiffeisenbank", "brand:wikidata": "Q7283806", "brand:wikipedia": "ro:Raiffeisen Bank România", "name": "Raiffeisenbank"}, "countryCodes": ["ro"], "terms": ["raiffeisen"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Raiffeisenbank (Serbia)": {"name": "Raiffeisenbank (Serbia)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/RaiffeisenSrbija/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7283807", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Raiffeisenbank", "brand:wikidata": "Q7283807", "brand:wikipedia": "en:Raiffeisen Bank (Serbia)", "name": "Raiffeisenbank"}, "countryCodes": ["rs"], "terms": ["raiffeisen"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Raiffeisen (Luxembourg)": {"name": "Raiffeisen (Luxembourg)", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBanque%20Raiffeisen%20Luxembourg%20Logo%20on%20Social%20Media.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11220162", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Raiffeisen", "brand:wikidata": "Q11220162", "brand:wikipedia": "en:Banque Raiffeisen", "name": "Raiffeisen"}, "countryCodes": ["lu"], "terms": ["raiffeisen"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Regions Bank": {"name": "Regions Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/RegionsBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q917131", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Regions Bank", "brand:wikidata": "Q917131", "brand:wikipedia": "en:Regions Financial Corporation", "name": "Regions Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Republic Bank (Eastern Caribbean)": {"name": "Republic Bank (Eastern Caribbean)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/republicbanktnt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7314386", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Republic Bank", "brand:wikidata": "Q7314386", "brand:wikipedia": "en:Republic Bank", "name": "Republic Bank"}, "countryCodes": ["bb", "gd", "gy", "tt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Republic Bank (USA)": {"name": "Republic Bank (USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/republicbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7314387", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Republic Bank", "brand:wikidata": "Q7314387", "brand:wikipedia": "en:Republic Bank & Trust Company", "name": "Republic Bank", "official_name": "Republic Bank & Trust Company"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/República": {"name": "República", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BROU.uy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4077337", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "República", "brand:wikidata": "Q4077337", "brand:wikipedia": "en:Banco de la República Oriental del Uruguay", "name": "República"}, "countryCodes": ["uy"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/S-Pankki": {"name": "S-Pankki", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/kauppapankki/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7387053", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "S-Pankki", "brand:wikidata": "Q7387053", "brand:wikipedia": "fi:S-Pankki", "name": "S-Pankki"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/SC제일은행": {"name": "SC제일은행", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/StandardCharteredKR/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q625531", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "SC제일은행", "brand:ko": "SC제일은행", "brand:wikidata": "Q625531", "brand:wikipedia": "en:Standard Chartered Korea", "name": "SC제일은행", "name:ko": "SC제일은행"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/SEB": {"name": "SEB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/sebsverige/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q975655", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "SEB", "brand:wikidata": "Q975655", "brand:wikipedia": "en:SEB Group", "name": "SEB"}, "countryCodes": ["de", "ee", "lt", "lv", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/SMBC信託銀行": {"name": "SMBC信託銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/smbc.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17218805", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "SMBC信託銀行", "brand:en": "SMBC Trust Bank", "brand:wikidata": "Q17218805", "brand:wikipedia": "jp:SMBC信託銀行", "name": "SMBC信託銀行", "name:en": " SMBC Trust Bank "}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/SNS Bank": {"name": "SNS Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/devolksbanknl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1857899", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "SNS Bank", "brand:wikidata": "Q1857899", "brand:wikipedia": "en:De Volksbank", "name": "SNS Bank"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Sacombank": {"name": "Sacombank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SacombankHome/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6123772", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Sacombank", "brand:wikidata": "Q6123772", "brand:wikipedia": "vi:Ngân hàng thương mại cổ phần Sài Gòn Thương Tín", "name": "Sacombank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Sampath Bank": {"name": "Sampath Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Sampathbankplc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7410095", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Sampath Bank", "brand:wikidata": "Q7410095", "brand:wikipedia": "en:Sampath Bank", "name": "Sampath Bank"}, "countryCodes": ["lk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/San Diego County Credit Union": {"name": "San Diego County Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SDCCU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7413628", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "San Diego County Credit Union", "brand:wikidata": "Q7413628", "brand:wikipedia": "en:San Diego County Credit Union", "name": "San Diego County Credit Union", "short_name": "SDCCU"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Santander": {"name": "Santander", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SantanderBankUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5835668", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Santander", "brand:wikidata": "Q5835668", "brand:wikipedia": "en:Santander Bank", "name": "Santander"}, "terms": ["santander consumer bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Santander Río": {"name": "Santander Río", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Santander.Ar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3385268", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Santander Río", "brand:wikidata": "Q3385268", "brand:wikipedia": "es:Banco Santander (Argentina)", "name": "Santander Río"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Santander Totta": {"name": "Santander Totta", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/santanderpt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4854116", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Santander Totta", "brand:wikidata": "Q4854116", "brand:wikipedia": "pt:Banco Santander Portugal", "name": "Santander Totta"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Sberbank": {"name": "Sberbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/sberbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q205012", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Sberbank", "brand:wikidata": "Q205012", "brand:wikipedia": "en:Sberbank of Russia", "name": "Sberbank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Scotiabank (Québec)": {"name": "Scotiabank (Québec)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/scotiabank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q451476", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Banque Scotia", "brand:wikidata": "Q451476", "brand:wikipedia": "fr:Banque Scotia", "name": "Banque Scotia"}, "countryCodes": ["ca"], "terms": ["scotia"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Scotiabank (non-Québec)": {"name": "Scotiabank (non-Québec)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/scotiabank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q451476", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Scotiabank", "brand:wikidata": "Q451476", "brand:wikipedia": "en:Scotiabank", "name": "Scotiabank"}, "terms": ["scotia"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Security Bank": {"name": "Security Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SecurityBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7444945", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Security Bank", "brand:wikidata": "Q7444945", "brand:wikipedia": "en:Security Bank", "name": "Security Bank"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Security Service Federal Credit Union": {"name": "Security Service Federal Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ssfcu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7444993", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Security Service Federal Credit Union", "brand:wikidata": "Q7444993", "brand:wikipedia": "en:Security Service Federal Credit Union", "name": "Security Service Federal Credit Union", "short_name": "SSFCU"}, "countryCodes": ["us"], "terms": ["security service fcu"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Service Credit Union": {"name": "Service Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ServiceCreditUnion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7455675", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Service Credit Union", "brand:wikidata": "Q7455675", "brand:wikipedia": "en:Service Credit Union", "name": "Service Credit Union"}, "countryCodes": ["de", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Servus Credit Union": {"name": "Servus Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ServusCU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2274396", "amenity": "bank"}, "addTags": {"alt_name": "Servus", "amenity": "bank", "brand": "Servus Credit Union", "brand:wikidata": "Q2274396", "brand:wikipedia": "en:Servus Credit Union", "name": "Servus Credit Union"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Seylan Bank": {"name": "Seylan Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SeylanBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3532083", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Seylan Bank", "brand:wikidata": "Q3532083", "brand:wikipedia": "en:Seylan Bank", "name": "Seylan Bank"}, "countryCodes": ["lk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Siam Commercial Bank": {"name": "Siam Commercial Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/scb.thailand/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2038986", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Siam Commercial Bank", "brand:wikidata": "Q2038986", "brand:wikipedia": "en:Siam Commercial Bank", "name": "Siam Commercial Bank"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Sicoob": {"name": "Sicoob", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/sicooboficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28679754", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Sicoob", "brand:wikidata": "Q28679754", "brand:wikipedia": "pt:Sistema de Cooperativas de Crédito do Brasil", "name": "Sicoob"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Sicredi": {"name": "Sicredi", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Sicredi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3483060", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Sicredi", "brand:wikidata": "Q3483060", "brand:wikipedia": "pt:Sistema de Crédito Cooperativo", "name": "Sicredi"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Simmons Bank": {"name": "Simmons Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/simmonsbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28402389", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Simmons Bank", "brand:wikidata": "Q28402389", "brand:wikipedia": "en:Simmons Bank", "name": "Simmons Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Skipton Building Society": {"name": "Skipton Building Society", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/skiptonbs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16931747", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Skipton Building Society", "brand:wikidata": "Q16931747", "brand:wikipedia": "en:Skipton Building Society", "name": "Skipton Building Society"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Slovenská sporiteľňa": {"name": "Slovenská sporiteľňa", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SlovenskaSporitelna/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7541907", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Slovenská sporiteľňa", "brand:wikidata": "Q7541907", "brand:wikipedia": "en:Slovenská sporiteľňa", "name": "Slovenská sporiteľňa"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Société Générale": {"name": "Société Générale", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/societegenerale/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q270363", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Société Générale", "brand:wikidata": "Q270363", "brand:wikipedia": "en:Société Générale", "name": "Société Générale"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Société Marseillaise de Crédit": {"name": "Société Marseillaise de Crédit", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/societemarseillaisedecredit/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3488479", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Société Marseillaise de Crédit", "brand:wikidata": "Q3488479", "brand:wikipedia": "fr:Société marseillaise de crédit", "name": "Société Marseillaise de Crédit"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Société générale Côte d’Ivoire": {"name": "Société générale Côte d’Ivoire", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/societegenerale.cotedivoire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3488360", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Société générale Côte d’Ivoire", "brand:wikidata": "Q3488360", "brand:wikipedia": "fr:Société générale Côte d'Ivoire", "name": "Société générale Côte d’Ivoire", "name:fr": "Société générale Côte d’Ivoire", "old_name": "SGBCI"}, "countryCodes": ["ci"], "terms": ["agence sgbci", "sgbci"], "matchScore": 2, "suggestion": true}, - "amenity/bank/South Indian Bank": {"name": "South Indian Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/thesouthindianbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2044973", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "South Indian Bank", "brand:wikidata": "Q2044973", "brand:wikipedia": "en:South Indian Bank", "name": "South Indian Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/South State Bank": {"name": "South State Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SouthStateBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55633597", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "South State Bank", "brand:wikidata": "Q55633597", "brand:wikipedia": "en:South State Bank", "name": "South State Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Southern Bank": {"name": "Southern Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SouthernBank.Since1901/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7569660", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Southern Bank", "brand:wikidata": "Q7569660", "brand:wikipedia": "en:Southern Bank", "name": "Southern Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Sparda-Bank": {"name": "Sparda-Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SpardaVerband/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2307136", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Sparda-Bank", "brand:wikidata": "Q2307136", "brand:wikipedia": "en:Sparda-Bank", "name": "Sparda-Bank"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Stanbic Bank": {"name": "Stanbic Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/standardbankgrp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7597999", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Stanbic Bank", "brand:wikidata": "Q7597999", "brand:wikipedia": "en:Stanbic Bank", "name": "Stanbic Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Standard Bank": {"name": "Standard Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/standardbankgrp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1576610", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Standard Bank", "brand:wikidata": "Q1576610", "brand:wikipedia": "en:Standard Bank", "name": "Standard Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Standard Chartered": {"name": "Standard Chartered", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/StandardChartered/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q548278", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Standard Chartered", "brand:wikidata": "Q548278", "brand:wikipedia": "en:Standard Chartered", "name": "Standard Chartered"}, "terms": ["standard chartered bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/State Bank of India": {"name": "State Bank of India", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/StateBankOfIndia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1340361", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "State Bank of India", "brand:wikidata": "Q1340361", "brand:wikipedia": "en:State Bank of India", "name": "State Bank of India"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/State Employees Credit Union": {"name": "State Employees Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/stateemployeescreditunion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7603196", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "State Employees Credit Union", "brand:wikidata": "Q7603196", "brand:wikipedia": "en:State Employees Credit Union", "name": "State Employees Credit Union", "short_name": "SECU"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Summit Bank": {"name": "Summit Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SummitBankPK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7637775", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Summit Bank", "brand:wikidata": "Q7637775", "brand:wikipedia": "en:Summit Bank", "name": "Summit Bank"}, "countryCodes": ["pk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/SunTrust": {"name": "SunTrust", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/suntrust/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q181507", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "SunTrust", "brand:wikidata": "Q181507", "brand:wikipedia": "en:SunTrust Banks", "name": "SunTrust"}, "countryCodes": ["us"], "terms": ["suntrust bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Suncorp": {"name": "Suncorp", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/suncorpAUNZ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24189567", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Suncorp", "brand:wikidata": "Q24189567", "brand:wikipedia": "en:Suncorp Bank", "name": "Suncorp"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Supervielle": {"name": "Supervielle", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BancoSupervielle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5718035", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Supervielle", "brand:wikidata": "Q5718035", "brand:wikipedia": "es:Banco Supervielle", "name": "Supervielle"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Swedbank": {"name": "Swedbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/swedbanksverige/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1145493", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Swedbank", "brand:wikidata": "Q1145493", "brand:wikipedia": "en:Swedbank", "name": "Swedbank"}, "countryCodes": ["ee", "lt", "lv", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Syndicate Bank": {"name": "Syndicate Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/syndicatebank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2004088", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Syndicate Bank", "brand:wikidata": "Q2004088", "brand:wikipedia": "en:Syndicate Bank", "name": "Syndicate Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Synovus": {"name": "Synovus", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Synovus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3508889", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Synovus", "brand:wikidata": "Q3508889", "brand:wikipedia": "en:Synovus", "name": "Synovus"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/TCF Bank": {"name": "TCF Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/TCFbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7669687", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "TCF Bank", "brand:wikidata": "Q7669687", "brand:wikipedia": "en:TCF Bank", "name": "TCF Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/TD Bank": {"name": "TD Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/TDBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7669891", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "TD Bank", "brand:wikidata": "Q7669891", "brand:wikipedia": "en:TD Bank, N.A.", "name": "TD Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/TD Canada Trust": {"name": "TD Canada Trust", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/TDBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1080670", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "TD Canada Trust", "brand:wikidata": "Q1080670", "brand:wikipedia": "en:TD Canada Trust", "name": "TD Canada Trust"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/TEB": {"name": "TEB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/teb/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7862447", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "TEB", "brand:wikidata": "Q7862447", "brand:wikipedia": "en:Türk Ekonomi Bankası", "name": "TEB"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/TSB": {"name": "TSB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/TSBbankUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7671560", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "TSB", "brand:wikidata": "Q7671560", "brand:wikipedia": "en:TSB Bank (United Kingdom)", "name": "TSB"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Takarékszövetkezet": {"name": "Takarékszövetkezet", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/takarekcsoport/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30324674", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Takarékszövetkezet", "brand:wikidata": "Q30324674", "brand:wikipedia": "en:TakarékBank", "name": "Takarékszövetkezet"}, "countryCodes": ["hu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Tangerine": {"name": "Tangerine", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/TangerineBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15238797", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Tangerine", "brand:wikidata": "Q15238797", "brand:wikipedia": "en:Tangerine Bank", "name": "Tangerine"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Targobank": {"name": "Targobank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/targobank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1455437", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Targobank", "brand:wikidata": "Q1455437", "brand:wikipedia": "en:Targobank", "name": "Targobank"}, "countryCodes": ["de", "es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Tatra banka": {"name": "Tatra banka", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/tatrabanka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1718069", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Tatra banka", "brand:wikidata": "Q1718069", "brand:wikipedia": "en:Tatra banka", "name": "Tatra banka"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Taytay sa Kauswagan": {"name": "Taytay sa Kauswagan", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/tskiofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72361196", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Taytay sa Kauswagan", "brand:wikidata": "Q72361196", "name": "Taytay sa Kauswagan"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/The Co-operative Bank": {"name": "The Co-operative Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/thecooperativebank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3520318", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "The Co-operative Bank", "brand:wikidata": "Q3520318", "brand:wikipedia": "en:The Co-operative Bank", "name": "The Co-operative Bank"}, "countryCodes": ["gb"], "terms": ["co-op bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Türkiye İş Bankası": {"name": "Türkiye İş Bankası", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/isbankasi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q909613", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Türkiye İş Bankası", "brand:wikidata": "Q909613", "brand:wikipedia": "en:Türkiye İş Bankası", "name": "Türkiye İş Bankası"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/U.S. Bank": {"name": "U.S. Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/usbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q739084", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "U.S. Bank", "brand:wikidata": "Q739084", "brand:wikipedia": "en:U.S. Bancorp", "name": "U.S. Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/UBA": {"name": "UBA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ubagroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q513457", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UBA", "brand:wikidata": "Q513457", "brand:wikipedia": "en:United Bank for Africa", "name": "UBA", "official_name": "United Bank for Africa"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/UBI Banca": {"name": "UBI Banca", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UBIBanca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1476162", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UBI Banca", "brand:wikidata": "Q1476162", "brand:wikipedia": "en:UBI Banca", "name": "UBI Banca"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/UBL": {"name": "UBL", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UBLUnitedBankLtd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7887504", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UBL", "brand:en": "United Bank Limited Pakistan", "brand:wikidata": "Q7887504", "brand:wikipedia": "ur:یونائیٹڈ بینک (پاکستان)", "name": "UBL", "name:en": "United Bank Limited Pakistan"}, "countryCodes": ["pk"], "terms": ["ubl bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/UBS": {"name": "UBS", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UBSglobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q193199", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UBS", "brand:wikidata": "Q193199", "brand:wikipedia": "en:UBS", "name": "UBS"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/UCO Bank": {"name": "UCO Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/official.ucobank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2005310", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UCO Bank", "brand:wikidata": "Q2005310", "brand:wikipedia": "en:UCO Bank", "name": "UCO Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/UCPB": {"name": "UCPB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UCPB.Connect/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7887615", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UCPB", "brand:wikidata": "Q7887615", "brand:wikipedia": "en:United Coconut Planters Bank", "name": "UCPB"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/UIB": {"name": "UIB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/societegenerale.UIB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3550305", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UIB", "brand:wikidata": "Q3550305", "brand:wikipedia": "ar:الاتحاد الدولي للبنوك", "name": "UIB", "official_name": "Union internationale de banques"}, "countryCodes": ["tn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/UMB Bank": {"name": "UMB Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/504613260851564544/6xEseH7h_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7865088", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UMB Bank", "brand:wikidata": "Q7865088", "brand:wikipedia": "en:UMB Financial Corporation", "name": "UMB Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/UNI": {"name": "UNI", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/unicooperation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2933348", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UNI", "brand:wikidata": "Q2933348", "brand:wikipedia": "fr:UNI Coopération financière", "name": "UNI", "official_name": "UNI Coopération financière"}, "countryCodes": ["ca"], "terms": ["caisse populaire", "caisse populaire acadienne"], "matchScore": 2, "suggestion": true}, - "amenity/bank/UOB": {"name": "UOB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/uob.sg/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2064074", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UOB", "brand:wikidata": "Q2064074", "brand:wikipedia": "en:United Overseas Bank", "name": "UOB"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/USAA": {"name": "USAA", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/USAA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7865722", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "USAA", "brand:wikidata": "Q7865722", "brand:wikipedia": "en:USAA", "name": "USAA", "official_name": "United Services Automobile Association"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Ulster Bank": {"name": "Ulster Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UlsterBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2613366", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Ulster Bank", "brand:wikidata": "Q2613366", "brand:wikipedia": "en:Ulster Bank", "name": "Ulster Bank"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Umpqua Bank": {"name": "Umpqua Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/umpquabank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7881772", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Umpqua Bank", "brand:wikidata": "Q7881772", "brand:wikipedia": "en:Umpqua Holdings Corporation", "name": "Umpqua Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/UniCredit Bank": {"name": "UniCredit Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/938454142338596864/uYxN76cQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q45568", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UniCredit Bank", "brand:wikidata": "Q45568", "brand:wikipedia": "en:UniCredit", "name": "UniCredit Bank"}, "terms": ["unicredit", "unicredit banca"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Unicaja Banco": {"name": "Unicaja Banco", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/unicajabanco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2543704", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Unicaja Banco", "brand:wikidata": "Q2543704", "brand:wikipedia": "en:Unicaja", "name": "Unicaja Banco", "short_name": "Unicaja"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Union Bank of India": {"name": "Union Bank of India", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UnionBankOfIndia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2004078", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Union Bank of India", "brand:wikidata": "Q2004078", "brand:wikipedia": "en:Union Bank of India", "name": "Union Bank of India"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Union Bank (USA)": {"name": "Union Bank (USA)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/unionbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1442804", "amenity": "bank"}, "addTags": {"alt_name": "UnionBank", "amenity": "bank", "brand": "Union Bank", "brand:wikidata": "Q1442804", "brand:wikipedia": "en:MUFG Union Bank", "name": "Union Bank"}, "countryCodes": ["us"], "terms": ["mufg union bank", "union bank of california"], "matchScore": 2, "suggestion": true}, - "amenity/bank/UnionBank (Philippines)": {"name": "UnionBank (Philippines)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/unionbankph/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7885403", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "UnionBank", "brand:wikidata": "Q7885403", "brand:wikipedia": "en:Union Bank of the Philippines", "name": "UnionBank"}, "countryCodes": ["ph"], "terms": ["union bank of the philippines"], "matchScore": 2, "suggestion": true}, - "amenity/bank/United Bank (Connecticut)": {"name": "United Bank (Connecticut)", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUnited%20Bank%20(Connecticut)%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64825157", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "United Bank", "brand:wikidata": "Q64825157", "name": "United Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/United Bank (West Virginia)": {"name": "United Bank (West Virginia)", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1247866561601429507/sKacHdpm_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16920636", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "United Bank", "brand:wikidata": "Q16920636", "brand:wikipedia": "en:United Bank (West Virginia)", "name": "United Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/United Community Bank": {"name": "United Community Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/unitedcommunitybank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7887635", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "United Community Bank", "brand:wikidata": "Q7887635", "brand:wikipedia": "en:United Community Bank", "name": "United Community Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Vakıfbank": {"name": "Vakıfbank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/vakifbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1148521", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Vakıfbank", "brand:wikidata": "Q1148521", "brand:wikipedia": "en:VakıfBank", "name": "Vakıfbank"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Vancity": {"name": "Vancity", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Vancity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7914085", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Vancity", "brand:wikidata": "Q7914085", "brand:wikipedia": "en:Vancity", "name": "Vancity", "official_name": "Vancouver City Savings Credit Union"}, "countryCodes": ["ca"], "terms": ["vancouver city savings"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Veneto Banca": {"name": "Veneto Banca", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3127221", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Veneto Banca", "brand:wikidata": "Q3127221", "brand:wikipedia": "en:Veneto Banca", "name": "Veneto Banca"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Vietcombank": {"name": "Vietcombank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ilovevcb/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6122995", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Vietcombank", "brand:wikidata": "Q6122995", "brand:wikipedia": "en:Vietcombank", "name": "Vietcombank"}, "countryCodes": ["vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/VietinBank": {"name": "VietinBank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/282125983/logo_Vietinbank_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7928459", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "VietinBank", "brand:wikidata": "Q7928459", "brand:wikipedia": "en:Vietinbank", "name": "VietinBank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Vijaya Bank": {"name": "Vijaya Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Vijayabank.in/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2003171", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Vijaya Bank", "brand:wikidata": "Q2003171", "brand:wikipedia": "en:Vijaya Bank", "name": "Vijaya Bank"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Virgin Money": {"name": "Virgin Money", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/VirginMoneyUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2527746", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Virgin Money", "brand:wikidata": "Q2527746", "brand:wikipedia": "en:Virgin Money UK", "name": "Virgin Money"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Volksbank Köln Bonn eG": {"name": "Volksbank Köln Bonn eG", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/volksbankkoelnbonn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q41680844", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Volksbank Köln Bonn eG", "brand:wikidata": "Q41680844", "brand:wikipedia": "de:Volksbank Köln Bonn", "name": "Volksbank Köln Bonn eG"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/VÚB": {"name": "VÚB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/vub.banka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12778981", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "VÚB", "brand:wikidata": "Q12778981", "brand:wikipedia": "en:Všeobecná úverová banka", "name": "VÚB"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Washington Federal": {"name": "Washington Federal", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/wafdbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7971859", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Washington Federal", "brand:wikidata": "Q7971859", "brand:wikipedia": "en:Washington Federal", "name": "Washington Federal"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Webster Bank": {"name": "Webster Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/websterbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7978891", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Webster Bank", "brand:wikidata": "Q7978891", "brand:wikipedia": "en:Webster Bank", "name": "Webster Bank"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Wells Fargo": {"name": "Wells Fargo", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/wellsfargo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q744149", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Wells Fargo", "brand:wikidata": "Q744149", "brand:wikipedia": "en:Wells Fargo", "name": "Wells Fargo"}, "countryCodes": ["us"], "terms": ["wells fargo bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/WesBanco": {"name": "WesBanco", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/WesBanco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7983629", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "WesBanco", "brand:wikidata": "Q7983629", "brand:wikipedia": "en:WesBanco", "name": "WesBanco"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Western Union": {"name": "Western Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/WesternUnion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q861042", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Western Union", "brand:wikidata": "Q861042", "brand:wikipedia": "en:Western Union", "name": "Western Union"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Westpac": {"name": "Westpac", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Westpac/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2031726", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Westpac", "brand:wikidata": "Q2031726", "brand:wikipedia": "en:Westpac", "name": "Westpac"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Wings Financial Credit Union": {"name": "Wings Financial Credit Union", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/WingsFinancial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8025267", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Wings Financial Credit Union", "brand:wikidata": "Q8025267", "brand:wikipedia": "en:Wings Financial Credit Union", "name": "Wings Financial Credit Union"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Yapı Kredi": {"name": "Yapı Kredi", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/YapiKrediAZ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8049138", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Yapı Kredi", "brand:wikidata": "Q8049138", "brand:wikipedia": "en:Yapı ve Kredi Bankası", "name": "Yapı Kredi"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Yorkshire Bank": {"name": "Yorkshire Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/yorkshirebank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8055678", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Yorkshire Bank", "brand:wikidata": "Q8055678", "brand:wikipedia": "en:Yorkshire Bank", "name": "Yorkshire Bank"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Yorkshire Building Society": {"name": "Yorkshire Building Society", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/yorkshirebuildingsociety/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12073381", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Yorkshire Building Society", "brand:wikidata": "Q12073381", "brand:wikipedia": "en:Yorkshire Building Society", "name": "Yorkshire Building Society"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Zagrebačka banka": {"name": "Zagrebačka banka", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/512220346951299072/bHCa2IWn_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q140381", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Zagrebačka banka", "brand:wikidata": "Q140381", "brand:wikipedia": "en:Zagrebačka banka", "name": "Zagrebačka banka"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Zenith Bank": {"name": "Zenith Bank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Zenithbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5978240", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Zenith Bank", "brand:wikidata": "Q5978240", "brand:wikipedia": "en:Zenith Bank", "name": "Zenith Bank"}, "countryCodes": ["gb", "gh", "gm", "ng", "sl", "za"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Zions Bank": {"name": "Zions Bank", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/714566769550225408/Xem9Ei7E_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8072576", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Zions Bank", "brand:wikidata": "Q8072576", "name": "Zions Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Ziraat Bankası": {"name": "Ziraat Bankası", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ziraatbankasi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q696003", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Ziraat Bankası", "brand:wikidata": "Q696003", "brand:wikipedia": "en:Ziraat Bankası", "name": "Ziraat Bankası"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/mBank": {"name": "mBank", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/mBank.Polska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1160928", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "mBank", "brand:wikidata": "Q1160928", "brand:wikipedia": "en:MBank", "name": "mBank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/st.george": {"name": "st.george", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/stgeorgebankaus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1606050", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "st.george", "brand:wikidata": "Q1606050", "brand:wikipedia": "en:St.George Bank", "name": "st.george"}, "countryCodes": ["au"], "terms": ["st.george bank"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Ålandsbanken": {"name": "Ålandsbanken", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/alandsbankenaland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4349236", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Ålandsbanken", "brand:wikidata": "Q4349236", "brand:wikipedia": "sv:Ålandsbanken", "name": "Ålandsbanken"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ČSOB": {"name": "ČSOB", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/csob/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q340135", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ČSOB", "brand:wikidata": "Q340135", "brand:wikipedia": "en:Československá obchodní banka", "name": "ČSOB"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Česká spořitelna": {"name": "Česká spořitelna", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ceskasporitelna/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q341100", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Česká spořitelna", "brand:wikidata": "Q341100", "brand:wikipedia": "en:Česká spořitelna", "name": "Česká spořitelna"}, "countryCodes": ["cz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/İş Bankası": {"name": "İş Bankası", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/isbankasi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q909613", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "İş Bankası", "brand:wikidata": "Q909613", "brand:wikipedia": "en:Türkiye İş Bankası", "name": "İş Bankası"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Εθνική Τράπεζα": {"name": "Εθνική Τράπεζα", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ibanknbg/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1816028", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Εθνική Τράπεζα", "brand:el": "Εθνική Τράπεζα", "brand:en": "National Bank of Greece", "brand:wikidata": "Q1816028", "brand:wikipedia": "en:National Bank of Greece", "name": "Εθνική Τράπεζα", "name:el": "Εθνική Τράπεζα", "name:en": "National Bank of Greece"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Τράπεζα Πειραιώς": {"name": "Τράπεζα Πειραιώς", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/piraeusbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3312", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Τράπεζα Πειραιώς", "brand:el": "Τράπεζα Πειραιώς", "brand:en": "Piraeus Bank", "brand:wikidata": "Q3312", "brand:wikipedia": "en:Piraeus Bank", "name": "Τράπεζα Πειραιώς", "name:el": "Τράπεζα Πειραιώς", "name:en": "Piraeus Bank", "short_name": "Πειραιώς", "short_name:el": "Πειραιώς", "short_name:en": "Piraeus"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/А-Банк": {"name": "А-Банк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/abank.dp.ua/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28705400", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "А-Банк", "brand:wikidata": "Q28705400", "brand:wikipedia": "uk:А-Банк", "name": "А-Банк"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Авангард": {"name": "Авангард", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankavangard/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62122617", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Авангард", "brand:wikidata": "Q62122617", "name": "Авангард"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Альфа-Банк (Россия)": {"name": "Альфа-Банк (Россия)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/alfabank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1377835", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Альфа-Банк", "brand:en": "Alfa-Bank", "brand:ru": "Альфа-Банк", "brand:wikidata": "Q1377835", "brand:wikipedia": "ru:Альфа-банк", "name": "Альфа-Банк", "name:en": "Alfa-Bank", "name:ru": "Альфа-Банк"}, "countryCodes": ["by", "kz", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Альфа-Банк (Украина)": {"name": "Альфа-Банк (Украина)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AlfaBankUkraine/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16691757", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Альфа-Банк", "brand:en": "Alfa-Bank", "brand:ru": "Альфа-Банк", "brand:ua": "Альфа-Банк", "brand:wikidata": "Q16691757", "brand:wikipedia": "uk:Альфа-Банк (Україна)", "name": "Альфа-Банк", "name:en": "Alfa-Bank", "name:ru": "Альфа-Банк"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/БПС-Сбербанк": {"name": "БПС-Сбербанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/sberbank.bps/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2074915", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "БПС-Сбербанк", "brand:wikidata": "Q2074915", "brand:wikipedia": "be:БПС-Сбербанк", "name": "БПС-Сбербанк"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Банк Дабрабыт": {"name": "Банк Дабрабыт", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bank.dabrabyt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63981850", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Банк Дабрабыт", "brand:wikidata": "Q63981850", "name": "Банк Дабрабыт"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Банка ДСК": {"name": "Банка ДСК", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/dskbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5206146", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Банка ДСК", "brand:bg": "Банка ДСК", "brand:en": "DSK Bank", "brand:wikidata": "Q5206146", "brand:wikipedia": "en:DSK Bank", "name": "Банка ДСК", "name:bg": "Банка ДСК", "name:en": "DSK Bank"}, "countryCodes": ["bg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Белагропромбанк": {"name": "Белагропромбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/belagroprombank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1991373", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Белагропромбанк", "brand:en": "Belagroprom Bank", "brand:wikidata": "Q1991373", "brand:wikipedia": "be:Белаграпрамбанк", "name": "Белагропромбанк", "name:en": "Belagroprom Bank"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Беларусбанк": {"name": "Беларусбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/asb.belarusbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1997334", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Беларусбанк", "brand:en": "Belarusbank", "brand:wikidata": "Q1997334", "brand:wikipedia": "en:Belarusbank", "name": "Беларусбанк", "name:en": "Belarusbank"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Белинвестбанк": {"name": "Белинвестбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/belinvestbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4081940", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Белинвестбанк", "brand:wikidata": "Q4081940", "brand:wikipedia": "ru:Белинвестбанк", "name": "Белинвестбанк"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Бинбанк": {"name": "Бинбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/binbank.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4086829", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Бинбанк", "brand:en": "B&N Bank", "brand:wikidata": "Q4086829", "brand:wikipedia": "en:B&N Bank", "name": "Бинбанк", "name:en": "B&N Bank"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ВТБ (Россия)": {"name": "ВТБ (Россия)", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/vtbrussia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1549389", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ВТБ", "brand:en": "VTB Bank", "brand:wikidata": "Q1549389", "brand:wikipedia": "en:VTB Bank", "name": "ВТБ", "name:en": "VTB Bank"}, "countryCodes": ["ru"], "terms": ["втб банк москвы"], "matchScore": 2, "suggestion": true}, - "amenity/bank/ВТБ (Украина)": {"name": "ВТБ (Украина)", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%9B%D0%BE%D0%B3%D0%BE%D1%82%D0%B8%D0%BF%20%D0%92%D0%A2%D0%91.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16628820", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ВТБ", "brand:en": "VTB Bank", "brand:wikidata": "Q16628820", "brand:wikipedia": "uk:ВТБ#ПАТ «ВТБ Банк (Україна)»", "name": "ВТБ", "name:en": "VTB Bank"}, "countryCodes": ["ua"], "terms": ["втб банк"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Возрождение": {"name": "Возрождение", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Vozrozhdenie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4114952", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Возрождение", "brand:wikidata": "Q4114952", "brand:wikipedia": "ru:Возрождение (банк)", "name": "Возрождение"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Газпромбанк": {"name": "Газпромбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/gpbofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1924338", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Газпромбанк", "brand:en": "Gazprombank", "brand:wikidata": "Q1924338", "brand:wikipedia": "en:Gazprombank", "name": "Газпромбанк", "name:en": "Gazprombank"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Генбанк": {"name": "Генбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/GENBANK.Crimea/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62122630", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Генбанк", "brand:wikidata": "Q62122630", "name": "Генбанк"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Зенит": {"name": "Зенит", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankZENIT/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4191388", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Зенит", "brand:en": "Zenit", "brand:ru": "Зенит", "brand:wikidata": "Q4191388", "brand:wikipedia": "ru:Зенит (банк)", "name": "Зенит", "name:en": "Zenit", "name:ru": "Зенит"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Казкоммерцбанк": {"name": "Казкоммерцбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/halykbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1168179", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Казкоммерцбанк", "brand:en": "Kazkommertsbank", "brand:wikidata": "Q1168179", "brand:wikipedia": "en:Kazkommertsbank", "name": "Казкоммерцбанк", "name:en": "Kazkommertsbank"}, "countryCodes": ["kz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Московский индустриальный банк": {"name": "Московский индустриальный банк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Minbank.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4304145", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Московский индустриальный банк", "brand:en": "Moscow Industrial Bank", "brand:wikidata": "Q4304145", "brand:wikipedia": "ru:Московский индустриальный банк", "name": "Московский индустриальный банк", "name:en": "Moscow Industrial Bank"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Мособлбанк": {"name": "Мособлбанк", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4304446", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Мособлбанк", "brand:en": "Mosobl Bank", "brand:wikidata": "Q4304446", "brand:wikipedia": "ru:Мособлбанк", "name": "Мособлбанк", "name:en": "Mosobl Bank"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Народный банк": {"name": "Народный банк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/halykbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1046186", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Народный банк", "brand:wikidata": "Q1046186", "brand:wikipedia": "kk:Қазақстан Халық банкі", "name": "Народный банк"}, "countryCodes": ["kg", "kz", "uz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ОТП Банк": {"name": "ОТП Банк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/otpbank.hu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q912778", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ОТП Банк", "brand:en": "OTP Bank", "brand:wikidata": "Q912778", "brand:wikipedia": "en:OTP Bank", "name": "ОТП Банк", "name:en": "OTP Bank"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Обединена Българска Банка": {"name": "Обединена Българска Банка", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UnitedBulgarianBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7887555", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Обединена Българска Банка", "brand:en": "United Bulgarian Bank", "brand:wikidata": "Q7887555", "brand:wikipedia": "en:United Bulgarian Bank", "name": "Обединена Българска Банка", "name:en": "United Bulgarian Bank"}, "countryCodes": ["bg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Открытие": {"name": "Открытие", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/otkritie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4327204", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Открытие", "brand:wikidata": "Q4327204", "brand:wikipedia": "ru:Банк «Финансовая корпорация Открытие»", "name": "Открытие"}, "countryCodes": ["ru"], "terms": ["банк открытие"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Ощадбанк": {"name": "Ощадбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/oschadbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4340839", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Ощадбанк", "brand:en": "State Savings Bank of Ukraine", "brand:wikidata": "Q4340839", "brand:wikipedia": "uk:Ощадбанк", "name": "Ощадбанк", "name:en": "State Savings Bank of Ukraine"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ПУМБ": {"name": "ПУМБ", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/pumbua/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4341156", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ПУМБ", "brand:en": "First Ukrainian International Bank", "brand:wikidata": "Q4341156", "brand:wikipedia": "en:First Ukrainian International Bank", "name": "ПУМБ", "name:en": "First Ukrainian International Bank"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Почта Банк": {"name": "Почта Банк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/pochtabank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24930461", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Почта Банк", "brand:en": "Post Bank", "brand:wikidata": "Q24930461", "brand:wikipedia": "en:Post Bank (Russia)", "name": "Почта Банк", "name:en": "Post Bank"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Пощенска банка": {"name": "Пощенска банка", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/PostbankBG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7234083", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Пощенска банка", "brand:wikidata": "Q7234083", "brand:wikipedia": "bg:Пощенска банка", "name": "Пощенска банка", "name:en": "Postbank"}, "countryCodes": ["bg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ПриватБанк": {"name": "ПриватБанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/privatbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1515015", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ПриватБанк", "brand:en": "PrivatBank", "brand:wikidata": "Q1515015", "brand:wikipedia": "uk:ПриватБанк", "name": "ПриватБанк", "name:en": "PrivatBank"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Приднестровский Сбербанк": {"name": "Приднестровский Сбербанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/pridnestrovskiy.sberbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4378147", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Приднестровский Сбербанк", "brand:en": "Pridnestrovian Savings Bank", "brand:ru": "Приднестровский Сбербанк", "brand:wikidata": "Q4378147", "brand:wikipedia": "ru:Приднестровский Сбербанк", "name": "Приднестровский Сбербанк", "name:en": "Pridnestrovian Savings Bank", "name:ru": "Приднестровский Сбербанк"}, "countryCodes": ["md"], "terms": ["приднестровский cбербанк"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Приорбанк": {"name": "Приорбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Priorbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3919658", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Приорбанк", "brand:en": "PriorBank", "brand:wikidata": "Q3919658", "brand:wikipedia": "be:Пріорбанк", "name": "Приорбанк", "name:en": "PriorBank"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Промсвязьбанк": {"name": "Промсвязьбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/psbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q649100", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Промсвязьбанк", "brand:en": "Promsvyazbank", "brand:wikidata": "Q649100", "brand:wikipedia": "en:Promsvyazbank", "name": "Промсвязьбанк", "name:en": "Promsvyazbank"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/РНКБ": {"name": "РНКБ", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/rncb.crimea/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16912944", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "РНКБ", "brand:wikidata": "Q16912944", "brand:wikipedia": "en:Russian National Commercial Bank", "name": "РНКБ"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Райффайзен": {"name": "Райффайзен", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/raiffeisenbankrus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4389244", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Райффайзен", "brand:en": "Raiffeisenbank", "brand:ru": "Райффайзен", "brand:wikidata": "Q4389244", "brand:wikipedia": "en:Raiffeisenbank (Russia)", "name": "Райффайзен", "name:en": "Raiffeisenbank", "name:ru": "Райффайзен"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Райффайзен Банк Аваль": {"name": "Райффайзен Банк Аваль", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/raiffeisenua/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4389243", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Райффайзен Банк Аваль", "brand:en": "Raiffeisen Bank Aval", "brand:ru": "Райффайзен Банк Аваль", "brand:ua": "Райффайзен Банк Аваль", "brand:wikidata": "Q4389243", "brand:wikipedia": "en:Raiffeisen Bank Aval", "name": "Райффайзен Банк Аваль", "name:en": "Raiffeisen Bank Aval", "name:ru": "Райффайзен Банк Аваль", "name:ua": "Райффайзен Банк Аваль"}, "countryCodes": ["ua"], "terms": ["аваль", "банк аваль"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Росбанк": {"name": "Росбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/rosbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1119857", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Росбанк", "brand:en": "Rosbank", "brand:ru": "Росбанк", "brand:wikidata": "Q1119857", "brand:wikipedia": "en:Rosbank", "name": "Росбанк", "name:en": "Rosbank", "name:ru": "Росбанк"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Россельхозбанк": {"name": "Россельхозбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/rshb.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3920226", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Россельхозбанк", "brand:en": "Rosselkhozbank", "brand:ru": "Россельхозбанк", "brand:wikidata": "Q3920226", "brand:wikipedia": "en:Russian Agricultural Bank", "name": "Россельхозбанк", "name:en": "Rosselkhozbank", "name:ru": "Россельхозбанк"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Русский Стандарт": {"name": "Русский Стандарт", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/rsbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4400854", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Русский Стандарт", "brand:en": "Russian Standard Bank", "brand:ru": "Русский Стандарт", "brand:wikidata": "Q4400854", "brand:wikipedia": "en:Russian Standard Bank", "name": "Русский Стандарт", "name:en": "Russian Standard Bank", "name:ru": "Русский Стандарт"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Сбербанк": {"name": "Сбербанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/sberbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q205012", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Сбербанк", "brand:en": "Sberbank", "brand:ru": "Сбербанк", "brand:wikidata": "Q205012", "brand:wikipedia": "en:Sberbank of Russia", "name": "Сбербанк", "name:en": "Sberbank", "name:ru": "Сбербанк"}, "countryCodes": ["kz", "ru"], "terms": ["cбербанк", "cбербанк россии", "сбербанк россии"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Совкомбанк": {"name": "Совкомбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/sovcombank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4426566", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Совкомбанк", "brand:en": "Sovcom Bank", "brand:ru": "Совкомбанк", "brand:wikidata": "Q4426566", "brand:wikipedia": "ru:Совкомбанк", "name": "Совкомбанк", "name:en": "Sovcom Bank", "name:ru": "Совкомбанк"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/УкрСиббанк": {"name": "УкрСиббанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/UKRSIBBANK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1976290", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "УкрСиббанк", "brand:en": "UkrSibbank", "brand:uk": "УкрСиббанк", "brand:wikidata": "Q1976290", "brand:wikipedia": "uk:Ukrsibbank BNP Paribas Group", "name": "УкрСиббанк", "name:en": "UkrSibbank", "name:uk": "УкрСиббанк"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Укргазбанк": {"name": "Укргазбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Ukrgasbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4470692", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Укргазбанк", "brand:en": "Ukrgasbank", "brand:uk": "Укргазбанк", "brand:wikidata": "Q4470692", "brand:wikipedia": "uk:Укргазбанк", "name": "Укргазбанк", "name:en": "Ukrgasbank", "name:uk": "Укргазбанк"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Укрсоцбанк": {"name": "Укрсоцбанк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Ukrsotsbankofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3547885", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Укрсоцбанк", "brand:en": "Ukrsotsbank", "brand:uk": "Укрсоцбанк", "brand:wikidata": "Q3547885", "brand:wikipedia": "uk:Укрсоцбанк", "name": "Укрсоцбанк", "name:en": "Ukrsotsbank", "name:uk": "Укрсоцбанк"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/УниКредит Булбанк": {"name": "УниКредит Булбанк", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUnicreditlogobg.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7884635", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "УниКредит Булбанк", "brand:wikidata": "Q7884635", "brand:wikipedia": "bg:УниКредит Булбанк", "name": "УниКредит Булбанк", "name:en": "UniCredit Bulbank"}, "countryCodes": ["bg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Уралсиб": {"name": "Уралсиб", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankuralsib/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4476693", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Уралсиб", "brand:en": "Uralsib Bank", "brand:ru": "Уралсиб", "brand:wikidata": "Q4476693", "brand:wikipedia": "ru:Уралсиб (банк)", "name": "Уралсиб", "name:en": "Uralsib Bank", "name:ru": "Уралсиб"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Уральский банк реконструкции и развития": {"name": "Уральский банк реконструкции и развития", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4476745", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Уральский банк реконструкции и развития", "brand:en": "Ural Bank for Reconstruction and Development", "brand:ru": "Уральский банк реконструкции и развития", "brand:wikidata": "Q4476745", "brand:wikipedia": "ru:Уральский банк реконструкции и развития", "name": "Уральский банк реконструкции и развития", "name:en": "Ural Bank for Reconstruction and Development", "name:ru": "Уральский банк реконструкции и развития", "short_name": "УБРиР", "short_name:ru": "УБРиР"}, "countryCodes": ["ru"], "terms": ["убрир", "убрр"], "matchScore": 2, "suggestion": true}, - "amenity/bank/Хаан банк": {"name": "Хаан банк", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/KhanBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25632240", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Хаан банк", "brand:en": "Khan Bank", "brand:mn": "Хаан банк", "brand:wikidata": "Q25632240", "brand:wikipedia": "mn:ХААН банк", "name": "Хаан банк", "name:en": "Khan Bank", "name:mn": "Хаан банк"}, "countryCodes": ["mn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/Хоум Кредит": {"name": "Хоум Кредит", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/homecreditru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4500466", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "Хоум Кредит", "brand:en": "Home Credit & Finance Bank", "brand:ru": "Хоум Кредит", "brand:wikidata": "Q4500466", "brand:wikipedia": "en:Home Credit & Finance Bank", "name": "Хоум Кредит", "name:en": "Home Credit & Finance Bank", "name:ru": "Хоум Кредит"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/בנק אגוד": {"name": "בנק אגוד", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/igudbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2903265", "amenity": "bank"}, "addTags": {"alt_name:en": "Bank Igud", "amenity": "bank", "brand": "בנק אגוד", "brand:en": "Union Bank of Israel", "brand:he": "בנק אגוד", "brand:wikidata": "Q2903265", "brand:wikipedia": "en:Union Bank of Israel", "name": "בנק אגוד", "name:en": "Union Bank of Israel", "name:he": "בנק אגוד"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/בנק אוצר החייל": {"name": "בנק אוצר החייל", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOtsarLogoHE.gif&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2900674", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "בנק אוצר החייל", "brand:en": "Bank Otsar Ha-Hayal", "brand:he": "בנק אוצר החייל", "brand:wikidata": "Q2900674", "brand:wikipedia": "en:Bank Otsar Ha-Hayal", "name": "בנק אוצר החייל", "name:en": "Bank Otsar Ha-Hayal", "name:he": "בנק אוצר החייל"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/בנק דיסקונט": {"name": "בנק דיסקונט", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/discountbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q250362", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "בנק דיסקונט לישראל", "brand:en": "Israel Discount Bank", "brand:he": "בנק דיסקונט לישראל", "brand:wikidata": "Q250362", "brand:wikipedia": "en:Israel Discount Bank", "name": "בנק דיסקונט", "name:en": "Bank Discount", "name:he": "בנק דיסקונט"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/בנק הפועלים": {"name": "בנק הפועלים", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/950970103667052544/Ymilo1Mp_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2666775", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "בנק הפועלים", "brand:en": "Bank Hapoalim", "brand:he": "בנק הפועלים", "brand:wikidata": "Q2666775", "brand:wikipedia": "en:Bank Hapoalim", "name": "בנק הפועלים", "name:en": "Bank Hapoalim", "name:he": "בנק הפועלים"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/בנק יהד": {"name": "בנק יהד", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7187611", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "בנק יהד", "brand:en": "Bank Yahav", "brand:he": "בנק יהד", "brand:wikidata": "Q7187611", "brand:wikipedia": "he:בנק יהב", "name": "בנק יהד", "name:en": "Bank Yahav", "name:he": "בנק יהד"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/בנק ירושלים": {"name": "בנק ירושלים", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankjerusalem/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2900227", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "בנק ירושלים", "brand:en": "Bank of Jerusalem", "brand:he": "בנק ירושלים", "brand:wikidata": "Q2900227", "brand:wikipedia": "en:Bank of Jerusalem", "name": "בנק ירושלים", "name:en": "Bank of Jerusalem", "name:he": "בנק ירושלים"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/בנק לאומי": {"name": "בנק לאומי", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/LeumiDigital/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806641", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "בנק לאומי", "brand:en": "Bank Leumi", "brand:he": "בנק לאומי", "brand:wikidata": "Q806641", "brand:wikipedia": "en:Bank Leumi", "name": "בנק לאומי", "name:en": "Bank Leumi", "name:he": "בנק לאומי"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/בנק מסד": {"name": "בנק מסד", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7187667", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "בנק מסד", "brand:en": "Bank Massad", "brand:he": "בנק מסד", "brand:wikidata": "Q7187667", "brand:wikipedia": "en:Bank Massad", "name": "בנק מסד", "name:en": "Bank Massad", "name:he": "בנק מסד"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/הבנק הבינלאומי": {"name": "הבנק הבינלאומי", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHaBank%20Hbinleumi%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2777497", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "הבנק הבינלאומי", "brand:en": "First International Bank of Israel", "brand:he": "הבנק הבינלאומי", "brand:wikidata": "Q2777497", "brand:wikipedia": "en:First International Bank of Israel", "name": "הבנק הבינלאומי", "name:en": "First International Bank of Israel", "name:he": "הבנק הבינלאומי"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/מזרחי טפחות": {"name": "מזרחי טפחות", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bank.mizrahi.tefahot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2777129", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "מזרחי טפחות", "brand:en": "Mizrahi-Tefahot", "brand:he": "מזרחי טפחות", "brand:wikidata": "Q2777129", "brand:wikipedia": "en:Bank Mizrahi-Tefahot", "name": "בנק מזרחי טפחות", "name:en": "Bank Mizrahi-Tefahot", "name:he": "בנק מזרחי טפחות"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک آینده": {"name": "بانک آینده", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AyandehBankIran/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5938144", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک آینده", "brand:en": "Ayandeh Bank", "brand:wikidata": "Q5938144", "brand:wikipedia": "en:Ayandeh Bank", "name": "بانک آینده", "name:en": "Ayandeh Bank"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک اقتصاد نوین": {"name": "بانک اقتصاد نوین", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/NewEconomyBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5323768", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک اقتصاد نوین", "brand:en": "EN Bank", "brand:wikidata": "Q5323768", "brand:wikipedia": "en:EN Bank", "name": "بانک اقتصاد نوین", "name:en": "EN Bank"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک انصار": {"name": "بانک انصار", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bank.ansar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5862675", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک انصار", "brand:wikidata": "Q5862675", "brand:wikipedia": "fa:بانک انصار", "name": "بانک انصار"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک ایران زمین": {"name": "بانک ایران زمین", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/503759579674794/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5934423", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک ایران زمین", "brand:wikidata": "Q5934423", "brand:wikipedia": "en:Iran Zamin Bank", "name": "بانک ایران زمین"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک تجارت": {"name": "بانک تجارت", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/BankTjart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7695198", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک تجارت", "brand:wikidata": "Q7695198", "brand:wikipedia": "en:Tejarat Bank", "name": "بانک تجارت"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک توسعه تعاون": {"name": "بانک توسعه تعاون", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ttbank.official1/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5684450", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک توسعه تعاون", "brand:wikidata": "Q5684450", "brand:wikipedia": "fa:بانک توسعه تعاون", "name": "بانک توسعه تعاون"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک رفاه": {"name": "بانک رفاه", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRefah-Bank-Logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7307083", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک رفاه", "brand:en": "Refah Bank", "brand:wikidata": "Q7307083", "brand:wikipedia": "en:Refah Bank", "name": "بانک رفاه", "name:en": "Refah Bank"}, "countryCodes": ["ir"], "terms": ["بانک رفاه کارگران"], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک سامان": {"name": "بانک سامان", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/saman.bank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4117676", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک سامان", "brand:en": "Saman Bank", "brand:wikidata": "Q4117676", "brand:wikipedia": "en:Saman Bank", "name": "بانک سامان", "name:en": "Saman Bank"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک سرمایه": {"name": "بانک سرمایه", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/116484438378460/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7424291", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک سرمایه", "brand:en": "Sarmayeh Bank", "brand:wikidata": "Q7424291", "brand:wikipedia": "en:Sarmayeh Bank", "name": "بانک سرمایه", "name:en": "Sarmayeh Bank"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک سپه": {"name": "بانک سپه", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SepahBankClub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882624", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک سپه", "brand:en": "Bank Sepah", "brand:wikidata": "Q2882624", "brand:wikipedia": "en:Bank Sepah", "name": "بانک سپه", "name:en": "Bank Sepah"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک سینا": {"name": "بانک سینا", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/Esinabank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10860246", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک سینا", "brand:en": "Sina Bank", "brand:wikidata": "Q10860246", "brand:wikipedia": "en:Sina Bank", "name": "بانک سینا", "name:en": "Sina Bank"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک شهر": {"name": "بانک شهر", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/217753181621178/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5941033", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک شهر", "brand:en": "Shahr Bank", "brand:wikidata": "Q5941033", "brand:wikipedia": "fa:بانک شهر", "name": "بانک شهر", "name:en": "Shahr Bank"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک صادرات": {"name": "بانک صادرات", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bsi.ir/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882608", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک صادرات", "brand:en": "Bank Saderat Iran", "brand:wikidata": "Q2882608", "brand:wikipedia": "en:Bank Saderat Iran", "name": "بانک صادرات", "name:en": "Bank Saderat Iran"}, "countryCodes": ["ir"], "terms": ["بانک صادرات ایران", "صادرات"], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک قوامین": {"name": "بانک قوامین", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10860253", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک قوامین", "brand:en": "Ghavamin Bank", "brand:wikidata": "Q10860253", "brand:wikipedia": "en:Ghavamin Bank", "name": "بانک قوامین", "name:en": "Ghavamin Bank"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک مسکن": {"name": "بانک مسکن", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/146073072233557/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4855942", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک مسکن", "brand:en": "Bank Maskan", "brand:wikidata": "Q4855942", "brand:wikipedia": "en:Bank Maskan", "name": "بانک مسکن", "name:en": "Bank Maskan"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک ملت": {"name": "بانک ملت", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4855944", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک ملت", "brand:en": "Bank Mellat", "brand:wikidata": "Q4855944", "brand:wikipedia": "en:Bank Mellat", "name": "بانک ملت", "name:en": "Bank Mellat"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک ملی": {"name": "بانک ملی", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/www.bmi.ir/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806640", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک ملی", "brand:en": "Bank Melli Iran", "brand:wikidata": "Q806640", "brand:wikipedia": "en:Bank Melli Iran", "name": "بانک ملی", "name:en": "Bank Melli Iran"}, "countryCodes": ["ir"], "terms": ["بانک ملی ایران", "ملی"], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک مهر اقتصاد": {"name": "بانک مهر اقتصاد", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5942921", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک مهر اقتصاد", "brand:wikidata": "Q5942921", "brand:wikipedia": "fa:بانک مهر اقتصاد", "name": "بانک مهر اقتصاد", "name:en": "Mehr Eqtesad Bank"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک پارسیان": {"name": "بانک پارسیان", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/parsianbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2410404", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک پارسیان", "brand:en": "Parsian Bank", "brand:wikidata": "Q2410404", "brand:wikipedia": "en:Parsian Bank", "name": "بانک پارسیان", "name:en": "Parsian Bank"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک پاسارگاد": {"name": "بانک پاسارگاد", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankpasargadofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4855962", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک پاسارگاد", "brand:en": "Bank Pasargad", "brand:wikidata": "Q4855962", "brand:wikipedia": "en:Bank Pasargad", "name": "بانک پاسارگاد", "name:en": "Bank Pasargad"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/بانک کشاورزی": {"name": "بانک کشاورزی", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/277894095586473/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6395007", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "بانک کشاورزی", "brand:en": "Bank Keshavarzi Iran", "brand:wikidata": "Q6395007", "brand:wikipedia": "en:Bank Keshavarzi Iran", "name": "بانک کشاورزی", "name:en": "Bank Keshavarzi Iran"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/پست بانک": {"name": "پست بانک", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/149174395175600/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7233625", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "پست بانک", "brand:en": "Post Bank of Iran", "brand:wikidata": "Q7233625", "brand:wikipedia": "en:Post Bank of Iran", "name": "پست بانک", "name:en": "Post Bank of Iran"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/অগ্রণী ব্যাংক": {"name": "অগ্রণী ব্যাংক", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/AgraniBankLimited/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q517050", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "অগ্রণী ব্যাংক", "brand:bn": "অগ্রণী ব্যাংক", "brand:en": "Agrani Bank", "brand:wikidata": "Q517050", "brand:wikipedia": "bn:অগ্রণী ব্যাংক", "name": "অগ্রণী ব্যাংক", "name:bn": "অগ্রণী ব্যাংক", "name:en": "Agrani Bank"}, "countryCodes": ["bd"], "terms": ["agrani bank", "agrani bank limited", "agrani bank limited অগ্রণী ব্যাংক লিমিটেড", "agrani bank ltd", "agrani bank ltd অগ্রণী ব্যাংক লিমিটেড", "অগ্রণী ব্যাংক লিমিটেড"], "matchScore": 2, "suggestion": true}, - "amenity/bank/গ্রামীণ ব্যাংক": {"name": "গ্রামীণ ব্যাংক", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/gramenbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q188567", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "গ্রামীণ ব্যাংক", "brand:bn": "গ্রামীণ ব্যাংক", "brand:en": "Grameen Bank", "brand:wikidata": "Q188567", "brand:wikipedia": "en:Grameen Bank", "name": "গ্রামীণ ব্যাংক", "name:bn": "গ্রামীণ ব্যাংক", "name:en": "Grameen Bank"}, "countryCodes": ["bd"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/জনতা ব্যাংক লিমিটেড": {"name": "জনতা ব্যাংক লিমিটেড", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/901845891891568641/8L_3kxxa_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3347028", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "জনতা ব্যাংক লিমিটেড", "brand:bn": "জনতা ব্যাংক লিমিটেড", "brand:en": "Janata Bank Limited", "brand:wikidata": "Q3347028", "brand:wikipedia": "bn:জনতা ব্যাংক", "name": "জনতা ব্যাংক লিমিটেড", "name:bn": "জনতা ব্যাংক লিমিটেড", "name:en": "Janata Bank Limited"}, "countryCodes": ["bd"], "terms": ["janata bank", "janata bank limited", "janata bank limited জনতা ব্যাংক লিমিটেড"], "matchScore": 2, "suggestion": true}, - "amenity/bank/বাংলাদেশ কৃষি ব্যাংক": {"name": "বাংলাদেশ কৃষি ব্যাংক", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bangladeshkrishibank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16345932", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "বাংলাদেশ কৃষি ব্যাংক", "brand:bn": "বাংলাদেশ কৃষি ব্যাংক", "brand:en": "Bangladesh Krishi Bank", "brand:wikidata": "Q16345932", "brand:wikipedia": "en:Bangladesh Krishi Bank", "name": "বাংলাদেশ কৃষি ব্যাংক", "name:bn": "বাংলাদেশ কৃষি ব্যাংক", "name:en": "Bangladesh Krishi Bank"}, "countryCodes": ["bd"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/সোনালী ব্যাংক লিমিটেড": {"name": "সোনালী ব্যাংক লিমিটেড", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/sb.ltd.bd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3350382", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "সোনালী ব্যাংক লিমিটেড", "brand:bn": "সোনালী ব্যাংক লিমিটেড", "brand:en": "Sonali Bank", "brand:wikidata": "Q3350382", "brand:wikipedia": "en:Sonali Bank", "name": "সোনালী ব্যাংক লিমিটেড", "name:bn": "সোনালী ব্যাংক লিমিটেড", "name:en": "Sonali Bank"}, "countryCodes": ["bd"], "terms": ["sonali bank", "sonali bank limited", "sonali bank limited সোনালী ব্যাংক লিমিটেড"], "matchScore": 2, "suggestion": true}, - "amenity/bank/ธนาคารกรุงเทพ": {"name": "ธนาคารกรุงเทพ", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/924817393049677824/zctRzkcO_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806483", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ธนาคารกรุงเทพ", "brand:en": "Bangkok Bank", "brand:th": "ธนาคารกรุงเทพ", "brand:wikidata": "Q806483", "brand:wikipedia": "en:Bangkok Bank", "name": "ธนาคารกรุงเทพ", "name:en": "Bangkok Bank", "name:th": "ธนาคารกรุงเทพ"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ธนาคารกรุงไทย": {"name": "ธนาคารกรุงไทย", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/krungthaibank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q962865", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ธนาคารกรุงไทย", "brand:en": "Krung Thai Bank", "brand:th": "ธนาคารกรุงไทย", "brand:wikidata": "Q962865", "brand:wikipedia": "en:Krung Thai Bank", "name": "ธนาคารกรุงไทย", "name:en": "Krung Thai Bank", "name:th": "ธนาคารกรุงไทย"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ธนาคารกสิกรไทย": {"name": "ธนาคารกสิกรไทย", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/KBankLive/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q276557", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ธนาคารกสิกรไทย", "brand:en": "Kasikornbank", "brand:th": "ธนาคารกสิกรไทย", "brand:wikidata": "Q276557", "brand:wikipedia": "en:Kasikornbank", "name": "ธนาคารกสิกรไทย", "name:en": "Kasikornbank", "name:th": "ธนาคารกสิกรไทย"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ธนาคารออมสิน": {"name": "ธนาคารออมสิน", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/GSBSociety/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6579041", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ธนาคารออมสิน", "brand:en": "Government Savings Bank", "brand:th": "ธนาคารออมสิน", "brand:wikidata": "Q6579041", "brand:wikipedia": "en:Government Savings Bank (Thailand)", "name": "ธนาคารออมสิน", "name:en": "Government Savings Bank", "name:th": "ธนาคารออมสิน"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ธนาคารไทยพาณิชย์": {"name": "ธนาคารไทยพาณิชย์", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/scb.thailand/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2038986", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ธนาคารไทยพาณิชย์", "brand:en": "Siam Commercial Bank", "brand:th": "ธนาคารไทยพาณิชย์", "brand:wikidata": "Q2038986", "brand:wikipedia": "en:Siam Commercial Bank", "name": "ธนาคารไทยพาณิชย์", "name:en": "Siam Commercial Bank", "name:th": "ธนาคารไทยพาณิชย์"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/みずほ銀行": {"name": "みずほ銀行", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/902036508672106496/L8rp7WY6_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882956", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "みずほ銀行", "brand:en": "Mizuho Bank", "brand:ja": "みずほ銀行", "brand:wikidata": "Q2882956", "brand:wikipedia": "en:Mizuho Bank", "name": "みずほ銀行", "name:en": "Mizuho Bank", "name:ja": "みずほ銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/ゆうちょ銀行": {"name": "ゆうちょ銀行", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/941907467197231104/HaBuIkxx_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q907103", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "ゆうちょ銀行", "brand:en": "Japan Post Bank", "brand:ja": "ゆうちょ銀行", "brand:wikidata": "Q907103", "brand:wikipedia": "ja:ゆうちょ銀行", "name": "ゆうちょ銀行", "name:en": "Japan Post Bank", "name:ja": "ゆうちょ銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/りそな銀行": {"name": "りそな銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FResona%20Bank%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11281447", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "りそな銀行", "brand:en": "Resona Bank", "brand:ja": "りそな銀行", "brand:wikidata": "Q11281447", "brand:wikipedia": "ja:りそな銀行", "name": "りそな銀行", "name:en": "Resona Bank", "name:ja": "りそな銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/イオン銀行": {"name": "イオン銀行", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1064359056909856774/mH1CT4mL_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11286327", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "イオン銀行", "brand:en": "Aeon Bank", "brand:ja": "イオン銀行", "brand:wikidata": "Q11286327", "brand:wikipedia": "ja:イオン銀行", "name": "イオン銀行", "name:en": "Aeon Bank", "name:ja": "イオン銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/スルガ銀行": {"name": "スルガ銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSuruga%20Bank%20Ltd.%20head%20office%20ac.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11313470", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "スルガ銀行", "brand:en": "Suruga Bank", "brand:ja": "スルガ銀行", "brand:wikidata": "Q11313470", "brand:wikipedia": "ja:スルガ銀行", "name": "スルガ銀行", "name:en": "Suruga Bank", "name:ja": "スルガ銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/セブン銀行": {"name": "セブン銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F7bank%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7457182", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "セブン銀行", "brand:en": "Seven Bank", "brand:ja": "セブン銀行", "brand:wikidata": "Q7457182", "brand:wikipedia": "ja:セブン銀行", "name": "セブン銀行", "name:en": "Seven Bank", "name:ja": "セブン銀行"}, "countryCodes": ["jp"], "terms": ["7銀行"], "matchScore": 2, "suggestion": true}, - "amenity/bank/三井住友信託銀行": {"name": "三井住友信託銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSumitomo%20Mitsui%20Trust%20Bank%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5215421", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "三井住友信託銀行", "brand:en": "Sumitomo Mitsui Trust Bank", "brand:wikidata": "Q5215421", "brand:wikipedia": "jp:三井住友信託銀行", "name": "三井住友信託銀行", "name:en": "Sumitomo Mitsui Trust Bank"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/三井住友銀行": {"name": "三井住友銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/smbc.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2660418", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "三井住友銀行", "brand:en": "Sumitomo Mitsui Banking Corporation", "brand:ja": "三井住友銀行", "brand:wikidata": "Q2660418", "brand:wikipedia": "en:Sumitomo Mitsui Banking Corporation", "name": "三井住友銀行", "name:en": "Sumitomo Mitsui Banking Corporation", "name:ja": "三井住友銀行", "short_name:en": "SMBC"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/三菱UFJ信託銀行": {"name": "三菱UFJ信託銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FToyotb.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6883178", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "三菱UFJ信託銀行", "brand:en": "Mitsubishi UFJ Trust and Banking Corporation", "brand:ja": "三菱UFJ信託銀行", "brand:wikidata": "Q6883178", "brand:wikipedia": "en:Mitsubishi UFJ Trust and Banking Corporation", "name": "三菱UFJ信託銀行", "name:en": "Mitsubishi UFJ Trust and Banking Corporation", "name:ja": "三菱UFJ信託銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/三菱UFJ銀行": {"name": "三菱UFJ銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bk.mufg.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q988284", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "三菱UFJ銀行", "brand:en": "MUFG Bank", "brand:ja": "三菱UFJ銀行", "brand:wikidata": "Q988284", "brand:wikipedia": "en:MUFG Bank", "name": "三菱UFJ銀行", "name:en": "MUFG Bank", "name:ja": "三菱UFJ銀行"}, "terms": ["三菱東京ufj銀行"], "matchScore": 2, "suggestion": true}, - "amenity/bank/上海商業儲蓄銀行": {"name": "上海商業儲蓄銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SCSB.Pukii/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4207208", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "上海商業儲蓄銀行", "brand:en": "Shanghai Commercial and Savings Bank", "brand:wikidata": "Q4207208", "brand:wikipedia": "en:Shanghai Commercial and Savings Bank", "name": "上海商業儲蓄銀行", "name:en": "Shanghai Commercial and Savings Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/上海浦东发展银行": {"name": "上海浦东发展银行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPSD%20Bank%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1479076", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "上海浦东发展银行", "brand:en": "Shanghai Pudong Development Bank", "brand:wikidata": "Q1479076", "brand:wikipedia": "zh:上海浦东发展银行", "name": "上海浦东发展银行", "name:en": "Shanghai Pudong Development Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/东亚银行": {"name": "东亚银行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBank%20of%20East%20Asia%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806679", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "东亚银行", "brand:wikidata": "Q806679", "brand:wikipedia": "en:Bank of East Asia", "name": "东亚银行", "name:en": "Bank of East Asia"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/中信银行": {"name": "中信银行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/CITICFanPage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q38960", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "中信银行", "brand:en": "China CITIC Bank", "brand:wikidata": "Q38960", "brand:wikipedia": "en:China CITIC Bank", "name": "中信银行", "name:en": "China CITIC Bank"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/中国光大银行": {"name": "中国光大银行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10873167", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "中国光大银行", "brand:en": "China Everbright Bank", "brand:wikidata": "Q10873167", "brand:wikipedia": "zh:中国光大银行", "name": "中国光大银行", "name:en": "China Everbright Bank"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/中国农业银行": {"name": "中国农业银行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAgricultural%20Bank%20of%20China%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26298", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "中国农业银行", "brand:en": "Agricultural Bank of China", "brand:wikidata": "Q26298", "brand:wikipedia": "en:Agricultural Bank of China", "name": "中国农业银行", "name:en": "Agricultural Bank of China"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/中国工商银行": {"name": "中国工商银行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/icbcglobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26463", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "中国工商银行", "brand:en": "Industrial and Commercial Bank of China", "brand:wikidata": "Q26463", "brand:wikipedia": "en:Industrial and Commercial Bank of China", "name": "中国工商银行", "name:en": "Industrial and Commercial Bank of China"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/中国建设银行": {"name": "中国建设银行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/225342697629586/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26299", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "中国建设银行", "brand:en": "China Construction Bank", "brand:wikidata": "Q26299", "brand:wikipedia": "en:China Construction Bank", "name": "中国建设银行", "name:en": "China Construction Bank"}, "countryCodes": ["cn"], "terms": ["建设银行"], "matchScore": 2, "suggestion": true}, - "amenity/bank/中国民生银行": {"name": "中国民生银行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/chinaminshengbanking/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q911543", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "中国民生银行", "brand:en": "China Minsheng Bank", "brand:wikidata": "Q911543", "brand:wikipedia": "en:China Minsheng Bank", "name": "中国民生银行", "name:en": "China Minsheng Bank"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/中国邮政储蓄银行": {"name": "中国邮政储蓄银行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/362173487941724/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q986744", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "中国邮政储蓄银行", "brand:en": "Postal Savings Bank of China", "brand:wikidata": "Q986744", "brand:wikipedia": "en:Postal Savings Bank of China", "name": "中国邮政储蓄银行", "name:en": "Postal Savings Bank of China"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/中国银行": {"name": "中国银行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankofchina.cn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q790068", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "中国银行", "brand:en": "Bank of China", "brand:wikidata": "Q790068", "brand:wikipedia": "en:Bank of China", "name": "中国银行", "name:en": "Bank of China"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/中國信託商業銀行": {"name": "中國信託商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ctbcbankusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5100191", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "中國信託商業銀行", "brand:en": "CTBC Bank", "brand:wikidata": "Q5100191", "brand:wikipedia": "en:CTBC Bank", "name": "中國信託商業銀行", "name:en": "CTBC Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/交通银行": {"name": "交通银行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/bankofcommunications/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806680", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "交通银行", "brand:en": "Bank of Communications", "brand:wikidata": "Q806680", "brand:wikipedia": "en:Bank of Communications", "name": "交通银行", "name:en": "Bank of Communications"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/京城商業銀行": {"name": "京城商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ktb2809/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10883132", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "京城商業銀行", "brand:wikidata": "Q10883132", "brand:wikipedia": "zh:京城商業銀行", "name": "京城商業銀行"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/京葉銀行": {"name": "京葉銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FThe%20Keiyo%20Bank%2C%20Ltd.%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11374734", "amenity": "bank"}, "addTags": {"alt_name:en": "αBANK", "amenity": "bank", "brand": "京葉銀行", "brand:en": "Keiyo Bank", "brand:ja": "京葉銀行", "brand:wikidata": "Q11374734", "brand:wikipedia": "ja:京葉銀行", "name": "京葉銀行", "name:en": "Keiyo Bank", "name:ja": "京葉銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/京都中央信用金庫": {"name": "京都中央信用金庫", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11374844", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "京都中央信用金庫", "brand:en": "Kyoto Chuo Shinkin Bank", "brand:wikidata": "Q11374844", "brand:wikipedia": "ja:京都中央信用金庫", "name": "京都中央信用金庫", "name:en": "Kyoto Chuo Shinkin Bank"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/京都銀行": {"name": "京都銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11375713", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "京都銀行", "brand:en": "Bank of Kyoto", "brand:wikidata": "Q11375713", "brand:wikipedia": "en:Bank of Kyoto", "name": "京都銀行", "name:en": "Bank of Kyoto"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/元大商業銀行": {"name": "元大商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/yuantabank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10889602", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "元大商業銀行", "brand:en": "Yuanta Commercial Bank", "brand:wikidata": "Q10889602", "brand:wikipedia": "zh:元大商業銀行", "name": "元大商業銀行", "name:en": "Yuanta Commercial Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/兆豐國際商業銀行": {"name": "兆豐國際商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q709757", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "兆豐國際商業銀行", "brand:en": "Mega International Commercial Bank", "brand:wikidata": "Q709757", "brand:wikipedia": "en:Mega International Commercial Bank", "name": "兆豐國際商業銀行", "name:en": "Mega International Commercial Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/兴业银行": {"name": "兴业银行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1410821", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "兴业银行", "brand:wikidata": "Q1410821", "brand:wikipedia": "zh:兴业银行", "name": "兴业银行"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/农业银行": {"name": "农业银行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAgricultural%20Bank%20of%20China%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26298", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "农业银行", "brand:wikidata": "Q26298", "brand:wikipedia": "zh:中国农业银行", "name": "农业银行"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/北京银行": {"name": "北京银行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q39146", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "北京银行", "brand:wikidata": "Q39146", "brand:wikipedia": "zh:北京银行", "name": "北京银行"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/北洋銀行": {"name": "北洋銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11402354", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "北洋銀行", "brand:en": "North Pacific Bank", "brand:wikidata": "Q11402354", "brand:wikipedia": "ja:北洋銀行", "name": "北洋銀行", "name:en": "North Pacific Bank"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/北海道銀行": {"name": "北海道銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5878076", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "北海道銀行", "brand:en": "Hokkaido Bank", "brand:wikidata": "Q5878076", "brand:wikipedia": "en:Hokkaido Bank", "name": "北海道銀行", "name:en": "Hokkaido Bank"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/千葉興業銀行": {"name": "千葉興業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11406742", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "千葉興業銀行", "brand:en": "Chiba Kogyo Bank", "brand:ja": "千葉興業銀行", "brand:wikidata": "Q11406742", "brand:wikipedia": "ja:千葉興業銀行", "name": "千葉興業銀行", "name:en": "Chiba Kogyo Bank", "name:ja": "千葉興業銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/千葉銀行": {"name": "千葉銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/chibabank.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1071712", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "千葉銀行", "brand:en": "The Chiba Bank", "brand:ja": "千葉銀行", "brand:wikidata": "Q1071712", "brand:wikipedia": "en:Chiba Bank", "name": "千葉銀行", "name:en": "Chiba Bank", "name:ja": "千葉銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/台中商業銀行": {"name": "台中商業銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTcbbank%20headoffice.JPG&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6136958", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "台中商業銀行", "brand:en": "Taichung Bank", "brand:wikidata": "Q6136958", "brand:wikipedia": "en:Taichung Bank", "name": "台中商業銀行", "name:en": "Taichung Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/台北富邦商業銀行": {"name": "台北富邦商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q697293", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "台北富邦商業銀行", "brand:en": "Taipei Fubon Bank", "brand:wikidata": "Q697293", "brand:wikipedia": "en:Taipei Fubon Bank", "name": "台北富邦商業銀行", "name:en": "Taipei Fubon Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/台新國際商業銀行": {"name": "台新國際商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7676420", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "台新國際商業銀行", "brand:en": "Taishin International Bank", "brand:wikidata": "Q7676420", "brand:wikipedia": "en:Taishin International Bank", "name": "台新國際商業銀行", "name:en": "Taishin International Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/合作金庫商業銀行": {"name": "合作金庫商業銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDepartment%20of%20Business%2C%20Taiwan%20Cooperative%20Bank%2020171216.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q701540", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "合作金庫商業銀行", "brand:en": "Taiwan Cooperative Bank", "brand:wikidata": "Q701540", "brand:wikipedia": "en:Taiwan Cooperative Bank", "name": "合作金庫商業銀行", "name:en": "Taiwan Cooperative Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/商工中金": {"name": "商工中金", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11418759", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "商工中金", "brand:en": "Shoko Chukin Bank", "brand:ja": "商工中金", "brand:wikidata": "Q11418759", "brand:wikipedia": "ja:商工中金", "name": "商工中金", "name:en": "Shoko Chukin Bank", "name:ja": "商工中金"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/國泰世華商業銀行": {"name": "國泰世華商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/cathayunitedbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q702656", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "國泰世華商業銀行", "brand:en": "Cathay United Bank", "brand:wikidata": "Q702656", "brand:wikipedia": "en:Cathay United Bank", "name": "國泰世華商業銀行", "name:en": "Cathay United Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/埼玉りそな銀行": {"name": "埼玉りそな銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSaitama%20Resona%20Bank%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4671591", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "埼玉りそな銀行", "brand:en": "Saitama Resona Bank", "brand:ja": "埼玉りそな銀行", "brand:wikidata": "Q4671591", "brand:wikipedia": "ja:埼玉りそな銀行", "name": "埼玉りそな銀行", "name:en": "Saitama Resona Bank", "name:ja": "埼玉りそな銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/多摩信用金庫": {"name": "多摩信用金庫", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%E3%81%9F%E3%81%BE%E3%81%97%E3%82%93%E3%83%AD%E3%82%B4%E3%83%9E%E3%83%BC%E3%82%AF.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11430719", "amenity": "bank"}, "addTags": {"alt_name": "たましん", "alt_name:en": "Tamashin", "amenity": "bank", "brand": "多摩信用金庫", "brand:en": "Tama Shinkin Bank", "brand:ja": "多摩信用金庫", "brand:wikidata": "Q11430719", "brand:wikipedia": "ja:多摩信用金庫", "name": "多摩信用金庫", "name:en": "Tama Shinkin Bank", "name:ja": "多摩信用金庫"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/大眾商業銀行": {"name": "大眾商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10937047", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "大眾商業銀行", "brand:en": "Ta Chong Commercial Bank", "brand:wikidata": "Q10937047", "brand:wikipedia": "zh:大眾商業銀行", "name": "大眾商業銀行", "name:en": "Ta Chong Commercial Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/宁波银行": {"name": "宁波银行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4856166", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "宁波银行", "brand:en": "Bank of Ningbo", "brand:wikidata": "Q4856166", "brand:wikipedia": "zh:宁波银行", "brand:zh": "宁波银行", "name": "宁波银行", "name:en": "Bank of Ningbo", "name:zh": "宁波银行"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/安泰商業銀行": {"name": "安泰商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10946952", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "安泰商業銀行", "brand:en": "Entie Commercial Bank", "brand:wikidata": "Q10946952", "brand:wikipedia": "zh:安泰商業銀行", "name": "安泰商業銀行", "name:en": "Entie Commercial Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/工商银行": {"name": "工商银行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/icbcglobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26463", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "工商银行", "brand:en": "Industrial and Commercial Bank of China", "brand:wikidata": "Q26463", "brand:wikipedia": "en:Industrial and Commercial Bank of China", "name": "工商银行", "name:en": "Industrial and Commercial Bank of China"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/常陽銀行": {"name": "常陽銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/joyobank.co.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6297774", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "常陽銀行", "brand:en": "Joyo Bank", "brand:wikidata": "Q6297774", "brand:wikipedia": "en:Joyo Bank", "name": "常陽銀行", "name:en": "Joyo Bank"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/彰化商業銀行": {"name": "彰化商業銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCentral%20Branch%2C%20Chang%20Hwa%20Bank%2020101213.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5071627", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "彰化商業銀行", "brand:en": "Chang Hwa Bank", "brand:wikidata": "Q5071627", "brand:wikipedia": "en:Chang Hwa Bank", "name": "彰化商業銀行", "name:en": "Chang Hwa Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/招商银行": {"name": "招商银行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1073327", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "招商银行", "brand:en": "China Merchants Bank", "brand:wikidata": "Q1073327", "brand:wikipedia": "en:China Merchants Bank", "name": "招商银行", "name:en": "China Merchants Bank"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/新生銀行": {"name": "新生銀行", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/2339198227/7dkwb3ea0vvcimqqf7d1_bigger.gif", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q571997", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "新生銀行", "brand:en": "Shinsei Bank", "brand:ja": "新生銀行", "brand:wikidata": "Q571997", "brand:wikipedia": "ja:新生銀行", "name": "新生銀行", "name:en": "Shinsei Bank", "name:ja": "新生銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/日本銀行": {"name": "日本銀行", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1695643374/medama_moji_en_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q333101", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "日本銀行", "brand:en": "Bank of Japan", "brand:wikidata": "Q333101", "brand:wikipedia": "ja:日本銀行", "name": "日本銀行", "name:en": "Bank of Japan"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/東亞銀行": {"name": "東亞銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBank%20of%20East%20Asia%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806679", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "東亞銀行", "brand:en": "Bank of East Asia", "brand:wikidata": "Q806679", "brand:wikipedia": "zh:東亞銀行", "brand:zh-Hans": "东亚银行", "brand:zh-Hant": "東亞銀行", "name": "東亞銀行 BEA", "name:en": "Bank of East Asia", "name:zh-Hans": "东亚银行", "name:zh-Hant": "東亞銀行"}, "countryCodes": ["hk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/東京ベイ信金": {"name": "東京ベイ信金", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11524392", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "東京ベイ信金", "brand:en": "Tokyo Bay Shinkin Bank", "brand:ja": "東京ベイ信金", "brand:wikidata": "Q11524392", "brand:wikipedia": "ja:東京ベイ信金", "name": "東京ベイ信金", "name:en": "Tokyo Bay Shinkin Bank", "name:ja": "東京ベイ信金"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/東日本銀行": {"name": "東日本銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11527211", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "東日本銀行", "brand:en": "Higashi-Nippon Bank", "brand:ja": "東日本銀行", "brand:wikidata": "Q11527211", "brand:wikipedia": "ja:東日本銀行", "name": "東日本銀行", "name:en": "Higashi-Nippon Bank", "name:ja": "東日本銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/板信商業銀行": {"name": "板信商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11104946", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "板信商業銀行", "brand:en": "Bank of Panshin", "brand:wikidata": "Q11104946", "brand:wikipedia": "zh:板信商業銀行", "name": "板信商業銀行", "name:en": "Bank of Panshin"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/横浜銀行": {"name": "横浜銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/OfficialBankofYokohama/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2744340", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "横浜銀行", "brand:en": "Bank of Yokohama", "brand:wikidata": "Q2744340", "brand:wikipedia": "en:Bank of Yokohama", "name": "横浜銀行", "name:en": "Bank of Yokohama"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/永豐商業銀行": {"name": "永豐商業銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBank%20SinoPac%20logo%2020121103.gif&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4855976", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "永豐商業銀行", "brand:en": "Bank SinoPac", "brand:wikidata": "Q4855976", "brand:wikipedia": "en:Bank SinoPac", "name": "永豐商業銀行", "name:en": "Bank SinoPac"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/渣打國際商業銀行": {"name": "渣打國際商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/StandardCharteredTW/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62267023", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "渣打國際商業銀行", "brand:wikidata": "Q62267023", "name": "渣打國際商業銀行"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/玉山商業銀行": {"name": "玉山商業銀行", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FE.SUN%20Bank.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5321663", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "玉山商業銀行", "brand:en": "E.SUN Commercial Bank", "brand:wikidata": "Q5321663", "brand:wikipedia": "en:E.SUN Commercial Bank", "name": "玉山商業銀行", "name:en": "E.SUN Commercial Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/第一商業銀行": {"name": "第一商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/firsthaka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11602128", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "第一商業銀行", "brand:en": "First Commercial Bank", "brand:wikidata": "Q11602128", "brand:wikipedia": "zh:第一商業銀行", "name": "第一商業銀行", "name:en": "First Commercial Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/聯邦商業銀行": {"name": "聯邦商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/180081655368957/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15927195", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "聯邦商業銀行", "brand:en": "Union Bank of Taiwan", "brand:wikidata": "Q15927195", "brand:wikipedia": "zh:聯邦商業銀行", "name": "聯邦商業銀行", "name:en": "Union Bank of Taiwan"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/臺灣中小企業銀行": {"name": "臺灣中小企業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/tbbdreamplus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15913812", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "臺灣中小企業銀行", "brand:en": "Taiwan Business Bank", "brand:wikidata": "Q15913812", "brand:wikipedia": "zh:臺灣中小企業銀行", "name": "臺灣中小企業銀行", "name:en": "Taiwan Business Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/臺灣土地銀行": {"name": "臺灣土地銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/landbank.com.tw/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q717592", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "臺灣土地銀行", "brand:en": "Land Bank of Taiwan", "brand:wikidata": "Q717592", "brand:wikipedia": "en:Land Bank of Taiwan", "name": "臺灣土地銀行", "name:en": "Land Bank of Taiwan"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/臺灣新光商業銀行": {"name": "臺灣新光商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SKBankTaiwan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15909616", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "臺灣新光商業銀行", "brand:en": "Shin Kong Commercial Bank", "brand:wikidata": "Q15909616", "brand:wikipedia": "zh:臺灣新光商業銀行", "name": "臺灣新光商業銀行", "name:en": "Shin Kong Commercial Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/臺灣銀行": {"name": "臺灣銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/botlion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q706533", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "臺灣銀行", "brand:en": "Bank of Taiwan", "brand:wikidata": "Q706533", "brand:wikipedia": "en:Bank of Taiwan", "name": "臺灣銀行", "name:en": "Bank of Taiwan"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/芝信用金庫": {"name": "芝信用金庫", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11614605", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "芝信用金庫", "brand:en": "Shiba Shinkin Bank", "brand:ja": "芝信用金庫", "brand:wikidata": "Q11614605", "brand:wikipedia": "ja:芝信用金庫", "name": "芝信用金庫", "name:en": "Shiba Shinkin Bank", "name:ja": "芝信用金庫"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/華南商業銀行": {"name": "華南商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/hncb008/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11620043", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "華南商業銀行", "brand:en": "Hua Nan Commercial Bank", "brand:wikidata": "Q11620043", "brand:wikipedia": "zh:華南銀行", "name": "華南商業銀行", "name:en": "Hua Nan Commercial Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/近畿大阪銀行": {"name": "近畿大阪銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11638628", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "近畿大阪銀行", "brand:en": "The Kinki Osaka Bank", "brand:ja": "近畿大阪銀行", "brand:wikidata": "Q11638628", "brand:wikipedia": "ja:近畿大阪銀行", "name": "近畿大阪銀行", "name:en": "Kinki Osaka Bank", "name:ja": "近畿大阪銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/遠東國際商業銀行": {"name": "遠東國際商業銀行", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/feibHG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15911143", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "遠東國際商業銀行", "brand:en": "Far Eastern International Bank", "brand:wikidata": "Q15911143", "brand:wikipedia": "zh:遠東國際商業銀行", "name": "遠東國際商業銀行", "name:en": "Far Eastern International Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/陽信商業銀行": {"name": "陽信商業銀行", "icon": "maki-bank", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11658759", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "陽信商業銀行", "brand:en": "Sunny Commercial Bank", "brand:wikidata": "Q11658759", "brand:wikipedia": "zh:陽信商業銀行", "name": "陽信商業銀行", "name:en": "Sunny Commercial Bank"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/静岡銀行": {"name": "静岡銀行", "icon": "maki-bank", "imageURL": "https://pbs.twimg.com/profile_images/1161550011710287883/klbYfRjt_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7499501", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "静岡銀行", "brand:en": "Shizuoka Bank", "brand:ja": "静岡銀行", "brand:wikidata": "Q7499501", "brand:wikipedia": "en:Shizuoka Bank", "name": "静岡銀行", "name:en": "Shizuoka Bank", "name:ja": "静岡銀行"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/국민은행": {"name": "국민은행", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/kb.financialgroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q496606", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "국민은행", "brand:en": "KB Kookmin Bank", "brand:ko": "국민은행", "brand:wikidata": "Q496606", "brand:wikipedia": "en:KB Financial Group Inc", "name": "국민은행", "name:en": "KB Kookmin Bank", "name:ko": "국민은행"}, "countryCodes": ["kr"], "terms": ["국민은행 (gungmin bank)"], "matchScore": 2, "suggestion": true}, - "amenity/bank/기업은행": {"name": "기업은행", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/SMART.IBK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q483855", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "기업은행", "brand:en": "Industrial Bank of Korea", "brand:ko": "기업은행", "brand:wikidata": "Q483855", "brand:wikipedia": "en:Industrial Bank of Korea", "name": "기업은행", "name:en": "Industrial Bank of Korea", "name:ko": "기업은행"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/농협": {"name": "농협", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/nhnonghyupbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15283673", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "농협", "brand:en": "NH", "brand:ko": "농협", "brand:wikidata": "Q15283673", "brand:wikipedia": "ko:NH농협은행", "name": "농협", "name:en": "NH", "name:ko": "농협"}, "countryCodes": ["kr"], "terms": ["nh농협은행"], "matchScore": 2, "suggestion": true}, - "amenity/bank/새마을금고": {"name": "새마을금고", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/kfcc.kr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12600614", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "새마을금고", "brand:ko": "새마을금고", "brand:wikidata": "Q12600614", "brand:wikipedia": "ko:새마을금고", "name": "새마을금고", "name:ko": "새마을금고"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bank/신한은행": {"name": "신한은행", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/ShinhanBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q487230", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "신한은행", "brand:en": "Sinhan Bank", "brand:ko": "신한은행", "brand:wikidata": "Q487230", "brand:wikipedia": "en:Shinhan Bank", "name": "신한은행", "name:en": "Sinhan Bank", "name:ko": "신한은행"}, "countryCodes": ["kr"], "terms": ["신한은행 (sinhan bank)"], "matchScore": 2, "suggestion": true}, - "amenity/bank/우리은행": {"name": "우리은행", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/wooribank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q494369", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "우리은행", "brand:en": "Woori Bank", "brand:ko": "우리은행", "brand:wikidata": "Q494369", "brand:wikipedia": "en:Woori Bank", "name": "우리은행", "name:en": "Woori Bank", "name:ko": "우리은행"}, "countryCodes": ["kr"], "terms": ["우리은행 (uri bank)"], "matchScore": 2, "suggestion": true}, - "amenity/bank/하나은행": {"name": "하나은행", "icon": "maki-bank", "imageURL": "https://graph.facebook.com/HanaBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q484047", "amenity": "bank"}, "addTags": {"amenity": "bank", "brand": "하나은행", "brand:en": "Korea Exchange Bank", "brand:ko": "하나은행", "brand:wikidata": "Q484047", "brand:wikipedia": "en:Korea Exchange Bank", "name": "하나은행", "name:en": "Korea Exchange Bank", "name:ko": "하나은행"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bar/All Bar One": {"name": "All Bar One", "icon": "maki-bar", "imageURL": "https://pbs.twimg.com/profile_images/717013484467306497/vjG-lkGe_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4728624", "amenity": "bar"}, "addTags": {"amenity": "bar", "brand": "All Bar One", "brand:wikidata": "Q4728624", "brand:wikipedia": "en:All Bar One", "name": "All Bar One"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bar/Revolución de Cuba": {"name": "Revolución de Cuba", "icon": "maki-bar", "imageURL": "https://pbs.twimg.com/profile_images/1001476884482396160/3NEm7OnI_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64024691", "amenity": "bar"}, "addTags": {"amenity": "bar", "brand": "Revolución de Cuba", "brand:wikidata": "Q64024691", "name": "Revolución de Cuba"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bar/Revolution": {"name": "Revolution", "icon": "maki-bar", "imageURL": "https://graph.facebook.com/revolutionbars/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64024398", "amenity": "bar"}, "addTags": {"amenity": "bar", "brand": "Revolution", "brand:wikidata": "Q64024398", "name": "Revolution"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/Call a Bike": {"name": "Call a Bike", "icon": "temaki-bicycle_rental", "imageURL": "https://graph.facebook.com/callabikesharing/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q1060525", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "Call a Bike", "brand:wikidata": "Q1060525", "brand:wikipedia": "en:Call a Bike", "name": "Call a Bike"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/Explore Bike Share": {"name": "Explore Bike Share", "icon": "temaki-bicycle_rental", "imageURL": "https://graph.facebook.com/explorebikeshare/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q86706492", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "Explore Bike Share", "brand:wikidata": "Q86706492", "name": "Explore Bike Share"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/Grid": {"name": "Grid", "icon": "temaki-bicycle_rental", "imageURL": "https://graph.facebook.com/Gridbikes/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q62104168", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "Grid", "brand:wikidata": "Q62104168", "name": "Grid"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/HELLO CYCLING": {"name": "HELLO CYCLING", "icon": "temaki-bicycle_rental", "imageURL": "https://graph.facebook.com/hellocyclingjp/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q91231927", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "HELLO CYCLING", "brand:en": "HELLO CYCLING", "brand:ja": "ハローサイクリング", "brand:wikidata": "Q91231927", "fee": "yes", "name": "HELLO CYCLING", "name:en": "HELLO CYCLING", "name:ja": "ハローサイクリング"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/MiBici": {"name": "MiBici", "icon": "temaki-bicycle_rental", "imageURL": "https://graph.facebook.com/MiBiciPublica/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q60966987", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "MiBici", "brand:wikidata": "Q60966987", "brand:wikipedia": "es:MiBici", "name": "MiBici"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/OV-fiets": {"name": "OV-fiets", "icon": "temaki-bicycle_rental", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q2629982", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "OV-fiets", "brand:wikidata": "Q2629982", "brand:wikipedia": "en:OV-fiets", "name": "OV-fiets"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/Swapfiets": {"name": "Swapfiets", "icon": "temaki-bicycle_rental", "imageURL": "https://graph.facebook.com/Swapfiets/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q62104374", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "Swapfiets", "brand:wikidata": "Q62104374", "name": "Swapfiets"}, "countryCodes": ["be", "de", "dk", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/baybike": {"name": "baybike", "icon": "temaki-bicycle_rental", "imageURL": "https://graph.facebook.com/baybikeyokohama/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q91499435", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "baybike", "brand:en": "baybike", "brand:ja": "ベイバイク", "brand:wikidata": "Q91499435", "fee": "yes", "name": "baybike", "name:en": "baybike", "name:ja": "ベイバイク", "official_name": "横浜コミュニティサイクル", "official_name:en": "Yokohama Bike Share", "official_name:ja": "横浜コミュニティサイクル"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/metropolradruhr": {"name": "metropolradruhr", "icon": "temaki-bicycle_rental", "imageURL": "https://graph.facebook.com/nextbike/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q62104274", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "metropolradruhr", "brand:wikidata": "Q62104274", "name": "metropolradruhr"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/ちよくる": {"name": "ちよくる", "icon": "temaki-bicycle_rental", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q91498542", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "ちよくる", "brand:en": "Chiyocle", "brand:ja": "ちよくる", "brand:wikidata": "Q91498542", "fee": "yes", "name": "ちよくる", "name:en": "Chiyocle", "name:ja": "ちよくる", "official_name": "千代田区コミュニティサイクル", "official_name:en": "Chiyoda City Bike Share", "official_name:ja": "千代田区コミュニティサイクル"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bicycle_rental/ドコモ・バイクシェア": {"name": "ドコモ・バイクシェア", "icon": "temaki-bicycle_rental", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDocomo%20bike%20share%20logo.svg&width=100", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q55533296", "amenity": "bicycle_rental"}, "addTags": {"amenity": "bicycle_rental", "brand": "ドコモ・バイクシェア", "brand:en": "Docomo Bike Share", "brand:ja": "ドコモ・バイクシェア", "brand:wikidata": "Q55533296", "brand:wikipedia": "ja:ドコモ・バイクシェア", "fee": "yes", "name": "ドコモ・バイクシェア", "name:en": "Docomo Bike Share", "name:ja": "ドコモ・バイクシェア"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bureau_de_change/CADECA": {"name": "CADECA", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/CadecaCasasdeCambioOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62122716", "amenity": "bureau_de_change"}, "addTags": {"amenity": "bureau_de_change", "brand": "CADECA", "brand:wikidata": "Q62122716", "name": "CADECA"}, "countryCodes": ["cu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bureau_de_change/Eurochange": {"name": "Eurochange", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/eurochange/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q86525249", "amenity": "bureau_de_change"}, "addTags": {"amenity": "bureau_de_change", "brand": "Eurochange", "brand:wikidata": "Q86525249", "name": "Eurochange"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bureau_de_change/NM Money": {"name": "NM Money", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/NMmoney/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q86529747", "amenity": "bureau_de_change"}, "addTags": {"amenity": "bureau_de_change", "brand": "NM Money", "brand:wikidata": "Q86529747", "name": "NM Money"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bureau_de_change/No1 Currency": {"name": "No1 Currency", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/No1Currency/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87139463", "amenity": "bureau_de_change"}, "addTags": {"amenity": "bureau_de_change", "brand": "No1 Currency", "brand:wikidata": "Q87139463", "name": "No1 Currency"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/bureau_de_change/Travelex": {"name": "Travelex", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/TravelexUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2337964", "amenity": "bureau_de_change"}, "addTags": {"amenity": "bureau_de_change", "brand": "Travelex", "brand:wikidata": "Q2337964", "brand:wikipedia": "en:Travelex", "name": "Travelex"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/85°C": {"name": "85°C", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/85CBakeryCafe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4644852", "amenity": "cafe", "cuisine": "coffee_shop;chinese"}, "addTags": {"alt_name": "85C", "amenity": "cafe", "brand": "85°C", "brand:wikidata": "Q4644852", "brand:wikipedia": "en:85C Bakery Cafe", "cuisine": "coffee_shop;chinese", "name": "85°C", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["au", "us"], "terms": ["85 cafe", "85 degrees", "85 degrees c", "85 degrees celsius", "85c bakery cafe", "85c daily cafe", "85oc"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/85度C": {"name": "85度C", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/85CBakeryCafe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4644852", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "85度C", "brand:en": "85C Bakery Cafe", "brand:wikidata": "Q4644852", "brand:wikipedia": "en:85C Bakery Cafe", "cuisine": "coffee_shop", "name": "85度C", "name:en": "85C Bakery Cafe", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["cn", "tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Aroma Espresso Bar": {"name": "Aroma Espresso Bar", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/Israel.Aroma/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2909872", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Aroma Espresso Bar", "brand:wikidata": "Q2909872", "brand:wikipedia": "en:Aroma Espresso Bar", "cuisine": "coffee_shop", "name": "Aroma Espresso Bar", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ca", "kz", "ro", "ua", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Bakers + Baristas": {"name": "Bakers + Baristas", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/bbsbakersbaristas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q85199581", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Bakers + Baristas", "brand:wikidata": "Q85199581", "cuisine": "coffee_shop", "name": "Bakers + Baristas", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/Bambu": {"name": "Bambu", "icon": "temaki-bubble_tea", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q83437245", "amenity": "cafe", "cuisine": "vietnamese;bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "Bambu", "brand:wikidata": "Q83437245", "cuisine": "vietnamese;bubble_tea", "name": "Bambu", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Barista": {"name": "Barista", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/BaristaCoffeeCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q644735", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Barista", "brand:wikidata": "Q644735", "brand:wikipedia": "en:Barista (company)", "cuisine": "coffee_shop", "name": "Barista", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["in", "lk", "mv", "np"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Beck's Coffee Shop": {"name": "Beck's Coffee Shop", "icon": "temaki-hot_drink_cup", "imageURL": "https://pbs.twimg.com/profile_images/773289632230322180/YtO0yEVy_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11191008", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"alt_name": "ベックス・コーヒーショップ", "amenity": "cafe", "brand": "Beck's Coffee Shop", "brand:wikidata": "Q11191008", "brand:wikipedia": "ja:BECK'S COFFEE SHOP", "cuisine": "coffee_shop", "name": "Beck's Coffee Shop", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": ["beck's coffe shop"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Biggby Coffee": {"name": "Biggby Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/BiggbyCoffee.Bhappy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4906876", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Biggby Coffee", "brand:wikidata": "Q4906876", "brand:wikipedia": "en:Biggby Coffee", "cuisine": "coffee_shop", "name": "Biggby Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Black Rock Coffee": {"name": "Black Rock Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/blackrockcoffeebar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64225934", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Black Rock Coffee", "brand:wikidata": "Q64225934", "cuisine": "coffee_shop", "name": "Black Rock Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Blue Bottle Coffee": {"name": "Blue Bottle Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/bluebottlecoffee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4928917", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Blue Bottle Coffee", "brand:wikidata": "Q4928917", "brand:wikipedia": "en:Blue Bottle Coffee", "cuisine": "coffee_shop", "name": "Blue Bottle Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp", "kr", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Bonafide": {"name": "Bonafide", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/BonafideArgentina/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62122746", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Bonafide", "brand:wikidata": "Q62122746", "cuisine": "coffee_shop", "name": "Bonafide", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ar", "cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Boston Tea Party": {"name": "Boston Tea Party", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/BTPCafes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23461358", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Boston Tea Party", "brand:wikidata": "Q23461358", "brand:wikipedia": "en:Boston Tea Party (café chain)", "cuisine": "coffee_shop", "name": "Boston Tea Party", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Bridgehead": {"name": "Bridgehead", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/BridgeheadCoffeehouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4966509", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Bridgehead", "brand:wikidata": "Q4966509", "brand:wikipedia": "en:Bridgehead Coffee", "cuisine": "coffee_shop", "name": "Bridgehead", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Cafe Coffee Day": {"name": "Cafe Coffee Day", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/cafecoffeeday/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5017235", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Cafe Coffee Day", "brand:wikidata": "Q5017235", "brand:wikipedia": "en:Café Coffee Day", "cuisine": "coffee_shop", "name": "Cafe Coffee Day", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Caffè Nero": {"name": "Caffè Nero", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/caffenerous/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q675808", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Caffè Nero", "brand:wikidata": "Q675808", "brand:wikipedia": "en:Caffè Nero", "cuisine": "coffee_shop", "name": "Caffè Nero", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["gb", "ie", "tr", "us"], "terms": ["cafe nero"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Café Amazon": {"name": "Café Amazon", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/cafeamazonofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q43247503", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Café Amazon", "brand:wikidata": "Q43247503", "brand:wikipedia": "en:Café Amazon", "cuisine": "coffee_shop", "name": "Café Amazon", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Café Dépôt": {"name": "Café Dépôt", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/cafedepot.ca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64924449", "amenity": "cafe", "cuisine": "coffee_shop;cake;bagel;bistro"}, "addTags": {"amenity": "cafe", "brand": "Café Dépôt", "brand:wikidata": "Q64924449", "cuisine": "coffee_shop;cake;bagel;bistro", "name": "Café Dépôt", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Café Martínez": {"name": "Café Martínez", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/CafeMartinezSitioOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16540032", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Café Martínez", "brand:wikidata": "Q16540032", "brand:wikipedia": "es:Café Martínez", "cuisine": "coffee_shop", "name": "Café Martínez", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Caribou Coffee": {"name": "Caribou Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/cariboucoffeeturkiye/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5039494", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Caribou Coffee", "brand:wikidata": "Q5039494", "brand:wikipedia": "en:Caribou Coffee", "cuisine": "coffee_shop", "name": "Caribou Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/Chatime": {"name": "Chatime", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/ChatimeCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16829306", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "Chatime", "brand:en": "Chatime", "brand:wikidata": "Q16829306", "brand:wikipedia": "en:Chatime", "brand:zh": "日出茶太", "cuisine": "bubble_tea", "name": "Chatime", "name:en": "Chatime", "name:zh": "日出茶太", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/CoCo": {"name": "CoCo", "icon": "temaki-bubble_tea", "imageURL": "https://pbs.twimg.com/profile_images/1143629340564963328/C8Axen7r_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64827025", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "CoCo", "brand:wikidata": "Q64827025", "cuisine": "bubble_tea", "name": "Coco", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Coffee Fellows": {"name": "Coffee Fellows", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/CoffeeFellowsDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23461429", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Coffee Fellows", "brand:wikidata": "Q23461429", "brand:wikipedia": "en:Coffee Fellows", "cuisine": "coffee_shop", "name": "Coffee Fellows", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["de", "lu", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Coffee House (Finland)": {"name": "Coffee House (Finland)", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/raflaamo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11855430", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Coffee House", "brand:wikidata": "Q11855430", "brand:wikipedia": "fi:Coffee House", "cuisine": "coffee_shop", "name": "Coffee House", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Coffee Island": {"name": "Coffee Island", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/CoffeeIslandUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60867333", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Coffee Island", "brand:wikidata": "Q60867333", "brand:wikipedia": "en:Coffee Island", "cuisine": "coffee_shop", "name": "Coffee Island", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["cy", "gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Coffee Like": {"name": "Coffee Like", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/coffeelikerus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55662627", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Coffee Like", "brand:wikidata": "Q55662627", "brand:wikipedia": "ru:Coffee Like", "cuisine": "coffee_shop", "name": "Coffee Like", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["kz", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Coffee Time": {"name": "Coffee Time", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/CoffeeTimeCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5140932", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Coffee Time", "brand:wikidata": "Q5140932", "brand:wikipedia": "en:Coffee Time", "cuisine": "coffee_shop", "name": "Coffee Time", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Coffee#1": {"name": "Coffee#1", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/coffeenumber1/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22032058", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Coffee#1", "brand:wikidata": "Q22032058", "brand:wikipedia": "en:Coffee 1", "cuisine": "coffee_shop", "name": "Coffee#1", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["gb"], "terms": ["coffee number 1", "coffee number one"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Coffeeshop Company": {"name": "Coffeeshop Company", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/CoffeeshopCompany.at/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q873767", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Coffeeshop Company", "brand:wikidata": "Q873767", "brand:wikipedia": "en:Coffeeshop Company", "cuisine": "coffee_shop", "name": "Coffeeshop Company", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Cofix": {"name": "Cofix", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/Cofix.co.il/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16132717", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Cofix", "brand:en": "Cofix", "brand:he": "קפויקס", "brand:wikidata": "Q16132717", "brand:wikipedia": "he:קופיקס", "cuisine": "coffee_shop", "name": "Cofix", "name:en": "Cofix", "name:he": "קופיקס", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["il", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Cofizz": {"name": "Cofizz", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/1253496538019194/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64606270", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Cofizz", "brand:en": "Cofizz", "brand:he": "קופיז", "brand:wikidata": "Q64606270", "cuisine": "coffee_shop", "name": "Cofizz", "name:en": "Cofizz", "name:he": "קופיז", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Columbus Café & Co": {"name": "Columbus Café & Co", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/columbuscafeofficielle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2984582", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Columbus Café & Co", "brand:wikidata": "Q2984582", "cuisine": "coffee_shop", "name": "Columbus Café & Co", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["be", "bh", "fr", "ma", "qa", "us"], "terms": ["colombus", "colombus café", "colombus café & co", "columbus", "columbus café"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Costa": {"name": "Costa", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/costacoffee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q608845", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Costa", "brand:wikidata": "Q608845", "brand:wikipedia": "en:Costa Coffee", "cuisine": "coffee_shop", "name": "Costa", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": ["costa coffee"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Country Style": {"name": "Country Style", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/CountryStyleCDN/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5177435", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Country Style", "brand:wikidata": "Q5177435", "brand:wikipedia": "en:Country Style", "cuisine": "coffee_shop", "name": "Country Style", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Cộng Cà Phê": {"name": "Cộng Cà Phê", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/congcaphe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63864181", "amenity": "cafe", "cuisine": "coffee_shop;vietnamese"}, "addTags": {"amenity": "cafe", "brand": "Cộng Cà Phê", "brand:wikidata": "Q63864181", "cuisine": "coffee_shop;vietnamese", "name": "Cộng Cà Phê", "name:vi": "Cộng Cà Phê", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["kr", "vn"], "terms": ["cong"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Dutch Bros. Coffee": {"name": "Dutch Bros. Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/dutchbros/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5317253", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Dutch Bros. Coffee", "brand:wikidata": "Q5317253", "brand:wikipedia": "en:Dutch Bros. Coffee", "cuisine": "coffee_shop", "name": "Dutch Bros. Coffee", "takeaway": "only"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["us"], "terms": ["dutch bros", "dutch brothers"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Espresso House": {"name": "Espresso House", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/196870344516819/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10489162", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Espresso House", "brand:wikidata": "Q10489162", "brand:wikipedia": "en:Espresso House", "cuisine": "coffee_shop", "name": "Espresso House", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["dk", "fi", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Fran's Café": {"name": "Fran's Café", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/franscafeoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62075645", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Fran's Café", "brand:wikidata": "Q62075645", "cuisine": "coffee_shop", "name": "Fran's Café", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Gloria Jean's": {"name": "Gloria Jean's", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/gloriajeanscoffeesAUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2666365", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Gloria Jean's", "brand:wikidata": "Q2666365", "brand:wikipedia": "en:Gloria Jean's Coffees", "cuisine": "coffee_shop", "name": "Gloria Jean's", "official_name": "Gloria Jean's Coffees", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/Gong Cha (Vietnam)": {"name": "Gong Cha (Vietnam)", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/GongChaTaiwan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5581670", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"alt_name:vi": "Cống Trà", "amenity": "cafe", "brand": "Gong Cha", "brand:vi": "Gong Cha", "brand:wikidata": "Q5581670", "brand:wikipedia": "vi:Gong Cha", "brand:zh": "貢茶", "cuisine": "bubble_tea", "name": "Gong Cha", "name:vi": "Gong Cha", "name:zh": "貢茶", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/Gong Cha (worldwide)": {"name": "Gong Cha (worldwide)", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/GongChaTaiwan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5581670", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "Gong Cha", "brand:wikidata": "Q5581670", "brand:wikipedia": "en:Gong Cha", "brand:zh": "貢茶", "cuisine": "bubble_tea", "int_name": "Gong Cha", "name": "Gong Cha", "name:zh": "貢茶", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["au", "bn", "ca", "mm", "mo", "my", "nz", "ph", "sg", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Havanna": {"name": "Havanna", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/havannaargentina/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2900869", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Havanna", "brand:wikidata": "Q2900869", "brand:wikipedia": "es:Havanna", "cuisine": "coffee_shop", "name": "Havanna", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ar", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Highlands Coffee": {"name": "Highlands Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/highlandscoffeevietnam/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5759361", "amenity": "cafe", "cuisine": "coffee_shop;vietnamese"}, "addTags": {"amenity": "cafe", "brand": "Highlands Coffee", "brand:wikidata": "Q5759361", "brand:wikipedia": "vi:Highlands Coffee", "cuisine": "coffee_shop;vietnamese", "name": "Highlands Coffee", "name:en": "Highlands Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["vn"], "terms": ["highlands"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Hudsons Coffee": {"name": "Hudsons Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/HudsonsCoffee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5929076", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Hudsons Coffee", "brand:wikidata": "Q5929076", "brand:wikipedia": "en:Hudsons Coffee", "cuisine": "coffee_shop", "name": "Hudsons Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["au", "sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Insomnia": {"name": "Insomnia", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/InsomniaCoffeeCo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6038271", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Insomnia", "brand:wikidata": "Q6038271", "brand:wikipedia": "en:Insomnia Coffee Company", "cuisine": "coffee_shop", "name": "Insomnia", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Jamaica Blue": {"name": "Jamaica Blue", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/JamaicaBlueCafes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24965819", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Jamaica Blue", "brand:wikidata": "Q24965819", "brand:wikipedia": "en:Jamaica Blue", "cuisine": "coffee_shop", "name": "Jamaica Blue", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ae", "au", "cn", "gb", "my", "nz", "sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Joe & The Juice": {"name": "Joe & The Juice", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/joeandthejuice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26221514", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Joe & The Juice", "brand:wikidata": "Q26221514", "brand:wikipedia": "en:Joe & The Juice", "cuisine": "coffee_shop", "name": "Joe & The Juice", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/La Colombe Coffee Roasters": {"name": "La Colombe Coffee Roasters", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/lacolombecoffee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23461663", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "La Colombe Coffee Roasters", "brand:wikidata": "Q23461663", "brand:wikipedia": "en:La Colombe Coffee Roasters", "cuisine": "coffee_shop", "name": "La Colombe Coffee Roasters", "short_name": "La Colombe", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Le Pain Quotidien": {"name": "Le Pain Quotidien", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/lepainquotidienusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2046903", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Le Pain Quotidien", "brand:wikidata": "Q2046903", "brand:wikipedia": "en:Le Pain Quotidien", "cuisine": "coffee_shop", "name": "Le Pain Quotidien", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Mado": {"name": "Mado", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/MADOglobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17116336", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Mado", "brand:wikidata": "Q17116336", "brand:wikipedia": "en:Mado (food company)", "cuisine": "coffee_shop", "name": "Mado", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/McCafé": {"name": "McCafé", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/276517512552782/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3114287", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "McCafé", "brand:wikidata": "Q3114287", "brand:wikipedia": "en:McCafé", "cuisine": "coffee_shop", "name": "McCafé", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Michel's Patisserie": {"name": "Michel's Patisserie", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/MichelsCoffee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6836235", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Michel's Patisserie", "brand:wikidata": "Q6836235", "brand:wikipedia": "en:Michel's Patisserie", "cuisine": "coffee_shop", "name": "Michel's Patisserie", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["au", "cn", "id", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Mikel": {"name": "Mikel", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/MikelCoffeeCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16952021", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Mikel", "brand:wikidata": "Q16952021", "brand:wikipedia": "el:Mikel", "cuisine": "coffee_shop", "name": "Mikel", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ae", "au", "cy", "de", "eg", "gb", "gr", "sa", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Muffin Break": {"name": "Muffin Break", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/MuffinBreakUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16964876", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Muffin Break", "brand:wikidata": "Q16964876", "brand:wikipedia": "en:Muffin Break", "cuisine": "coffee_shop", "name": "Muffin Break", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["au", "gb", "in", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Muzz Buzz": {"name": "Muzz Buzz", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/MuzzBuzzAus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6944483", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Muzz Buzz", "brand:wikidata": "Q6944483", "brand:wikipedia": "en:Muzz Buzz", "cuisine": "coffee_shop", "name": "Muzz Buzz", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Patisserie Valerie": {"name": "Patisserie Valerie", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/patisserievalerie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22101966", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Patisserie Valerie", "brand:wikidata": "Q22101966", "brand:wikipedia": "en:Patisserie Valerie", "cuisine": "coffee_shop", "name": "Patisserie Valerie", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Peet's Coffee": {"name": "Peet's Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/peets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1094101", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Peet's Coffee", "brand:wikidata": "Q1094101", "brand:wikipedia": "en:Peet's Coffee", "cuisine": "coffee_shop", "name": "Peet's Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["us"], "terms": ["peets", "peets coffee & tea"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Pie Face": {"name": "Pie Face", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/piefaceaus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18166370", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Pie Face", "brand:wikidata": "Q18166370", "brand:wikipedia": "en:Pie Face", "cuisine": "coffee_shop", "name": "Pie Face", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Prime": {"name": "Prime", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/PRIMENATURALFOOD/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62122839", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Prime", "brand:wikidata": "Q62122839", "cuisine": "coffee_shop", "name": "Prime", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Pronto": {"name": "Pronto", "icon": "temaki-hot_drink_cup", "imageURL": "https://pbs.twimg.com/profile_images/1002458417733120000/lQc9dDWQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11336224", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Pronto", "brand:wikidata": "Q11336224", "brand:wikipedia": "ja:プロントコーポレーション", "cuisine": "coffee_shop", "name": "Pronto", "name:ja": "プロント", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": ["プロント"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Pumpkin": {"name": "Pumpkin", "icon": "temaki-hot_drink_cup", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27825961", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Pumpkin", "brand:wikidata": "Q27825961", "brand:wikipedia": "en:Pumpkin Café Shop", "cuisine": "coffee_shop", "name": "Pumpkin", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["gb"], "terms": ["pumpkin cafe", "pumpkin cafe shop"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/Quickly": {"name": "Quickly", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/quicklyphilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3771463", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "Quickly", "brand:en": "Quickly", "brand:wikidata": "Q3771463", "brand:wikipedia": "en:Quickly", "brand:zh": "快可立", "cuisine": "bubble_tea", "name": "Quickly", "name:en": "Quickly", "name:zh": "快可立", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Second Cup": {"name": "Second Cup", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/SecondCup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q862180", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Second Cup", "brand:wikidata": "Q862180", "brand:wikipedia": "en:Second Cup", "cuisine": "coffee_shop", "name": "Second Cup", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Segafredo": {"name": "Segafredo", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/SegafredoZanettiItalia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21282762", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Segafredo", "brand:wikidata": "Q21282762", "brand:wikipedia": "it:Segafredo Zanetti", "cuisine": "coffee_shop", "name": "Segafredo", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/Sharetea": {"name": "Sharetea", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/shareteaglobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64827032", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "Sharetea", "brand:wikidata": "Q64827032", "cuisine": "bubble_tea", "name": "Sharetea", "name:en": "Sharetea", "name:zh": "歇腳亭", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["au", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Starbucks": {"name": "Starbucks", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q37158", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "en:Starbucks", "cuisine": "coffee_shop", "name": "Starbucks", "official_name": "Starbucks Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/The Coffee Bean & Tea Leaf": {"name": "The Coffee Bean & Tea Leaf", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/thecoffeebean/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1141384", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "The Coffee Bean & Tea Leaf", "brand:wikidata": "Q1141384", "brand:wikipedia": "en:The Coffee Bean & Tea Leaf", "cuisine": "coffee_shop", "name": "The Coffee Bean & Tea Leaf", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/The Coffee Club": {"name": "The Coffee Club", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/tccau/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7726599", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "The Coffee Club", "brand:wikidata": "Q7726599", "brand:wikipedia": "en:The Coffee Club", "cuisine": "coffee_shop", "name": "The Coffee Club", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/The Coffee House (Vietnam)": {"name": "The Coffee House (Vietnam)", "icon": "temaki-hot_drink_cup", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FThe%20Coffee%20House%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60775742", "amenity": "cafe", "cuisine": "coffee_shop;vietnamese"}, "addTags": {"amenity": "cafe", "brand": "The Coffee House", "brand:wikidata": "Q60775742", "brand:wikipedia": "en:The Coffee House (coffeehouse chain)", "cuisine": "coffee_shop;vietnamese", "name": "The Coffee House", "name:en": "The Coffee House", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["vn"], "terms": ["coffee house"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/The Human Bean": {"name": "The Human Bean", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/HumanBeanNoCo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7740821", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "The Human Bean", "brand:wikidata": "Q7740821", "brand:wikipedia": "en:The Human Bean", "cuisine": "coffee_shop", "name": "The Human Bean", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["us"], "terms": ["human bean"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Tim Hortons": {"name": "Tim Hortons", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/TimHortonsUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q175106", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Tim Hortons", "brand:wikidata": "Q175106", "brand:wikipedia": "en:Tim Hortons", "cuisine": "coffee_shop", "name": "Tim Hortons", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Timothy's": {"name": "Timothy's", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/TimothysCafes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7807011", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Timothy's", "brand:wikidata": "Q7807011", "brand:wikipedia": "en:Timothy's World Coffee", "cuisine": "coffee_shop", "name": "Timothy's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Tostao’": {"name": "Tostao’", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/tostaocafeypan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60632476", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Tostao’", "brand:wikidata": "Q60632476", "cuisine": "coffee_shop", "name": "Tostao’", "name:es": "Tostao’", "official_name": "TOSTAO’ Café & Pan", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Traveler's Coffee": {"name": "Traveler's Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/TravelersCoffeeMoscow/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4051716", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Traveler's Coffee", "brand:wikidata": "Q4051716", "brand:wikipedia": "ru:Traveler’s Coffee", "cuisine": "coffee_shop", "name": "Traveler's Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Trung Nguyên Coffee": {"name": "Trung Nguyên Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/trungnguyenlegend/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3541154", "amenity": "cafe", "cuisine": "coffee_shop;vietnamese"}, "addTags": {"amenity": "cafe", "brand": "Trung Nguyên", "brand:wikidata": "Q3541154", "brand:wikipedia": "vi:Trung Nguyên (công ty)", "cuisine": "coffee_shop;vietnamese", "name": "Trung Nguyên Coffee", "name:en": "Trung Nguyen Coffee", "name:vi": "Cà phê Trung Nguyên", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["vn"], "terms": ["trung nguyen"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Wayne's Coffee": {"name": "Wayne's Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/WaynesCoffeeInternational/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2637272", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Wayne's Coffee", "brand:wikidata": "Q2637272", "brand:wikipedia": "en:Wayne's Coffee", "cuisine": "coffee_shop", "name": "Wayne's Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["fi", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Wild Bean Cafe": {"name": "Wild Bean Cafe", "icon": "temaki-hot_drink_cup", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61804826", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Wild Bean Cafe", "brand:wikidata": "Q61804826", "cuisine": "coffee_shop", "name": "Wild Bean Cafe", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Ya Kun Kaya Toast": {"name": "Ya Kun Kaya Toast", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/yakunkayatoastsg/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8046237", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Ya Kun Kaya Toast", "brand:wikidata": "Q8046237", "brand:wikipedia": "en:Ya Kun Kaya Toast", "cuisine": "coffee_shop", "name": "Ya Kun Kaya Toast", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Zarraffa's Coffee": {"name": "Zarraffa's Coffee", "icon": "temaki-hot_drink_cup", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCffee.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8066878", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Zarraffa's Coffee ", "brand:wikidata": "Q8066878", "brand:wikipedia": "en:Zarraffa's Coffee", "cuisine": "coffee_shop", "name": "Zarraffa's Coffee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Даблби": {"name": "Даблби", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/DoubleBCoffeeTea/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62501686", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Даблби", "brand:en": "Double B", "brand:wikidata": "Q62501686", "cuisine": "coffee_shop", "name": "Даблби", "name:en": "Double B", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Старбакс": {"name": "Старбакс", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q37158", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Старбакс", "brand:en": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "en:Starbucks", "cuisine": "coffee_shop", "name": "Старбакс", "name:en": "Starbucks", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Шоколадница": {"name": "Шоколадница", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/shoko.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30891188", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Шоколадница", "brand:en": "Chocolate", "brand:wikidata": "Q30891188", "brand:wikipedia": "ru:Шоколадница (сеть кофеен)", "cuisine": "coffee_shop", "name": "Шоколадница", "name:en": "Shokoladnitsa", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["ru"], "terms": ["шоколад"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/Штолле": {"name": "Штолле", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/stollerussia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62502236", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "Штолле", "brand:en": "Stolle", "brand:wikidata": "Q62502236", "cuisine": "coffee_shop", "name": "Штолле", "name:en": "Stolle", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["by", "ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/ארומה": {"name": "ארומה", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/Israel.Aroma/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2909872", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "ארומה", "brand:en": "Aroma Espresso Bar", "brand:he": "ארומה", "brand:wikidata": "Q2909872", "brand:wikipedia": "en:Aroma Espresso Bar", "cuisine": "coffee_shop", "name": "ארומה", "name:en": "Aroma Espresso Bar", "name:he": "ארומה", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/לנדוור": {"name": "לנדוור", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/cafelandwer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6485288", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "קפה לנדוור", "brand:en": "Landwer Coffee", "brand:he": "קפה לנדוור", "brand:wikidata": "Q6485288", "brand:wikipedia": "he:קפה לנדוור", "cuisine": "coffee_shop", "name": "לנדוור", "name:en": "Landwer", "name:he": "לנדוור", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["il"], "terms": ["קפה לדנוור"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/סי קפה": {"name": "סי קפה", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/242590255775924/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64606227", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"alt_name": "סי אספרסו", "alt_name:en": "Si Espresso", "alt_name:he": "סי אספרסו", "amenity": "cafe", "brand": "סי קפה", "brand:en": "Si Cafe", "brand:he": "סי קפה", "brand:wikidata": "Q64606227", "cuisine": "coffee_shop", "name": "סי קפה", "name:en": "Si Cafe", "name:he": "סי קפה", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["il"], "terms": ["si cafe", "si espresso"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/קפה ג'ו": {"name": "קפה ג'ו", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/cafejoe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6774425", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"alt_name": "קפה Joe", "amenity": "cafe", "brand": "קפה ג'ו", "brand:en": "Cafe Joe", "brand:he": "קפה ג'ו", "brand:wikidata": "Q6774425", "brand:wikipedia": "he:קפה ג'ו", "cuisine": "coffee_shop", "name": "קפה ג'ו", "name:en": "Cafe Joe", "name:he": "קפה ג'ו", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["il"], "terms": ["ג'ו קפה"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/קפה גרג": {"name": "קפה גרג", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/gregcafe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q43295499", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "קפה גרג", "brand:en": "Greg Cafe", "brand:he": "קפה גרג", "brand:wikidata": "Q43295499", "brand:wikipedia": "he:קפה גרג", "cuisine": "coffee_shop", "name": "קפה גרג", "name:en": "Greg Cafe", "name:he": "קפה גרג", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/קפה נמרוד": {"name": "קפה נמרוד", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/cafenimrod/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64606192", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "קפה נמרוד", "brand:en": "Cafe Nimrod", "brand:he": "קפה נמרוד", "brand:wikidata": "Q64606192", "cuisine": "coffee_shop", "name": "קפה נמרוד", "name:en": "Cafe Nimrod", "name:he": "קפה נמרוד", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/קפה קפה": {"name": "קפה קפה", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/cafe.cafe.il/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5017233", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "קפה קפה", "brand:en": "Cafe Cafe", "brand:he": "קפה קפה", "brand:wikidata": "Q5017233", "brand:wikipedia": "he:קפה קפה", "cuisine": "coffee_shop", "name": "קפה קפה", "name:en": "Cafe Cafe", "name:he": "קפה קפה", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/רולדין": {"name": "רולדין", "icon": "temaki-hot_drink_cup", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18390972", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "רולדין", "brand:en": "Roladin", "brand:he": "רולדין", "brand:wikidata": "Q18390972", "brand:wikipedia": "he:רולדין", "cuisine": "coffee_shop", "name": "רולדין", "name:en": "Roladin", "name:he": "רולדין", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/คาเฟ่ อเมซอน": {"name": "คาเฟ่ อเมซอน", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/cafeamazonofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q43247503", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "คาเฟ่ อเมซอน", "brand:en": "Café Amazon", "brand:th": "คาเฟ่ อเมซอน", "brand:wikidata": "Q43247503", "brand:wikipedia": "en:Café Amazon", "cuisine": "coffee_shop", "name": "คาเฟ่ อเมซอน", "name:en": "Café Amazon", "name:th": "คาเฟ่ อเมซอน", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/エクセルシオール カフェ": {"name": "エクセルシオール カフェ", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/ExcelsiorCaffe.1999/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11289828", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "エクセルシオール カフェ", "brand:en": "EXCELSIOR CAFFÉ", "brand:ja": "エクセルシオール カフェ", "brand:wikidata": "Q11289828", "brand:wikipedia": "ja:エクセルシオール カフェ", "cuisine": "coffee_shop", "name": "エクセルシオール カフェ", "name:ja": "エクセルシオール カフェ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/カフェ・ド・クリエ": {"name": "カフェ・ド・クリエ", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/pokkacreate/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17219077", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "カフェ・ド・クリエ", "brand:en": "Cafe de CRIE", "brand:ja": "カフェ・ド・クリエ", "brand:wikidata": "Q17219077", "brand:wikipedia": "ja:ポッカクリエイト", "cuisine": "coffee_shop", "name": "カフェ・ド・クリエ", "name:en": "Cafe de CRIE", "name:ja": "カフェ・ド・クリエ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/カフェ・ベローチェ": {"name": "カフェ・ベローチェ", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/ChatnoirCo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11294597", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "カフェ・ベローチェ", "brand:en": "CAFFÈ VELOCE", "brand:ja": "カフェ・ベローチェ", "brand:wikidata": "Q11294597", "brand:wikipedia": "ja:カフェ・ベローチェ", "cuisine": "coffee_shop", "name": "カフェ・ベローチェ", "name:en": "CAFFÈ VELOCE", "name:ja": "カフェ・ベローチェ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/コメダ珈琲店": {"name": "コメダ珈琲店", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/komeda.coffee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11302679", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "コメダ珈琲店", "brand:en": "Komeda Coffee Shop", "brand:ja": "コメダ珈琲店", "brand:wikidata": "Q11302679", "brand:wikipedia": "ja:コメダ", "cuisine": "coffee_shop", "name": "コメダ珈琲店", "name:en": "Komeda Coffee Shop", "name:ja": "コメダ珈琲店", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/サンマルクカフェ": {"name": "サンマルクカフェ", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/saintmarccafephilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11305989", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"alt_name:en": "Saint Marc Café", "amenity": "cafe", "brand": "サンマルクカフェ", "brand:en": "ST.MARC CAFÉ", "brand:ja": "サンマルクカフェ", "brand:wikidata": "Q11305989", "brand:wikipedia": "ja:サンマルクホールディングス", "cuisine": "coffee_shop", "name": "サンマルクカフェ", "name:en": "ST.MARC CAFÉ", "name:ja": "サンマルクカフェ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/スターバックス": {"name": "スターバックス", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q37158", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "スターバックス", "brand:en": "Starbucks", "brand:ja": "スターバックス", "brand:wikidata": "Q37158", "brand:wikipedia": "ja:スターバックス", "cuisine": "coffee_shop", "name": "スターバックス", "name:en": "Starbucks", "name:ja": "スターバックス", "official_name": "スターバックスコーヒー", "official_name:en": "Starbucks Coffee", "official_name:ja": "スターバックスコーヒー", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/タリーズコーヒー": {"name": "タリーズコーヒー", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/TullysCoffeeShops/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3541983", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "タリーズコーヒー", "brand:en": "Tully's Coffee", "brand:ja": "タリーズコーヒー", "brand:wikidata": "Q3541983", "brand:wikipedia": "en:Tully's Coffee", "cuisine": "coffee_shop", "name": "タリーズコーヒー", "name:en": "Tully's Coffee", "name:ja": "タリーズコーヒー", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/ドトールコーヒーショップ": {"name": "ドトールコーヒーショップ", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/Fun.Doutor.Fan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11322732", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "ドトールコーヒーショップ", "brand:en": "Doutor", "brand:ja": "ドトールコーヒーショップ", "brand:wikidata": "Q11322732", "brand:wikipedia": "ja:ドトールコーヒーショップ", "cuisine": "coffee_shop", "name": "ドトールコーヒーショップ", "name:en": "Doutor Coffee Shop", "name:ja": "ドトールコーヒーショップ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": ["ドトールコーヒー"], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/ルノアール": {"name": "ルノアール", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/CoffeeRoomRenoir/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11649991", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "ルノアール", "brand:en": "Renoir", "brand:ja": "ルノアール", "brand:wikidata": "Q11649991", "brand:wikipedia": "ja:銀座ルノアール", "cuisine": "coffee_shop", "name": "ルノアール", "name:en": "Renoir", "name:ja": "ルノアール", "official_name": "喫茶室ルノアール", "official_name:en": "Ginza Renoir", "official_name:ja": "喫茶室ルノアール", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/快可立": {"name": "快可立", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/quicklyphilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3771463", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "快可立", "brand:en": "Quickly", "brand:wikidata": "Q3771463", "brand:wikipedia": "zh:快可立", "brand:zh": "快可立", "cuisine": "bubble_tea", "name": "快可立", "name:en": "Quickly", "name:zh": "快可立", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/日出茶太": {"name": "日出茶太", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/ChatimeCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16829306", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "日出茶太", "brand:en": "Chatime", "brand:wikidata": "Q16829306", "brand:wikipedia": "zh:日出茶太", "brand:zh": "日出茶太", "cuisine": "bubble_tea", "name": "日出茶太", "name:en": "Chatime", "name:zh": "日出茶太", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/星乃珈琲店": {"name": "星乃珈琲店", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/hoshinocoffee.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88396880", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "星乃珈琲店", "brand:en": "Hoshino Coffee", "brand:ja": "星乃珈琲店", "brand:wikidata": "Q88396880", "cuisine": "coffee_shop", "name": "星乃珈琲店", "name:en": "Hoshino Coffee", "name:ja": "星乃珈琲店", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/星巴克": {"name": "星巴克", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q37158", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "星巴克", "brand:en": "Starbucks", "brand:wikidata": "Q37158", "brand:wikipedia": "zh:星巴克", "brand:zh": "星巴克", "cuisine": "coffee_shop", "name": "星巴克", "name:en": "Starbucks", "name:zh": "星巴克", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["cn", "tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/珈琲館": {"name": "珈琲館", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/kohikancorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11573290", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "珈琲館", "brand:en": "Kohikan", "brand:ja": "珈琲館", "brand:wikidata": "Q11573290", "brand:wikipedia": "ja:珈琲館", "cuisine": "coffee_shop", "name": "珈琲館", "name:en": "Kohikan", "name:ja": "珈琲館", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/貢茶 Gong Cha": {"name": "貢茶 Gong Cha", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/GongChaTaiwan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5581670", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "貢茶 Gong Cha", "brand:en": "Gong Cha", "brand:wikidata": "Q5581670", "brand:wikipedia": "zh:貢茶 (連鎖店)", "brand:zh": "貢茶", "cuisine": "bubble_tea", "name": "貢茶 Gong Cha", "name:en": "Gong Cha", "name:zh": "貢茶", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["hk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/貢茶 (Japan)": {"name": "貢茶 (Japan)", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/GongChaTaiwan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5581670", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "貢茶", "brand:ja": "貢茶", "brand:wikidata": "Q5581670", "brand:wikipedia": "ja:貢茶", "brand:zh": "貢茶", "cuisine": "bubble_tea", "int_name": "Gong Cha", "name": "貢茶", "name:ja": "貢茶", "name:zh": "貢茶", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/貢茶 (Taiwan)": {"name": "貢茶 (Taiwan)", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/GongChaTaiwan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5581670", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "貢茶", "brand:wikidata": "Q5581670", "brand:wikipedia": "zh:貢茶 (連鎖店)", "cuisine": "bubble_tea", "int_name": "Gong Cha", "name": "貢茶", "name:zh": "貢茶", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/贡茶 (China)": {"name": "贡茶 (China)", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/GongChaTaiwan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5581670", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "贡茶", "brand:wikidata": "Q5581670", "brand:wikipedia": "zh:贡茶 (连锁店)", "brand:zh-Hans": "贡茶", "brand:zh-Hant": "貢茶", "cuisine": "bubble_tea", "int_name": "Gong Cha", "name": "贡茶", "name:zh-Hans": "贡茶", "name:zh-Hant": "貢茶", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/路易莎咖啡": {"name": "路易莎咖啡", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/louisacoffeeofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q67933328", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "路易莎咖啡", "brand:en": "Louisa Coffee", "brand:wikidata": "Q67933328", "brand:wikipedia": "zh:路易莎咖啡", "brand:zh": "路易莎咖啡", "cuisine": "coffee_shop", "name": "路易莎咖啡", "name:en": "Louisa Coffee", "name:zh": "路易莎咖啡", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/bubble_tea/공차": {"name": "공차", "icon": "temaki-bubble_tea", "imageURL": "https://graph.facebook.com/GongChaTaiwan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5581670", "amenity": "cafe", "cuisine": "bubble_tea"}, "addTags": {"amenity": "cafe", "brand": "공차", "brand:ko": "공차", "brand:wikidata": "Q5581670", "brand:wikipedia": "ko:공차", "brand:zh": "貢茶", "cuisine": "bubble_tea", "int_name": "Gong Cha", "name": "공차", "name:ko": "공차", "name:zh": "貢茶", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "bubble_tea"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cafe/coffee_shop/스타벅스": {"name": "스타벅스", "icon": "temaki-hot_drink_cup", "imageURL": "https://graph.facebook.com/Starbucks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q37158", "amenity": "cafe", "cuisine": "coffee_shop"}, "addTags": {"amenity": "cafe", "brand": "스타벅스", "brand:en": "Starbucks", "brand:ko": "스타벅스", "brand:wikidata": "Q37158", "brand:wikipedia": "ko:스타벅스", "cuisine": "coffee_shop", "name": "스타벅스", "name:en": "Starbucks", "name:ko": "스타벅스", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "coffee_shop"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Alamo": {"name": "Alamo", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/AlamoRentACar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1429287", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "Alamo", "brand:wikidata": "Q1429287", "brand:wikipedia": "en:Alamo Rent a Car", "name": "Alamo"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Avis": {"name": "Avis", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/avis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q791136", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "Avis", "brand:wikidata": "Q791136", "brand:wikipedia": "en:Avis Car Rental", "name": "Avis"}, "terms": ["avis car rental"], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Budget": {"name": "Budget", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/Budget/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1001437", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "Budget", "brand:wikidata": "Q1001437", "brand:wikipedia": "en:Budget Rent a Car", "name": "Budget", "official_name": "Budget Rent a Car"}, "terms": ["budget car rental"], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Dollar": {"name": "Dollar", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/DollarCarRental/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1235661", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "Dollar", "brand:wikidata": "Q1235661", "brand:wikipedia": "en:Dollar Rent A Car", "name": "Dollar", "official_name": "Dollar Rent A Car"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Enterprise": {"name": "Enterprise", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/Enterprise/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17085454", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "Enterprise", "brand:wikidata": "Q17085454", "brand:wikipedia": "en:Enterprise Rent-A-Car", "name": "Enterprise", "official_name": "Enterprise Rent-A-Car"}, "terms": ["enterprise car rental"], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Europcar": {"name": "Europcar", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/europcar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1376256", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "Europcar", "brand:wikidata": "Q1376256", "brand:wikipedia": "en:Europcar", "name": "Europcar"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Hertz": {"name": "Hertz", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/hertz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1543874", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "Hertz", "brand:wikidata": "Q1543874", "brand:wikipedia": "en:The Hertz Corporation", "name": "Hertz"}, "terms": ["hertz car rental"], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Localiza": {"name": "Localiza", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/localizahertz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10319490", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "Localiza", "brand:wikidata": "Q10319490", "brand:wikipedia": "en:Localiza", "name": "Localiza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/National": {"name": "National", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/NationalCarRental/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1424142", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "National", "brand:wikidata": "Q1424142", "brand:wikipedia": "en:National Car Rental", "name": "National", "official_name": "National Car Rental"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Sixt": {"name": "Sixt", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/sixt.rentacar.usa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q705664", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "Sixt", "brand:wikidata": "Q705664", "brand:wikipedia": "en:Sixt", "name": "Sixt"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/Thrifty": {"name": "Thrifty", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/ThriftyCarRental/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2429546", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "Thrifty", "brand:wikidata": "Q2429546", "brand:wikipedia": "en:Thrifty Car Rental", "name": "Thrifty"}, "terms": ["thrifty car rental"], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/オリックスレンタカー": {"name": "オリックスレンタカー", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/227957351080226/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11123021", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "オリックスレンタカー", "brand:en": "ORIX Car Rental", "brand:ja": "オリックスレンタカー", "brand:wikidata": "Q11123021", "brand:wikipedia": "ja:オリックスレンタカー", "name": "オリックスレンタカー", "name:en": "ORIX Car Rental", "name:ja": "オリックスレンタカー"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/トヨタレンタカー": {"name": "トヨタレンタカー", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/rentacarjapan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11321580", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "トヨタレンタカー", "brand:en": "Toyota Rental Car", "brand:ja": "トヨタレンタカー", "brand:wikidata": "Q11321580", "brand:wikipedia": "ja:トヨタレンタリース", "name": "トヨタレンタカー", "name:en": "Toyota Rental Car", "name:ja": "トヨタレンタカー"}, "countryCodes": ["jp"], "terms": ["トヨタレンタリース"], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/ニッポンレンタカー": {"name": "ニッポンレンタカー", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/115494788561573/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11086533", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "ニッポンレンタカー", "brand:en": "Nippon Car Rental", "brand:ja": "ニッポンレンタカー", "brand:wikidata": "Q11086533", "brand:wikipedia": "ja:ニッポンレンタカー", "name": "ニッポンレンタカー", "name:en": "Nippon Car Rental", "name:ja": "ニッポンレンタカー"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_rental/日産レンタカー": {"name": "日産レンタカー", "icon": "maki-car-rental", "imageURL": "https://graph.facebook.com/231926140196841/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11086838", "amenity": "car_rental"}, "addTags": {"amenity": "car_rental", "brand": "日産レンタカー", "brand:en": "Nissan Car Rental", "brand:ja": "日産レンタカー", "brand:wikidata": "Q11086838", "brand:wikipedia": "ja:日産レンタカー", "name": "日産レンタカー", "name:en": "Nissan Car Rental", "name:ja": "日産レンタカー"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_sharing/Bluely": {"name": "Bluely", "icon": "temaki-sign_and_car", "imageURL": "https://graph.facebook.com/bluely.eu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16039715", "amenity": "car_sharing"}, "addTags": {"amenity": "car_sharing", "brand": "Bluely", "brand:wikidata": "Q16039715", "brand:wikipedia": "fr:Bluely", "name": "Bluely"}, "countryCodes": ["fr"], "terms": ["station bluely"], "matchScore": 2, "suggestion": true}, - "amenity/car_sharing/Enterprise Car Club": {"name": "Enterprise Car Club", "icon": "temaki-sign_and_car", "imageURL": "https://graph.facebook.com/EnterpriseCarClub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5123055", "amenity": "car_sharing"}, "addTags": {"amenity": "car_sharing", "brand": "Enterprise Car Club", "brand:wikidata": "Q5123055", "brand:wikipedia": "en:Enterprise Car Club", "name": "Enterprise Car Club"}, "countryCodes": ["gb"], "terms": ["city car club"], "matchScore": 2, "suggestion": true}, - "amenity/car_sharing/Greenwheels": {"name": "Greenwheels", "icon": "temaki-sign_and_car", "imageURL": "https://graph.facebook.com/Greenwheels.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q316782", "amenity": "car_sharing"}, "addTags": {"amenity": "car_sharing", "brand": "Greenwheels", "brand:wikidata": "Q316782", "brand:wikipedia": "en:Greenwheels", "name": "Greenwheels"}, "countryCodes": ["de", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_sharing/Zipcar": {"name": "Zipcar", "icon": "temaki-sign_and_car", "imageURL": "https://graph.facebook.com/zipcar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1069924", "amenity": "car_sharing"}, "addTags": {"amenity": "car_sharing", "brand": "Zipcar", "brand:wikidata": "Q1069924", "brand:wikipedia": "en:Zipcar", "name": "Zipcar"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_sharing/stadtmobil": {"name": "stadtmobil", "icon": "temaki-sign_and_car", "imageURL": "https://graph.facebook.com/stadtmobil.stuttgart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2327629", "amenity": "car_sharing"}, "addTags": {"amenity": "car_sharing", "brand": "stadtmobil", "brand:wikidata": "Q2327629", "brand:wikipedia": "en:Stadtmobil", "name": "stadtmobil"}, "countryCodes": ["de"], "terms": ["stadtmobil carsharing-station"], "matchScore": 2, "suggestion": true}, - "amenity/car_sharing/teilAuto": {"name": "teilAuto", "icon": "temaki-sign_and_car", "imageURL": "https://graph.facebook.com/teilauto/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2400658", "amenity": "car_sharing"}, "addTags": {"amenity": "car_sharing", "brand": "teilAuto", "brand:wikidata": "Q2400658", "brand:wikipedia": "de:TeilAuto", "name": "teilAuto"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_sharing/タイムズカーシェア": {"name": "タイムズカーシェア", "icon": "temaki-sign_and_car", "imageURL": "https://graph.facebook.com/timescar.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17987881", "amenity": "car_sharing"}, "addTags": {"amenity": "car_sharing", "brand": "タイムズカーシェア", "brand:en": "Times Car Share", "brand:ja": "タイムズカーシェア", "brand:wikidata": "Q17987881", "brand:wikipedia": "ja:タイムズカーシェア", "name": "タイムズカーシェア", "name:en": "Times Car Share", "name:ja": "タイムズカーシェア"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_wash/IMO Car Wash": {"name": "IMO Car Wash", "icon": "temaki-car_wash", "imageURL": "https://graph.facebook.com/IMOcarwash/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81802686", "amenity": "car_wash"}, "addTags": {"amenity": "car_wash", "brand": "IMO Car Wash", "brand:wikidata": "Q81802686", "name": "IMO Car Wash"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/car_wash/Waves": {"name": "Waves", "icon": "temaki-car_wash", "imageURL": "https://graph.facebook.com/WavesCarWashLtd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81802122", "amenity": "car_wash"}, "addTags": {"amenity": "car_wash", "brand": "Waves", "brand:wikidata": "Q81802122", "name": "Waves"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/casino/Codere": {"name": "Codere", "icon": "maki-casino", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCodere%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2918415", "amenity": "casino"}, "addTags": {"amenity": "casino", "brand": "Codere", "brand:wikidata": "Q2918415", "brand:wikipedia": "es:Codere", "name": "Codere"}, "countryCodes": ["ar", "co", "es", "it", "mx", "pa", "uy"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/casino/Luckia": {"name": "Luckia", "icon": "maki-casino", "imageURL": "https://pbs.twimg.com/profile_images/1186190309409148929/ySzAHaqd_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q42304308", "amenity": "casino"}, "addTags": {"amenity": "casino", "brand": "Luckia", "brand:wikidata": "Q42304308", "brand:wikipedia": "es:Luckia", "name": "Luckia"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/Blink": {"name": "Blink", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/blinkcharging/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q62065645", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "Blink", "brand:wikidata": "Q62065645", "name": "Blink"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/ChargePoint": {"name": "ChargePoint", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/ChargePoint/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q5176149", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "ChargePoint", "brand:wikidata": "Q5176149", "brand:wikipedia": "en:ChargePoint", "name": "ChargePoint"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/Chargy": {"name": "Chargy", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/chargy.lu/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q62702950", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "Chargy", "brand:wikidata": "Q62702950", "brand:wikipedia": "lb:Chargy", "name": "Chargy"}, "countryCodes": ["lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/Circuit électrique": {"name": "Circuit électrique", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/lecircuitelectrique/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q24934590", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "Circuit électrique", "brand:en": "Electric Circuit", "brand:fr": "Circuit électrique", "brand:wikidata": "Q24934590", "brand:wikipedia": "fr:Le Circuit électrique", "name": "Circuit électrique", "name:en": "Electric Circuit", "name:fr": "Circuit électrique"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/E-WALD": {"name": "E-WALD", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/E.WALD.emobility/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q61804335", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "E-WALD", "brand:wikidata": "Q61804335", "name": "E-WALD"}, "countryCodes": ["de"], "terms": ["e-wald ladestation"], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/Enel": {"name": "Enel", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/enelsharing/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q651222", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "Enel", "brand:wikidata": "Q651222", "brand:wikipedia": "en:Enel", "name": "Enel"}, "countryCodes": ["it"], "terms": ["enel - stazione di ricarica"], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/FLO": {"name": "FLO", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/flonetwork/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q64971203", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "FLO", "brand:wikidata": "Q64971203", "name": "FLO"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/InCharge": {"name": "InCharge", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/InChargeSverige/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q71041027", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "InCharge", "brand:wikidata": "Q71041027", "name": "InCharge"}, "terms": ["vattenfall"], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/Innogy": {"name": "Innogy", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/innogized/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q2124721", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "Innogy", "brand:wikidata": "Q2124721", "brand:wikipedia": "de:Innogy", "name": "Innogy"}, "terms": ["rwe"], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/Source London": {"name": "Source London", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/SourceLondon/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q7565133", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "Source London", "brand:wikidata": "Q7565133", "brand:wikipedia": "en:Source London", "name": "Source London"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/Tesla Supercharger": {"name": "Tesla Supercharger", "icon": "fas-charging-station", "imageURL": "https://pbs.twimg.com/profile_images/489192650474414080/4RxZxsud_bigger.png", "geometry": ["point"], "tags": {"brand:wikidata": "Q17089620", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "Tesla Supercharger", "brand:wikidata": "Q17089620", "brand:wikipedia": "en:Tesla Supercharger", "name": "Tesla Supercharger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/bike-energy": {"name": "bike-energy", "icon": "fas-charging-station", "imageURL": "https://graph.facebook.com/bikeenergyaustria/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q67770877", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "bike-energy", "brand:wikidata": "Q67770877", "name": "bike-energy"}, "countryCodes": ["at", "ch", "de", "fr", "it", "lu"], "terms": ["bike-energy ladestation"], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/eVgo": {"name": "eVgo", "icon": "fas-charging-station", "imageURL": "https://pbs.twimg.com/profile_images/1072541771777888256/E1Ma7jGm_bigger.jpg", "geometry": ["point"], "tags": {"brand:wikidata": "Q61803820", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "eVgo", "brand:wikidata": "Q61803820", "name": "eVgo"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/charging_station/東光高岳": {"name": "東光高岳", "icon": "fas-charging-station", "geometry": ["point"], "tags": {"brand:wikidata": "Q17220263", "amenity": "charging_station"}, "addTags": {"amenity": "charging_station", "brand": "東光高岳", "brand:en": "Takaoka Toko", "brand:ja": "東光高岳", "brand:wikidata": "Q17220263", "brand:wikipedia": "ja:東光高岳", "name": "東光高岳", "name:en": "Takaoka Toko", "name:ja": "東光高岳"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/childcare/Kids 'R' Kids": {"name": "Kids 'R' Kids", "icon": "fas-child", "imageURL": "https://graph.facebook.com/kidsrkidscorporate/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65560342", "amenity": "childcare"}, "addTags": {"after_school": "yes", "amenity": "childcare", "brand": "Kids 'R' Kids", "brand:wikidata": "Q65560342", "grades": "PK", "name": "Kids 'R' Kids", "nursery": "yes", "official_name": "Kids 'R' Kids Learning Academies", "preschool": "yes"}, "countryCodes": ["us"], "terms": ["kids are kids"], "matchScore": 2, "suggestion": true}, - "amenity/childcare/YMCA Child Care": {"name": "YMCA Child Care", "icon": "fas-child", "imageURL": "https://graph.facebook.com/YMCA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q157169", "amenity": "childcare"}, "addTags": {"amenity": "childcare", "brand": "YMCA", "brand:wikidata": "Q157169", "brand:wikipedia": "en:YMCA", "name": "YMCA Child Care"}, "countryCodes": ["us"], "terms": ["ymca", "ymca child care center"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/109シネマズ": {"name": "109シネマズ", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/438297009664571/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10854269", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "109シネマズ", "brand:en": "109 Cinemas", "brand:ja": "109シネマズ", "brand:wikidata": "Q10854269", "brand:wikipedia": "ja:109シネマズ", "name": "109シネマズ", "name:en": "109 Cinemas", "name:ja": "109シネマズ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/AMC": {"name": "AMC", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/amctheatres/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q294721", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "AMC", "brand:wikidata": "Q294721", "brand:wikipedia": "en:AMC Theatres", "name": "AMC"}, "countryCodes": ["us"], "terms": ["amc cinema", "amc cinemas", "amc theater", "amc theaters", "amc theatre", "amc theatres"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/B&B Theatres": {"name": "B&B Theatres", "icon": "maki-cinema", "imageURL": "https://pbs.twimg.com/profile_images/796752289859969025/6La-tnNc_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4833576", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "B&B Theatres", "brand:wikidata": "Q4833576", "brand:wikipedia": "en:B&B Theatres", "name": "B&B Theatres", "short_name": "B&B"}, "countryCodes": ["us"], "terms": ["b&b theaters"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/CGR": {"name": "CGR", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/CGRCinemas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2931406", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "CGR", "brand:wikidata": "Q2931406", "brand:wikipedia": "fr:Circuit Georges-Raymond", "name": "CGR Cinémas"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Caribbean Cinemas": {"name": "Caribbean Cinemas", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/caribbeancinemas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5039364", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Caribbean Cinemas", "brand:wikidata": "Q5039364", "brand:wikipedia": "en:Caribbean Cinemas", "name": "Caribbean Cinemas"}, "countryCodes": ["ag", "do", "fr", "gy", "kn", "lc", "nl", "pa", "tt", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Century Theatres": {"name": "Century Theatres", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2946307", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Century Theatres", "brand:wikidata": "Q2946307", "brand:wikipedia": "en:Century Theatres", "name": "Century Theatres", "short_name": "Century"}, "countryCodes": ["us"], "terms": ["century theater", "century theaters", "century theatre"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cine Center": {"name": "Cine Center", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81962395", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cine Center", "brand:wikidata": "Q81962395", "name": "Cine Center"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/CineStar": {"name": "CineStar", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/CineStarDE/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q321889", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "CineStar", "brand:wikidata": "Q321889", "brand:wikipedia": "de:Cinestar", "name": "CineStar"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cinema City": {"name": "Cinema City", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/CinemaCityPoland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q543651", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cinema City", "brand:wikidata": "Q543651", "brand:wikipedia": "en:Cinema City International", "name": "Cinema City"}, "countryCodes": ["cz", "hu", "pl", "ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cinema NOS": {"name": "Cinema NOS", "icon": "maki-cinema", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLog%C3%B3tipo%20da%20NOS.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8063259", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cinemas NOS", "brand:wikidata": "Q8063259", "brand:wikipedia": "en:NOS Audiovisuais", "name": "Cinema NOS"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cinemark": {"name": "Cinemark", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cinemarkoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q707530", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cinemark", "brand:wikidata": "Q707530", "brand:wikipedia": "en:Cinemark Theatres", "name": "Cinemark"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cinemaxx (Europe)": {"name": "Cinemaxx (Europe)", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cinemaxx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q881860", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cinemaxx", "brand:wikidata": "Q881860", "brand:wikipedia": "de:Cinemaxx", "name": "Cinemaxx"}, "countryCodes": ["de", "dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cinemaxx (Indonesia)": {"name": "Cinemaxx (Indonesia)", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cinepolisID/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19942740", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cinemaxx", "brand:wikidata": "Q19942740", "brand:wikipedia": "id:Cinemaxx", "name": "Cinemaxx"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cinemex": {"name": "Cinemex", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/Cinemex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3333072", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cinemex", "brand:wikidata": "Q3333072", "brand:wikipedia": "en:Cinemex", "name": "Cinemex"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cineplanet": {"name": "Cineplanet", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cineplanet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5769680", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cineplanet", "brand:wikidata": "Q5769680", "brand:wikipedia": "es:Cineplanet", "name": "Cineplanet"}, "countryCodes": ["cl", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cineplex": {"name": "Cineplex", "icon": "maki-cinema", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCineplex%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2972807", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cineplex", "brand:wikidata": "Q2972807", "brand:wikipedia": "en:Cineplex Entertainment", "name": "Cineplex"}, "countryCodes": ["ca"], "terms": ["cineplex cinema", "cineplex cinemas", "cineplex entertainment", "cineplex odeon", "cineplex theatre", "cineplex theatres"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cineplexx": {"name": "Cineplexx", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cineplexxAT/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q873340", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cineplexx", "brand:wikidata": "Q873340", "brand:wikipedia": "en:Cineplexx Cinemas", "name": "Cineplexx"}, "countryCodes": ["at", "si"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cinepolis": {"name": "Cinepolis", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cinepolisbrasil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5686673", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cinepolis", "brand:wikidata": "Q5686673", "brand:wikipedia": "en:Cinépolis", "name": "Cinepolis"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Cineworld": {"name": "Cineworld", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/cineworld/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5120901", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Cineworld", "brand:wikidata": "Q5120901", "brand:wikipedia": "en:Cineworld", "name": "Cineworld"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Event": {"name": "Event", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/EventCinemas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5416698", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Event", "brand:wikidata": "Q5416698", "brand:wikipedia": "en:Event Cinemas", "name": "Event", "official_name": "Event Cinemas"}, "countryCodes": ["au", "nz"], "terms": ["event cinema"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Harkins Theatres": {"name": "Harkins Theatres", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/harkinstheatres/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5658199", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Harkins Theatres", "brand:wikidata": "Q5658199", "brand:wikipedia": "en:Harkins Theatres", "name": "Harkins Theatres", "short_name": "Harkins"}, "countryCodes": ["us"], "terms": ["harkins theater", "harkins theaters", "harkins theatre"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Hoyts": {"name": "Hoyts", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/hoytsaustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5922976", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Hoyts", "brand:wikidata": "Q5922976", "brand:wikipedia": "en:Hoyts", "name": "Hoyts"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Landmark Theatres": {"name": "Landmark Theatres", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/LandmarkTheatres/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6484805", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Landmark Theatres", "brand:wikidata": "Q6484805", "brand:wikipedia": "en:Landmark Theatres", "name": "Landmark Theatres", "short_name": "Landmark"}, "countryCodes": ["us"], "terms": ["landmark theater", "landmark theaters", "landmark theatre"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/MOVIX": {"name": "MOVIX", "icon": "maki-cinema", "imageURL": "https://pbs.twimg.com/profile_images/965496212332863488/_LJ8isUg_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11532184", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "MOVIX", "brand:wikidata": "Q11532184", "brand:wikipedia": "ja:松竹マルチプレックスシアターズ", "name": "MOVIX", "official_name": "松竹マルチプレックスシアターズ", "official_name:en": "Shochiku Multiplex Theatres"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Marcus Cinema": {"name": "Marcus Cinema", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/marcustheatres/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64083352", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Marcus Cinema", "brand:wikidata": "Q64083352", "name": "Marcus Cinema", "short_name": "Marcus"}, "countryCodes": ["us"], "terms": ["marcus cinemas", "marcus theater", "marcus theaters", "marcus theatre", "marcus theatres"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Movie Tavern": {"name": "Movie Tavern", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/movietavern/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64083534", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Movie Tavern", "brand:wikidata": "Q64083534", "name": "Movie Tavern"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/MultiCine": {"name": "MultiCine", "icon": "maki-cinema", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81963200", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "MultiCine", "brand:wikidata": "Q81963200", "name": "MultiCine"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Multikino": {"name": "Multikino", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/MultikinoPolska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1144802", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Multikino", "brand:wikidata": "Q1144802", "brand:wikipedia": "pl:Multikino", "name": "Multikino"}, "countryCodes": ["lt", "lv", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Odeon": {"name": "Odeon", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/ODEON/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6127470", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Odeon", "brand:wikidata": "Q6127470", "brand:wikipedia": "en:Odeon Cinemas", "name": "Odeon"}, "countryCodes": ["gb", "gr", "ie", "it"], "terms": ["odeon cinema"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Pathé Gaumont": {"name": "Pathé Gaumont", "icon": "maki-cinema", "imageURL": "https://abs.twimg.com/sticky/default_profile_images/default_profile_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3060526", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Pathé Gaumont", "brand:wikidata": "Q3060526", "brand:wikipedia": "fr:Les cinémas Gaumont Pathé", "name": "Pathé Gaumont"}, "countryCodes": ["be", "ch", "fr", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Regal Cinemas": {"name": "Regal Cinemas", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/RegalMovies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q835638", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Regal Cinemas", "brand:wikidata": "Q835638", "brand:wikipedia": "en:Regal Cinemas", "name": "Regal Cinemas", "short_name": "Regal"}, "countryCodes": ["us"], "terms": ["regal cinema"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Showcase Cinemas": {"name": "Showcase Cinemas", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/ShowcaseUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7503170", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Showcase Cinemas", "brand:wikidata": "Q7503170", "brand:wikipedia": "en:Showcase Cinemas", "name": "Showcase Cinemas", "short_name": "Showcase"}, "countryCodes": ["ar", "gb", "us"], "terms": ["showcase cinema"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/TOHOシネマズ": {"name": "TOHOシネマズ", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/tohocinemasmagagine/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11235261", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "TOHOシネマズ", "brand:en": "TOHO CINEMAS", "brand:ja": "TOHOシネマズ", "brand:wikidata": "Q11235261", "brand:wikipedia": "ja:TOHOシネマズ", "name": "TOHOシネマズ", "name:en": "Toho Cinemas", "name:ja": "TOHOシネマズ", "short_name": "TOHO"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/The Space Cinema": {"name": "The Space Cinema", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/TheSpaceCinema/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3989406", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "The Space Cinema", "brand:wikidata": "Q3989406", "brand:wikipedia": "it:The Space Cinema", "name": "The Space Cinema"}, "countryCodes": ["it"], "terms": ["the space"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/UGC": {"name": "UGC", "icon": "maki-cinema", "imageURL": "https://pbs.twimg.com/profile_images/966691384865558529/LlqCR8ga_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1643241", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "UGC", "brand:wikidata": "Q1643241", "brand:wikipedia": "fr:Union générale cinématographique", "name": "UGC"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Vue (IrelandAndUK)": {"name": "Vue (IrelandAndUK)", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/VueCinemas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2535134", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Vue", "brand:wikidata": "Q2535134", "brand:wikipedia": "en:Vue Cinemas", "name": "Vue"}, "countryCodes": ["gb", "ie"], "terms": ["vue cinema", "vue cinemas"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/Vue (Netherlands)": {"name": "Vue (Netherlands)", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/vuecinemasnl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2421690", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "Vue", "brand:wikidata": "Q2421690", "brand:wikipedia": "nl:Vue (bioscoopketen)", "name": "Vue"}, "countryCodes": ["nl"], "terms": ["vue cinema"], "matchScore": 2, "suggestion": true}, - "amenity/cinema/イオンシネマ": {"name": "イオンシネマ", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/aeoncinema/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17192792", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "イオンシネマ", "brand:en": "AEON Cinema", "brand:ja": "イオンシネマ", "brand:wikidata": "Q17192792", "brand:wikipedia": "ja:イオンエンターテイメント", "name": "イオンシネマ", "name:en": "AEON Cinema", "name:ja": "イオンシネマ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/cinema/ユナイテッド・シネマ": {"name": "ユナイテッド・シネマ", "icon": "maki-cinema", "imageURL": "https://graph.facebook.com/unitedcinemasgroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11345629", "amenity": "cinema"}, "addTags": {"amenity": "cinema", "brand": "ユナイテッド・シネマ", "brand:en": "United Cinemas", "brand:ja": "ユナイテッド・シネマ", "brand:wikidata": "Q11345629", "brand:wikipedia": "ja:ユナイテッド・シネマ", "name": "ユナイテッド・シネマ", "name:en": "United Cinemas", "name:ja": "ユナイテッド・シネマ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/clinic/Asepeyo": {"name": "Asepeyo", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/Asepeyo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11906879", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "Asepeyo", "brand:wikidata": "Q11906879", "brand:wikipedia": "es:Asepeyo", "healthcare": "clinic", "name": "Asepeyo"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/clinic/CityMD": {"name": "CityMD", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/CityMD/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22295471", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "CityMD", "brand:wikidata": "Q22295471", "brand:wikipedia": "en:CityMD", "healthcare": "clinic", "name": "CityMD"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/clinic/DaVita Dialysis": {"name": "DaVita Dialysis", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/davitakidneycare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5207184", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "DaVita Dialysis", "brand:wikidata": "Q5207184", "healthcare": "dialysis", "healthcare:speciality": "dialysis", "name": "DaVita Dialysis"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["us"], "terms": ["davita", "davita dialysis center", "davita kidney care"], "matchScore": 2, "suggestion": true}, - "amenity/clinic/Dialysis Clinic": {"name": "Dialysis Clinic", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/DialysisClinicInc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5270633", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "Dialysis Clinic", "brand:wikidata": "Q5270633", "brand:wikipedia": "en:Dialysis Clinic, Inc.", "healthcare": "dialysis", "healthcare:speciality": "dialysis", "name": "Dialysis Clinic", "short_name": "DCI"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["us"], "terms": ["dialysis clinic inc"], "matchScore": 2, "suggestion": true}, - "amenity/clinic/Fresenius Kidney Care": {"name": "Fresenius Kidney Care", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/freseniuskidneycare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q650259", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "Fresenius Kidney Care", "brand:wikidata": "Q650259", "brand:wikipedia": "en:Fresenius Medical Care", "healthcare": "dialysis", "healthcare:speciality": "dialysis", "name": "Fresenius Kidney Care"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/clinic/Fresenius Medical Care": {"name": "Fresenius Medical Care", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/freseniuskidneycare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q650259", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "Fresenius Medical Care", "brand:wikidata": "Q650259", "brand:wikipedia": "en:Fresenius Medical Care", "healthcare": "dialysis", "healthcare:speciality": "dialysis", "name": "Fresenius Medical Care"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/clinic/Planned Parenthood": {"name": "Planned Parenthood", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/PlannedParenthood/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2553262", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "Planned Parenthood", "brand:wikidata": "Q2553262", "brand:wikipedia": "en:Planned Parenthood", "healthcare": "counselling", "healthcare:counselling": "antenatal;sexual", "name": "Planned Parenthood"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/clinic/Satellite Healthcare": {"name": "Satellite Healthcare", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/satellitehealthcare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q50039787", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "Satellite Healthcare", "brand:wikidata": "Q50039787", "healthcare": "dialysis", "healthcare:speciality": "dialysis", "name": "Satellite Healthcare"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["us"], "terms": ["satellite", "satellite dialysis"], "matchScore": 2, "suggestion": true}, - "amenity/clinic/Terveystalo": {"name": "Terveystalo", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/Terveystalo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11897034", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "Terveystalo", "brand:wikidata": "Q11897034", "brand:wikipedia": "fi:Terveystalo", "healthcare": "clinic", "name": "Terveystalo"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/clinic/VA Clinic": {"name": "VA Clinic", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/VeteransHealth/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6580225", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "VA", "brand:wikidata": "Q6580225", "brand:wikipedia": "en:Veterans Health Administration", "healthcare": "clinic", "healthcare:for": "veterans", "name": "VA Clinic", "short_name": "VA"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["us"], "terms": ["department of veterans affairs clinic", "veterans administration", "veterans administration clinic", "veterans affairs", "veterans affairs clinic"], "matchScore": 2, "suggestion": true}, - "amenity/clinic/ZoomCare": {"name": "ZoomCare", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/ZOOMCare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64120374", "amenity": "clinic"}, "addTags": {"amenity": "clinic", "brand": "ZoomCare", "brand:wikidata": "Q64120374", "brand:wikipedia": "en:ZoomCare", "healthcare": "clinic", "name": "ZoomCare", "urgent_care": "yes"}, "reference": {"key": "amenity", "value": "clinic"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/college/Akademie Deutsche POP": {"name": "Akademie Deutsche POP", "icon": "maki-college", "imageURL": "https://graph.facebook.com/deutschepop/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q413887", "amenity": "college"}, "addTags": {"amenity": "college", "brand": "Akademie Deutsche POP", "brand:wikidata": "Q413887", "brand:wikipedia": "de:Akademie Deutsche POP", "name": "Akademie Deutsche POP"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/college/SAE Institute": {"name": "SAE Institute", "icon": "maki-college", "imageURL": "https://pbs.twimg.com/profile_images/608919447856918528/RoTiqOWW_bigger.png", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q201438", "amenity": "college"}, "addTags": {"amenity": "college", "brand": "SAE Institute", "brand:wikidata": "Q201438", "brand:wikipedia": "en:SAE Institute", "name": "SAE Institute"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/dentist/Aspen Dental": {"name": "Aspen Dental", "icon": "maki-dentist", "imageURL": "https://graph.facebook.com/AspenDental/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4807808", "amenity": "dentist"}, "addTags": {"amenity": "dentist", "brand": "Aspen Dental", "brand:wikidata": "Q4807808", "brand:wikipedia": "en:Aspen Dental", "healthcare": "dentist", "name": "Aspen Dental"}, "reference": {"key": "amenity", "value": "dentist"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/dentist/Comfort Dental": {"name": "Comfort Dental", "icon": "maki-dentist", "imageURL": "https://graph.facebook.com/comfortdental/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22079521", "amenity": "dentist"}, "addTags": {"amenity": "dentist", "brand": "Comfort Dental", "brand:wikidata": "Q22079521", "brand:wikipedia": "en:Comfort Dental", "healthcare": "dentist", "name": "Comfort Dental"}, "reference": {"key": "amenity", "value": "dentist"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/dentist/Dentix": {"name": "Dentix", "icon": "maki-dentist", "imageURL": "https://graph.facebook.com/dentixes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30505320", "amenity": "dentist"}, "addTags": {"amenity": "dentist", "brand": "Dentix", "brand:wikidata": "Q30505320", "brand:wikipedia": "es:Dentix", "name": "Dentix"}, "reference": {"key": "amenity", "value": "dentist"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/dentist/Folktandvården": {"name": "Folktandvården", "icon": "maki-dentist", "imageURL": "https://graph.facebook.com/folktandvardenstockholm/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10497476", "amenity": "dentist"}, "addTags": {"amenity": "dentist", "brand": "Folktandvården", "brand:wikidata": "Q10497476", "brand:wikipedia": "sv:Folktandvården", "name": "Folktandvården"}, "reference": {"key": "amenity", "value": "dentist"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/dentist/Kool Smiles": {"name": "Kool Smiles", "icon": "maki-dentist", "imageURL": "https://graph.facebook.com/MyKoolSmiles/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6430587", "amenity": "dentist"}, "addTags": {"amenity": "dentist", "brand": "Kool Smiles", "brand:wikidata": "Q6430587", "brand:wikipedia": "en:Kool Smiles", "healthcare": "dentist", "name": "Kool Smiles"}, "reference": {"key": "amenity", "value": "dentist"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/dentist/Vitaldent": {"name": "Vitaldent", "icon": "maki-dentist", "imageURL": "https://graph.facebook.com/VitaldentEspana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5860599", "amenity": "dentist"}, "addTags": {"amenity": "dentist", "brand": "Vitaldent", "brand:wikidata": "Q5860599", "brand:wikipedia": "es:Vitaldent", "name": "Vitaldent"}, "reference": {"key": "amenity", "value": "dentist"}, "countryCodes": ["es", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/dentist/Western Dental": {"name": "Western Dental", "icon": "maki-dentist", "imageURL": "https://graph.facebook.com/WesternDental/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64211989", "amenity": "dentist"}, "addTags": {"alt_name": "Western Dental & Orthodontics", "amenity": "dentist", "brand": "Western Dental", "brand:wikidata": "Q64211989", "brand:wikipedia": "en:Western Dental", "healthcare": "dentist", "name": "Western Dental"}, "reference": {"key": "amenity", "value": "dentist"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/doctors/MinuteClinic": {"name": "MinuteClinic", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/minuteclinic/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6871141", "amenity": "doctors"}, "addTags": {"amenity": "doctors", "brand": "MinuteClinic", "brand:wikidata": "Q6871141", "brand:wikipedia": "en:MinuteClinic", "healthcare": "doctor", "healthcare:speciality": "community", "name": "MinuteClinic"}, "reference": {"key": "amenity", "value": "doctors"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/doctors/RediClinic": {"name": "RediClinic", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/RediClinic/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64138408", "amenity": "doctors"}, "addTags": {"amenity": "doctors", "brand": "RediClinic", "brand:wikidata": "Q64138408", "healthcare": "doctor", "healthcare:speciality": "community", "name": "RediClinic"}, "reference": {"key": "amenity", "value": "doctors"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/doctors/The Little Clinic": {"name": "The Little Clinic", "icon": "maki-doctor", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64138262", "amenity": "doctors"}, "addTags": {"amenity": "doctors", "brand": "The Little Clinic", "brand:wikidata": "Q64138262", "healthcare": "doctor", "healthcare:speciality": "community", "name": "The Little Clinic"}, "reference": {"key": "amenity", "value": "doctors"}, "countryCodes": ["us"], "terms": ["little clinic"], "matchScore": 2, "suggestion": true}, - "amenity/doctors/Walgreens Healthcare Clinic": {"name": "Walgreens Healthcare Clinic", "icon": "maki-doctor", "imageURL": "https://graph.facebook.com/walgreens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1591889", "amenity": "doctors"}, "addTags": {"amenity": "doctors", "brand": "Walgreens", "brand:wikidata": "Q1591889", "healthcare": "doctor", "healthcare:speciality": "community", "name": "Walgreens Healthcare Clinic"}, "reference": {"key": "amenity", "value": "doctors"}, "countryCodes": ["us"], "terms": ["healthcare clinic", "takecare", "takecare clinic", "walgreens"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/241 Pizza": {"name": "241 Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/241PizzaCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4631768", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "241 Pizza", "brand:wikidata": "Q4631768", "brand:wikipedia": "en:241 Pizza", "cuisine": "pizza", "name": "241 Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/A&W (Canada)": {"name": "A&W (Canada)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/405801939456462/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2818848", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "A&W", "brand:wikidata": "Q2818848", "brand:wikipedia": "en:A&W (Canada)", "cuisine": "burger", "name": "A&W", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/A&W (USA)": {"name": "A&W (USA)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/awrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q277641", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "A&W", "brand:wikidata": "Q277641", "brand:wikipedia": "en:A&W Restaurants", "cuisine": "burger", "name": "A&W", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Andok's": {"name": "Andok's", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/andokslitsonmanok/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62267166", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Andok's", "brand:wikidata": "Q62267166", "cuisine": "chicken", "name": "Andok's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Angel's Burger": {"name": "Angel's Burger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/angburgerngbayan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62267228", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Angel's Burger", "brand:wikidata": "Q62267228", "cuisine": "burger", "name": "Angel's Burger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Arby's": {"name": "Arby's", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/arbys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q630866", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Arby's", "brand:wikidata": "Q630866", "brand:wikipedia": "en:Arby's", "cuisine": "sandwich", "name": "Arby's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["ca", "tr", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Arctic Circle": {"name": "Arctic Circle", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ArcticCircle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4787501", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Arctic Circle", "brand:wikidata": "Q4787501", "brand:wikipedia": "en:Arctic Circle Restaurants", "cuisine": "burger", "name": "Arctic Circle", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Au Bon Pain": {"name": "Au Bon Pain", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/aubonpain/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4818942", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Au Bon Pain", "brand:wikidata": "Q4818942", "brand:wikipedia": "en:Au Bon Pain", "cuisine": "sandwich", "name": "Au Bon Pain", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["in", "th", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Auntie Anne's": {"name": "Auntie Anne's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/auntieannespretzels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4822010", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Auntie Anne's", "brand:wikidata": "Q4822010", "brand:wikipedia": "en:Auntie Anne's", "cuisine": "pretzel", "name": "Auntie Anne's", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["auntie annes pretzels"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Back Yard Burgers": {"name": "Back Yard Burgers", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/backyardburgers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2878376", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Back Yard Burgers", "brand:wikidata": "Q2878376", "brand:wikipedia": "en:Back Yard Burgers", "cuisine": "burger", "name": "Back Yard Burgers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Baja Fresh": {"name": "Baja Fresh", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/bajafresh/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2880019", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Baja Fresh", "brand:wikidata": "Q2880019", "brand:wikipedia": "en:Baja Fresh", "cuisine": "mexican", "name": "Baja Fresh", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Barburrito": {"name": "Barburrito", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/BarburritoUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16983668", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Barburrito", "brand:wikidata": "Q16983668", "brand:wikipedia": "en:Barburrito", "cuisine": "mexican", "name": "Barburrito", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Bembos": {"name": "Bembos", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/bembos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q466971", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Bembos", "brand:wikidata": "Q466971", "brand:wikipedia": "en:Bembos", "cuisine": "burger", "name": "Bembos", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Big Fernand": {"name": "Big Fernand", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/bigfernand/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19521346", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Big Fernand", "brand:wikidata": "Q19521346", "brand:wikipedia": "fr:Big Fernand", "cuisine": "burger", "name": "Big Fernand", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ae", "fr", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Biscuitville": {"name": "Biscuitville", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1095699775482195969/-5whY2ff_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4917274", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Biscuitville", "brand:wikidata": "Q4917274", "brand:wikipedia": "en:Biscuitville", "cuisine": "american;breakfast", "name": "Biscuitville", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Blackjack Pizza": {"name": "Blackjack Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/BlackjackPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4923061", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Blackjack Pizza", "brand:wikidata": "Q4923061", "brand:wikipedia": "en:Blackjack Pizza", "cuisine": "pizza", "name": "Blackjack Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Blimpie": {"name": "Blimpie", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/Blimpie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4926479", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Blimpie", "brand:wikidata": "Q4926479", "brand:wikipedia": "en:Blimpie", "cuisine": "sandwich", "name": "Blimpie", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Bob's": {"name": "Bob's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/bobsbrasil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1392113", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Bob's", "brand:wikidata": "Q1392113", "brand:wikipedia": "en:Bob's", "cuisine": "burger", "name": "Bob's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ao", "br", "cl", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Bojangles'": {"name": "Bojangles'", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/Bojangles/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q891163", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Bojangles'", "brand:wikidata": "Q891163", "brand:wikipedia": "en:Bojangles' Famous Chicken 'n Biscuits", "cuisine": "chicken", "name": "Bojangles'", "official_name": "Bojangles' Famous Chicken 'n Biscuits", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/juice/Booster Juice": {"name": "Booster Juice", "icon": "temaki-drink_cup", "imageURL": "https://graph.facebook.com/boosterjuice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4943796", "amenity": "fast_food", "cuisine": "juice"}, "addTags": {"amenity": "fast_food", "brand": "Booster Juice", "brand:wikidata": "Q4943796", "brand:wikipedia": "en:Booster Juice", "cuisine": "juice", "name": "Booster Juice", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "juice"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Boston Market": {"name": "Boston Market", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/BostonMarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q603617", "amenity": "fast_food", "cuisine": "american;chicken"}, "addTags": {"amenity": "fast_food", "brand": "Boston Market", "brand:wikidata": "Q603617", "brand:wikipedia": "en:Boston Market", "cuisine": "american;chicken", "name": "Boston Market", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ice_cream/Braum's": {"name": "Braum's", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/BraumsIceCreamandDairyStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4958263", "amenity": "fast_food", "cuisine": "ice_cream"}, "addTags": {"amenity": "fast_food", "brand": "Braum's", "brand:wikidata": "Q4958263", "brand:wikipedia": "en:Braum's", "cuisine": "ice_cream", "name": "Braum's", "shop": "dairy", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "ice_cream"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Bruegger's Bagels": {"name": "Bruegger's Bagels", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Brueggers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4978656", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Bruegger's Bagels", "brand:wikidata": "Q4978656", "brand:wikipedia": "en:Bruegger's", "cuisine": "bagel", "name": "Bruegger's Bagels", "short_name": "Bruegger's", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["breuger's", "breugger's", "bruger's", "brugger's"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Buona": {"name": "Buona", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/BuonaRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23461372", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Buona", "brand:wikidata": "Q23461372", "brand:wikipedia": "en:Buona", "cuisine": "italian", "name": "Buona", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Burger Fuel": {"name": "Burger Fuel", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1036730886979387392/F36y-pRf_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4998537", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Burger Fuel", "brand:wikidata": "Q4998537", "brand:wikipedia": "en:Burger Fuel", "cuisine": "burger", "name": "Burger Fuel", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ae", "iq", "nz", "sa", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Burger King": {"name": "Burger King", "icon": "maki-fast-food", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBurger%20King%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q177054", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Burger King", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "Burger King", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": ["burguer king"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Burger Machine": {"name": "Burger Machine", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/burgermachineofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4998549", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Burger Machine", "brand:wikidata": "Q4998549", "brand:wikipedia": "en:Burger Machine", "cuisine": "burger", "name": "Burger Machine", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/BurgerFi": {"name": "BurgerFi", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/BurgerFi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q39045496", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "BurgerFi", "brand:wikidata": "Q39045496", "brand:wikipedia": "en:BurgerFi", "cuisine": "burger", "name": "BurgerFi", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Burgerim": {"name": "Burgerim", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/iBurgerim/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64760354", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Burgerim", "brand:en": "Burgerim", "brand:he": "בורגרים", "brand:wikidata": "Q64760354", "cuisine": "burger", "name": "Burgerim", "name:en": "Burgerim", "name:he": "בורגרים", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Burgers Bar": {"name": "Burgers Bar", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/BurgersBarIL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64760337", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Burgers Bar", "brand:en": "Burgers Bar", "brand:he": "בורגרס בר", "brand:wikidata": "Q64760337", "cuisine": "burger", "diet:kosher": "yes", "name": "Burgers Bar", "name:en": "Burgers Bar", "name:he": "בורגרס בר", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Burgerville": {"name": "Burgerville", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/burgerville/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4998570", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Burgerville", "brand:wikidata": "Q4998570", "brand:wikipedia": "en:Burgerville", "cuisine": "burger", "name": "Burgerville", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/California Fish Grill": {"name": "California Fish Grill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/CaliforniaFishGrill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55606435", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "California Fish Grill", "brand:wikidata": "Q55606435", "brand:wikipedia": "en:California Fish Grill", "cuisine": "seafood", "name": "California Fish Grill", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Captain D's": {"name": "Captain D's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/CaptainDs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5036616", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Captain D's", "brand:wikidata": "Q5036616", "brand:wikipedia": "en:Captain D's", "cuisine": "seafood", "name": "Captain D's", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Carl's Jr.": {"name": "Carl's Jr.", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/carlsjr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1043486", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Carl's Jr.", "brand:wikidata": "Q1043486", "brand:wikipedia": "en:Carl's Jr.", "cuisine": "burger", "name": "Carl's Jr.", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Charleys Philly Steaks": {"name": "Charleys Philly Steaks", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/CharleysPhillySteaks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1066777", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Charleys Philly Steaks", "brand:wikidata": "Q1066777", "brand:wikipedia": "en:Charleys Philly Steaks", "cuisine": "sandwich", "name": "Charleys Philly Steaks", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": ["charleys"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Checkers": {"name": "Checkers", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/checkersrallys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63919315", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Checkers", "brand:wikidata": "Q63919315", "cuisine": "burger", "name": "Checkers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Chester's": {"name": "Chester's", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/ChestersIntl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5093401", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Chester's", "brand:wikidata": "Q5093401", "brand:wikipedia": "en:Chester's International", "cuisine": "chicken", "name": "Chester's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "terms": ["chesters chicken"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Chick-fil-A": {"name": "Chick-fil-A", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/ChickfilA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q491516", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Chick-fil-A", "brand:wikidata": "Q491516", "brand:wikipedia": "en:Chick-fil-A", "cuisine": "chicken", "name": "Chick-fil-A", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Chicken Express": {"name": "Chicken Express", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/chickenexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5096235", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Chicken Express", "brand:wikidata": "Q5096235", "brand:wikipedia": "en:Chicken Express", "cuisine": "chicken", "name": "Chicken Express", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Chicken Treat": {"name": "Chicken Treat", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/ChickenTreat/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5096274", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Chicken Treat", "brand:wikidata": "Q5096274", "brand:wikipedia": "en:Chicken Treat", "cuisine": "chicken", "name": "Chicken Treat", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/China Wok": {"name": "China Wok", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ChinaWokPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5766542", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "China Wok", "brand:wikidata": "Q5766542", "brand:wikipedia": "es:China Wok", "cuisine": "chinese", "name": "China Wok", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Chipotle": {"name": "Chipotle", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/chipotle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q465751", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Chipotle", "brand:wikidata": "Q465751", "brand:wikipedia": "en:Chipotle Mexican Grill", "cuisine": "mexican", "name": "Chipotle", "official_name": "Chipotle Mexican Grill", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Chopt": {"name": "Chopt", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/choptsalad/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17509305", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Chopt", "brand:wikidata": "Q17509305", "brand:wikipedia": "en:Chopt", "cuisine": "salad", "name": "Chopt", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Chowking": {"name": "Chowking", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/chowkingph/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1076816", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Chowking", "brand:wikidata": "Q1076816", "brand:wikipedia": "en:Chowking", "cuisine": "asian", "name": "Chowking", "takeaway": "yes"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Church's Chicken": {"name": "Church's Chicken", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/churchschicken/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1089932", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Church's Chicken", "brand:wikidata": "Q1089932", "brand:wikipedia": "en:Church's Chicken", "cuisine": "chicken", "name": "Church's Chicken", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Cinnabon": {"name": "Cinnabon", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Cinnabon/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1092539", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Cinnabon", "brand:wikidata": "Q1092539", "brand:wikipedia": "en:Cinnabon", "cuisine": "dessert", "name": "Cinnabon", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/CoCo壱番屋": {"name": "CoCo壱番屋", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/cocoichicurry/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5986105", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "CoCo壱番屋", "brand:en": "CoCo Ichibanya", "brand:ja": "CoCo壱番屋", "brand:wikidata": "Q5986105", "brand:wikipedia": "en:Ichibanya", "cuisine": "japanese", "name": "CoCo壱番屋", "name:en": "CoCo Ichibanya", "name:ja": "CoCo壱番屋", "takeaway": "yes"}, "countryCodes": ["cn", "jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Cook Out": {"name": "Cook Out", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/CookOut/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5166992", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Cook Out", "brand:wikidata": "Q5166992", "brand:wikipedia": "en:Cook Out (restaurant)", "cuisine": "american", "name": "Cook Out", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Così": {"name": "Così", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/getcosi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5175243", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Così", "brand:wikidata": "Q5175243", "brand:wikipedia": "en:Così (restaurant)", "cuisine": "sandwich", "name": "Così", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Cultures": {"name": "Cultures", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/culturesrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64876898", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Cultures", "brand:wikidata": "Q64876898", "cuisine": "sandwich", "name": "Cultures", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Culver's": {"name": "Culver's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/culvers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1143589", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Culver's", "brand:wikidata": "Q1143589", "brand:wikipedia": "en:Culver's", "cuisine": "burger", "name": "Culver's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ice_cream/DQ Grill & Chill": {"name": "DQ Grill & Chill", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/dairyqueen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1141226", "amenity": "fast_food", "cuisine": "ice_cream;burger"}, "addTags": {"amenity": "fast_food", "brand": "DQ Grill & Chill", "brand:wikidata": "Q1141226", "brand:wikipedia": "en:Dairy Queen", "cuisine": "ice_cream;burger", "name": "DQ Grill & Chill", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "ice_cream"}, "countryCodes": ["ca", "us"], "terms": ["dairy queen chill & grill"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ice_cream/Dairy Queen": {"name": "Dairy Queen", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/dairyqueen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1141226", "amenity": "fast_food", "cuisine": "ice_cream;burger"}, "addTags": {"amenity": "fast_food", "brand": "Dairy Queen", "brand:wikidata": "Q1141226", "brand:wikipedia": "en:Dairy Queen", "cuisine": "ice_cream;burger", "name": "Dairy Queen", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "ice_cream"}, "terms": ["dq"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/donut/Daylight Donuts": {"name": "Daylight Donuts", "icon": "temaki-donut", "imageURL": "https://graph.facebook.com/DaylightDonutFlourCo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48970508", "amenity": "fast_food", "cuisine": "donut"}, "addTags": {"amenity": "fast_food", "brand": "Daylight Donuts", "brand:wikidata": "Q48970508", "brand:wikipedia": "en:Daylight Donuts", "cuisine": "donut", "name": "Daylight Donuts", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "donut"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Debonairs Pizza": {"name": "Debonairs Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/DebonairsPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65079407", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Debonairs Pizza", "brand:wikidata": "Q65079407", "brand:wikipedia": "en:Debonairs Pizza", "cuisine": "pizza", "name": "Debonairs Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ae", "bw", "ke", "ls", "mu", "mw", "mz", "na", "ng", "sd", "ss", "sz", "za", "zm"], "terms": ["debonairs"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Del Taco": {"name": "Del Taco", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/deltaco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1183818", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Del Taco", "brand:wikidata": "Q1183818", "brand:wikipedia": "en:Del Taco", "cuisine": "mexican", "name": "Del Taco", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Dig Inn": {"name": "Dig Inn", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/diginnmarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28226241", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Dig Inn", "brand:wikidata": "Q28226241", "brand:wikipedia": "en:Dig Inn", "cuisine": "regional", "name": "Dig Inn", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Dixy Chicken": {"name": "Dixy Chicken", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/152003844822491/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5285003", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Dixy Chicken", "brand:wikidata": "Q5285003", "brand:wikipedia": "en:Dixy Chicken", "cuisine": "chicken", "diet:halal": "yes", "name": "Dixy Chicken", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["bn", "gb", "in", "no", "nz", "pk", "sa", "sy", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Domino's": {"name": "Domino's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Dominos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q839466", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Domino's", "brand:wikidata": "Q839466", "brand:wikipedia": "en:Domino's Pizza", "cuisine": "pizza", "name": "Domino's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": ["dominos pizza"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/donut/Donut King": {"name": "Donut King", "icon": "temaki-donut", "imageURL": "https://graph.facebook.com/DonutKing/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5296921", "amenity": "fast_food", "cuisine": "donut;coffee_shop"}, "addTags": {"amenity": "fast_food", "brand": "Donut King", "brand:wikidata": "Q5296921", "brand:wikipedia": "en:Donut King", "cuisine": "donut;coffee_shop", "name": "Donut King", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "donut"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/donut/Dunkin' Donuts": {"name": "Dunkin' Donuts", "icon": "temaki-donut", "imageURL": "https://graph.facebook.com/DunkinUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q847743", "amenity": "fast_food", "cuisine": "donut;coffee_shop"}, "addTags": {"amenity": "fast_food", "brand": "Dunkin' Donuts", "brand:wikidata": "Q847743", "brand:wikipedia": "en:Dunkin' Donuts", "cuisine": "donut;coffee_shop", "name": "Dunkin' Donuts", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "donut"}, "terms": ["dunkin doughnuts"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/EAT.": {"name": "EAT.", "icon": "temaki-sandwich", "imageURL": "https://pbs.twimg.com/profile_images/1169156289248862209/hO6pPROJ_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5331219", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "EAT.", "brand:wikidata": "Q5331219", "brand:wikipedia": "en:Eat (restaurant)", "cuisine": "sandwich", "name": "EAT.", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/East of Chicago Pizza": {"name": "East of Chicago Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/EOCpizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5329751", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "East of Chicago Pizza", "brand:wikidata": "Q5329751", "brand:wikipedia": "en:East of Chicago Pizza", "cuisine": "pizza", "name": "East of Chicago Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Einstein Bros. Bagels": {"name": "Einstein Bros. Bagels", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/einsteinbros/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5349788", "amenity": "fast_food"}, "addTags": {"alt_name": "Einstein Brothers Bagels", "amenity": "fast_food", "brand": "Einstein Bros. Bagels", "brand:wikidata": "Q5349788", "brand:wikipedia": "en:Einstein Bros. Bagels", "cuisine": "bagel", "name": "Einstein Bros. Bagels", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["einstein bros", "einstein brothers"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/El Pollo Loco": {"name": "El Pollo Loco", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/ElPolloLoco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2353849", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "El Pollo Loco", "brand:wikidata": "Q2353849", "brand:wikipedia": "en:El Pollo Loco", "cuisine": "mexican", "name": "El Pollo Loco", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Elevation Burger": {"name": "Elevation Burger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/elevationburger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15291092", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Elevation Burger", "brand:wikidata": "Q15291092", "brand:wikipedia": "en:Elevation Burger", "cuisine": "burger", "name": "Elevation Burger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["bh", "kw", "qa", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Es Teler 77": {"name": "Es Teler 77", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/esteler77/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5396630", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Es Teler 77", "brand:wikidata": "Q5396630", "cuisine": "indonesian", "name": "Es Teler 77", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Everest": {"name": "Everest", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/everest.gr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62273299", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Everest", "brand:wikidata": "Q62273299", "cuisine": "burger", "name": "Everest", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Extreme Pita": {"name": "Extreme Pita", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/TheExtremePita/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5422367", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Extreme Pita", "brand:wikidata": "Q5422367", "brand:wikipedia": "en:Extreme Pita", "cuisine": "pita", "name": "Extreme Pita", "takeaway": "yes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Extreme Pizza": {"name": "Extreme Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/ExtremePizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5422364", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Extreme Pizza", "brand:wikidata": "Q5422364", "brand:wikipedia": "en:Extreme Pizza", "cuisine": "pizza", "name": "Extreme Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Fazoli's": {"name": "Fazoli's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Fazolis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1399195", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Fazoli's", "brand:wikidata": "Q1399195", "brand:wikipedia": "en:Fazoli's", "cuisine": "italian", "name": "Fazoli's", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Figaro's Pizza": {"name": "Figaro's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/figarospizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48802600", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Figaro's Pizza", "brand:wikidata": "Q48802600", "brand:wikipedia": "en:Figaro's Pizza", "cuisine": "pizza", "name": "Figaro's Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Firehouse Subs": {"name": "Firehouse Subs", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/firehousesubs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5451873", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Firehouse Subs", "brand:wikidata": "Q5451873", "brand:wikipedia": "en:Firehouse Subs", "cuisine": "sandwich", "name": "Firehouse Subs", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Five Guys": {"name": "Five Guys", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/fiveguys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1131810", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Five Guys", "brand:wikidata": "Q1131810", "brand:wikipedia": "en:Five Guys", "cuisine": "burger", "name": "Five Guys", "official_name": "Five Guys Burgers and Fries", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ice_cream/Freddy's": {"name": "Freddy's", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/FreddysUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5496837", "amenity": "fast_food", "cuisine": "ice_cream;burger"}, "addTags": {"amenity": "fast_food", "brand": "Freddy's", "brand:wikidata": "Q5496837", "brand:wikipedia": "en:Freddy's Frozen Custard & Steakburgers", "cuisine": "ice_cream;burger", "name": "Freddy's", "official_name": "Freddys Frozen Custard & Steakburgers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "ice_cream"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Freebirds": {"name": "Freebirds", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/freebirdsworldburrito/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5500367", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Freebirds", "brand:wikidata": "Q5500367", "brand:wikipedia": "en:Freebirds World Burrito", "cuisine": "mexican", "name": "Freebirds", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Freshslice Pizza": {"name": "Freshslice Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Freshslice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5503082", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Freshslice Pizza", "brand:wikidata": "Q5503082", "brand:wikipedia": "en:Freshslice Pizza", "cuisine": "pizza", "name": "Freshslice Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/juice/Freshëns": {"name": "Freshëns", "icon": "temaki-drink_cup", "imageURL": "https://graph.facebook.com/Freshens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88353412", "amenity": "fast_food", "cuisine": "juice;salad"}, "addTags": {"amenity": "fast_food", "brand": "Freshëns", "brand:wikidata": "Q88353412", "cuisine": "juice;salad", "name": "Freshëns", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "juice"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Gabriel Pizza": {"name": "Gabriel Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/gabrielpizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5515791", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Gabriel Pizza", "brand:wikidata": "Q5515791", "brand:wikipedia": "en:Gabriel Pizza", "cuisine": "pizza", "name": "Gabriel Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Gino's Pizza (Canada)": {"name": "Gino's Pizza (Canada)", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/GinosPizzaGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q84029134", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Gino's Pizza", "brand:wikidata": "Q84029134", "cuisine": "pizza", "name": "Gino's Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Gino's Pizza (West Virginia)": {"name": "Gino's Pizza (West Virginia)", "icon": "maki-restaurant-pizza", "imageURL": "https://pbs.twimg.com/profile_images/1240550288/TwitterProfile_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5563205", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Gino's Pizza", "brand:wikidata": "Q5563205", "brand:wikipedia": "en:Gino's Pizza and Spaghetti", "cuisine": "pizza", "name": "Gino's Pizza", "official_name": "Gino's Pizza & Spaghetti House", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Gold Star Chili": {"name": "Gold Star Chili", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/goldstarchili/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16994254", "amenity": "fast_food"}, "addTags": {"alt_name": "Gold Star", "amenity": "fast_food", "brand": "Gold Star Chili", "brand:wikidata": "Q16994254", "brand:wikipedia": "en:Gold Star Chili", "cuisine": "chili", "name": "Gold Star Chili", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Golden Chick": {"name": "Golden Chick", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/GoldenChick/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3772930", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Golden Chick", "brand:wikidata": "Q3772930", "brand:wikipedia": "en:Golden Chick", "cuisine": "chicken", "name": "Golden Chick", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Golden Krust Caribbean Bakery & Grill": {"name": "Golden Krust Caribbean Bakery & Grill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/GoldenKrust/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5579615", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Golden Krust Caribbean Bakery & Grill", "brand:wikidata": "Q5579615", "brand:wikipedia": "en:Golden Krust Caribbean Bakery & Grill", "cuisine": "caribbean", "name": "Golden Krust", "takeaway": "yes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Good Times": {"name": "Good Times", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/culvers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1143589", "amenity": "fast_food", "cuisine": "burger;ice_cream"}, "addTags": {"amenity": "fast_food", "brand": "Good Times", "brand:wikidata": "Q1143589", "brand:wikipedia": "en:Good Times Burgers & Frozen Custard", "cuisine": "burger;ice_cream", "name": "Good Times", "official_name": "Good Times Burgers & Frozen Custard", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Great American Cookies": {"name": "Great American Cookies", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/greatamericancookies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5598629", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Great American Cookies", "brand:wikidata": "Q5598629", "brand:wikipedia": "en:Great American Cookies", "cuisine": "cookies", "name": "Great American Cookies", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Greenwich": {"name": "Greenwich", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/GreenwichPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2691308", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Greenwich", "brand:wikidata": "Q2691308", "brand:wikipedia": "en:Greenwich Pizza", "cuisine": "pizza", "name": "Greenwich", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Greggs": {"name": "Greggs", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/greggsofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3403981", "amenity": "fast_food", "cuisine": "sandwich;bakery"}, "addTags": {"amenity": "fast_food", "brand": "Greggs", "brand:wikidata": "Q3403981", "brand:wikipedia": "en:Greggs", "cuisine": "sandwich;bakery", "name": "Greggs", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Grill'd": {"name": "Grill'd", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/GrilldBurgers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18165852", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Grill'd", "brand:wikidata": "Q18165852", "brand:wikipedia": "en:Grill'd", "cuisine": "burger", "name": "Grill'd", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Habib's": {"name": "Habib's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/habibsoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2504930", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Habib's", "brand:wikidata": "Q2504930", "brand:wikipedia": "en:Habib's", "cuisine": "middle_eastern", "name": "Habib's", "takeaway": "yes"}, "countryCodes": ["br", "mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Hallo Pizza": {"name": "Hallo Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Hallo.Pizza.Deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1571798", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Hallo Pizza", "brand:wikidata": "Q1571798", "brand:wikipedia": "de:Hallo Pizza", "cuisine": "pizza", "name": "Hallo Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Hardee's": {"name": "Hardee's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hardees/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1585088", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Hardee's", "brand:wikidata": "Q1585088", "brand:wikipedia": "en:Hardee's", "cuisine": "burger", "name": "Hardee's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/fish_and_chips/Harry Ramsden's": {"name": "Harry Ramsden's", "icon": "fas-fish", "imageURL": "https://graph.facebook.com/harryramsdensuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5671849", "amenity": "fast_food", "cuisine": "fish_and_chips"}, "addTags": {"amenity": "fast_food", "brand": "Harry Ramsden's", "brand:wikidata": "Q5671849", "brand:wikipedia": "en:Harry Ramsden's", "cuisine": "fish_and_chips", "name": "Harry Ramsden's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "fish_and_chips"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Harvey's": {"name": "Harvey's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/HarveysCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1466184", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Harvey's", "brand:wikidata": "Q1466184", "brand:wikipedia": "en:Harvey's", "cuisine": "burger", "name": "Harvey's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Herfy": {"name": "Herfy", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/herfyfscksa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5738371", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Herfy", "brand:ar": "هرفي", "brand:en": "Herfy", "brand:wikidata": "Q5738371", "brand:wikipedia": "en:Herfy", "cuisine": "burger", "name": "Herfy", "name:ar": "هرفي", "name:en": "Herfy", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ae", "bd", "bh", "kw", "sa"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Hero Certified Burgers": {"name": "Hero Certified Burgers", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/HeroBurgers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5742641", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Hero Certified Burgers", "brand:wikidata": "Q5742641", "brand:wikipedia": "en:Hero Certified Burgers", "cuisine": "burger", "name": "Hero Certified Burgers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Hesburger": {"name": "Hesburger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hesburger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1276832", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Hesburger", "brand:wikidata": "Q1276832", "brand:wikipedia": "en:Hesburger", "cuisine": "burger", "name": "Hesburger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Honey Baked Ham": {"name": "Honey Baked Ham", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/HoneyBaked/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5893363", "amenity": "fast_food"}, "addTags": {"alt_name": "HoneyBaked Ham", "amenity": "fast_food", "brand": "Honey Baked Ham", "brand:wikidata": "Q5893363", "brand:wikipedia": "en:The Honey Baked Ham Company", "cuisine": "american", "name": "Honey Baked Ham", "official_name": "The Honey Baked Ham Company", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["honey baked ham company"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/hot_dog/Hot Dog on a Stick": {"name": "Hot Dog on a Stick", "icon": "fas-hotdog", "imageURL": "https://graph.facebook.com/HotDogonaStick/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5909922", "amenity": "fast_food", "cuisine": "hot_dog"}, "addTags": {"amenity": "fast_food", "brand": "Hot Dog on a Stick", "brand:wikidata": "Q5909922", "brand:wikipedia": "en:Hot Dog on a Stick", "cuisine": "hot_dog", "name": "Hot Dog on a Stick", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "hot_dog"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Hot Head Burritos": {"name": "Hot Head Burritos", "icon": "fas-pepper-hot", "imageURL": "https://pbs.twimg.com/profile_images/956274820035022853/SBuliAdo_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5910008", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Hot Head Burritos", "brand:wikidata": "Q5910008", "brand:wikipedia": "en:Hot Head Burritos", "cuisine": "mexican", "name": "Hot Head Burritos", "short_name": "Hot Head", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/HuHot": {"name": "HuHot", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/huhot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5924606", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "HuHot", "brand:wikidata": "Q5924606", "brand:wikipedia": "en:HuHot Mongolian Grill", "cuisine": "bbq", "name": "HuHot", "official_name": "HuHot Mongolian Grill", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Hungry Howie's": {"name": "Hungry Howie's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/hungryhowies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16985303", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Hungry Howie's", "brand:wikidata": "Q16985303", "brand:wikipedia": "en:Hungry Howie's Pizza", "cuisine": "pizza", "name": "Hungry Howie's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": ["hungry howies pizza"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Hungry Jacks": {"name": "Hungry Jacks", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/HungryJacks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3036373", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Hungry Jacks", "brand:wikidata": "Q3036373", "brand:wikipedia": "en:Hungry Jack's", "cuisine": "burger", "name": "Hungry Jacks", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/IKEA Restaurant": {"name": "IKEA Restaurant", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/IKEA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q54078", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "IKEA", "brand:wikidata": "Q54078", "brand:wikipedia": "en:IKEA", "cuisine": "swedish", "name": "IKEA Restaurant", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Imo's Pizza": {"name": "Imo's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/imospizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6005623", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Imo's Pizza", "brand:wikidata": "Q6005623", "brand:wikipedia": "en:Imo's Pizza", "cuisine": "pizza", "name": "Imo's Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/In-N-Out Burger": {"name": "In-N-Out Burger", "icon": "maki-fast-food", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FInNOut.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1205312", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "In-N-Out Burger", "brand:wikidata": "Q1205312", "brand:wikipedia": "en:In-N-Out Burger", "cuisine": "burger", "name": "In-N-Out Burger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Jack in the Box": {"name": "Jack in the Box", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/jackinthebox/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1538507", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Jack in the Box", "brand:wikidata": "Q1538507", "brand:wikipedia": "en:Jack in the Box", "cuisine": "burger", "name": "Jack in the Box", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Jack's": {"name": "Jack's", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1194591890965966848/ajrBO2Z3_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6110826", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Jack's", "brand:wikidata": "Q6110826", "brand:wikipedia": "en:Jack's", "cuisine": "burger", "name": "Jack's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/juice/Jamba Juice": {"name": "Jamba Juice", "icon": "temaki-drink_cup", "imageURL": "https://graph.facebook.com/jambajuice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3088784", "amenity": "fast_food", "cuisine": "juice"}, "addTags": {"amenity": "fast_food", "brand": "Jamba Juice", "brand:wikidata": "Q3088784", "brand:wikipedia": "en:Jamba Juice", "cuisine": "juice", "name": "Jamba Juice", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "juice"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Jersey Mike's Subs": {"name": "Jersey Mike's Subs", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/jerseymikes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6184897", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Jersey Mike's Subs", "brand:wikidata": "Q6184897", "brand:wikipedia": "en:Jersey Mike's Subs", "cuisine": "sandwich", "name": "Jersey Mike's Subs", "short_name": "Jersey Mike's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Jimmy John's": {"name": "Jimmy John's", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/jimmyjohns/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1689380", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Jimmy John's", "brand:wikidata": "Q1689380", "brand:wikipedia": "en:Jimmy John's", "cuisine": "sandwich", "name": "Jimmy John's", "official_name": "Jimmy John's Gourmet Sandwiches", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Jimmy the Greek": {"name": "Jimmy the Greek", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/gimmejimmy.jtg/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17077817", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Jimmy the Greek", "brand:wikidata": "Q17077817", "brand:wikipedia": "en:Jimmy the Greek (restaurant)", "cuisine": "greek", "name": "Jimmy the Greek", "takeaway": "yes"}, "countryCodes": ["ae", "ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Jollibee": {"name": "Jollibee", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/JollibeePhilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q37614", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Jollibee", "brand:wikidata": "Q37614", "brand:wikipedia": "en:Jollibee", "cuisine": "burger", "name": "Jollibee", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Just Salad": {"name": "Just Salad", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/justsalad/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23091823", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Just Salad", "brand:wikidata": "Q23091823", "brand:wikipedia": "en:Just Salad", "cuisine": "salad", "name": "Just Salad", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/KFC": {"name": "KFC", "icon": "fas-drumstick-bite", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKFC%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q524757", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"alt_name": "Kentucky Fried Chicken", "amenity": "fast_food", "brand": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "en:KFC", "cuisine": "chicken", "name": "KFC", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Kernels Popcorn": {"name": "Kernels Popcorn", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/kernelspopcorn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64876684", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Kernels Popcorn", "brand:wikidata": "Q64876684", "cuisine": "popcorn", "name": "Kernels Popcorn", "takeaway": "yes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Kochlöffel": {"name": "Kochlöffel", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Kochloeffel.Deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q315539", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Kochlöffel", "brand:wikidata": "Q315539", "brand:wikipedia": "en:Kochlöffel", "cuisine": "burger", "name": "Kochlöffel", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["de", "tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Kotipizza": {"name": "Kotipizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/kotipizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1628625", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Kotipizza", "brand:wikidata": "Q1628625", "brand:wikipedia": "en:Kotipizza", "cuisine": "pizza", "name": "Kotipizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/donut/Krispy Kreme": {"name": "Krispy Kreme", "icon": "temaki-donut", "imageURL": "https://graph.facebook.com/KrispyKreme/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1192805", "amenity": "fast_food", "cuisine": "donut"}, "addTags": {"amenity": "fast_food", "brand": "Krispy Kreme", "brand:wikidata": "Q1192805", "brand:wikipedia": "en:Krispy Kreme", "cuisine": "donut", "name": "Krispy Kreme", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "donut"}, "terms": ["krispy kreme doughnuts"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Krispy Krunchy Chicken": {"name": "Krispy Krunchy Chicken", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/Krispy.Krunchy.Foods.LLC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65087447", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Krispy Krunchy Chicken", "brand:wikidata": "Q65087447", "brand:wikipedia": "en:Krispy Krunchy Chicken", "cuisine": "chicken", "name": "Krispy Krunchy Chicken", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["mx", "us"], "terms": ["crispy crunchy chicken"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Krystal": {"name": "Krystal", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Krystal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q472195", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Krystal", "brand:wikidata": "Q472195", "brand:wikipedia": "en:Krystal (restaurant)", "cuisine": "burger", "name": "Krystal", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Kudu": {"name": "Kudu", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/KuduRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6441777", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Kudu", "brand:wikidata": "Q6441777", "brand:wikipedia": "en:Kudu (restaurant)", "cuisine": "sandwich", "name": "Kudu", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["bh", "jo", "sa"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/L&L Drive-Inn (Hawaii)": {"name": "L&L Drive-Inn (Hawaii)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hawaiianbarbecue/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6455441", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "L&L Drive-Inn", "brand:wikidata": "Q6455441", "brand:wikipedia": "en:L&L Hawaiian Barbecue", "cuisine": "hawaiian", "name": "L&L Drive-Inn", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["l&l", "l&l drive-in"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/L&L Hawaiian Barbecue": {"name": "L&L Hawaiian Barbecue", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hawaiianbarbecue/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6455441", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "L&L Hawaiian Barbecue", "brand:wikidata": "Q6455441", "brand:wikipedia": "en:L&L Hawaiian Barbecue", "cuisine": "hawaiian", "name": "L&L Hawaiian Barbecue", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["l&l", "l&l hawaiian bbq"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/LEON": {"name": "LEON", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1166629678184054784/oDbvI41-_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6524851", "amenity": "fast_food", "cuisine": "burger;sandwich"}, "addTags": {"amenity": "fast_food", "brand": "LEON", "brand:wikidata": "Q6524851", "brand:wikipedia": "en:Leon Restaurants", "cuisine": "burger;sandwich", "name": "LEON", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ch", "gb", "ie", "nl", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/La Belle Province": {"name": "La Belle Province", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/restolbp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3206579", "amenity": "fast_food", "cuisine": "burger;sandwich"}, "addTags": {"amenity": "fast_food", "brand": "La Belle Province", "brand:wikidata": "Q3206579", "brand:wikipedia": "fr:La Belle Province (restaurant)", "cuisine": "burger;sandwich", "name": "La Belle Province", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/La Salsa": {"name": "La Salsa", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/lasalsa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48835190", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "La Salsa", "brand:wikidata": "Q48835190", "brand:wikipedia": "en:La Salsa", "cuisine": "tex-mex", "name": "La Salsa", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Lee's Famous Recipe Chicken": {"name": "Lee's Famous Recipe Chicken", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/LeesFamousRecipeChicken/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6512810", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Lee's Famous Recipe Chicken", "brand:wikidata": "Q6512810", "brand:wikipedia": "en:Lee's Famous Recipe Chicken", "cuisine": "chicken", "name": "Lee's Famous Recipe Chicken", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["ca", "us"], "terms": ["lee's"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Lee's Sandwiches": {"name": "Lee's Sandwiches", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/LeesSandwiches/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6512823", "amenity": "fast_food", "cuisine": "vietnamese;sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Lee's Sandwiches", "brand:wikidata": "Q6512823", "brand:wikipedia": "en:Lee's Sandwiches", "cuisine": "vietnamese;sandwich", "name": "Lee's Sandwiches", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Little Caesars": {"name": "Little Caesars", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/LittleCaesars/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1393809", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Little Caesars", "brand:wikidata": "Q1393809", "brand:wikipedia": "en:Little Caesars", "cuisine": "pizza", "name": "Little Caesars", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": ["little caesars pizza", "little ceasars", "little ceasars pizza"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Long John Silver's": {"name": "Long John Silver's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/LongJohnSilvers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1535221", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Long John Silver's", "brand:wikidata": "Q1535221", "brand:wikipedia": "en:Long John Silver's", "cuisine": "seafood", "name": "Long John Silver's", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Lotteria": {"name": "Lotteria", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ilovelotteria/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q249525", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Lotteria", "brand:wikidata": "Q249525", "brand:wikipedia": "en:Lotteria", "cuisine": "burger", "name": "Lotteria", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/MOD Pizza": {"name": "MOD Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/MODPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19903469", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "MOD Pizza", "brand:wikidata": "Q19903469", "brand:wikipedia": "en:MOD Pizza", "cuisine": "pizza", "name": "MOD Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Manchu Wok": {"name": "Manchu Wok", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ManchuWOKRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6747622", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Manchu Wok", "brand:wikidata": "Q6747622", "brand:wikipedia": "en:Manchu Wok", "cuisine": "chinese", "name": "Manchu Wok", "takeaway": "yes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Mang Inasal": {"name": "Mang Inasal", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/MangInasalPhilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6748573", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Mang Inasal", "brand:wikidata": "Q6748573", "brand:wikipedia": "en:Mang Inasal", "cuisine": "barbecue", "name": "Mang Inasal", "takeaway": "yes"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Manhattan Bagel": {"name": "Manhattan Bagel", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ManhattanBagel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64517333", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Manhattan Bagel", "brand:wikidata": "Q64517333", "cuisine": "bagel", "name": "Manhattan Bagel", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["manhattan bagels"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Mary Brown's": {"name": "Mary Brown's", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/MaryBrowns/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6779125", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Mary Brown's", "brand:wikidata": "Q6779125", "brand:wikipedia": "en:Mary Brown's", "cuisine": "chicken", "name": "Mary Brown's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Max": {"name": "Max", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/maxburgers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1912172", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Max", "brand:wikidata": "Q1912172", "brand:wikipedia": "en:Max Hamburgers", "cuisine": "burger", "name": "Max", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/McDonald's": {"name": "McDonald's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q38076", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "cuisine": "burger", "name": "McDonald's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Meson Sandwiches": {"name": "Meson Sandwiches", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/elmesonsandwiches/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5351585", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"alt_name": "El Meson Sandwiches", "amenity": "fast_food", "brand": "Meson Sandwiches", "brand:wikidata": "Q5351585", "brand:wikipedia": "en:El Meson Sandwiches", "cuisine": "sandwich", "name": "Meson Sandwiches", "short_name": "Meson", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": ["el meson"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Mighty Taco": {"name": "Mighty Taco", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/MyMightyTaco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6844210", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Mighty Taco", "brand:wikidata": "Q6844210", "brand:wikipedia": "en:Mighty Taco", "cuisine": "mexican", "name": "Mighty Taco", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Minute Burger": {"name": "Minute Burger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/MinuteBurger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62273503", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Minute Burger", "brand:wikidata": "Q62273503", "cuisine": "burger", "name": "Minute Burger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Moe's Southwest Grill": {"name": "Moe's Southwest Grill", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/MoesSouthwestGrill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6889938", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Moe's Southwest Grill", "brand:wikidata": "Q6889938", "brand:wikipedia": "en:Moe's Southwest Grill", "cuisine": "mexican", "name": "Moe's Southwest Grill", "short_name": "Moe's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Morley's": {"name": "Morley's", "icon": "fas-drumstick-bite", "imageURL": "https://pbs.twimg.com/profile_images/845831830066659328/xY231QEy_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21008528", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Morley's", "brand:wikidata": "Q21008528", "brand:wikipedia": "en:Morley's", "cuisine": "chicken", "name": "Morley's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Mr. Sub": {"name": "Mr. Sub", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/mrsub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6929225", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Mr. Sub", "brand:wikidata": "Q6929225", "brand:wikipedia": "en:Mr. Sub", "cuisine": "sandwich", "name": "Mr. Sub", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Mucho Burrito": {"name": "Mucho Burrito", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/MuchoBurritoHQ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65148332", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Mucho Burrito", "brand:wikidata": "Q65148332", "cuisine": "mexican", "name": "Mucho Burrito", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/hot_dog/Nathan's": {"name": "Nathan's", "icon": "fas-hotdog", "imageURL": "https://graph.facebook.com/nathansfamous/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1319505", "amenity": "fast_food", "cuisine": "hot_dog"}, "addTags": {"amenity": "fast_food", "brand": "Nathan's", "brand:wikidata": "Q1319505", "brand:wikipedia": "en:Nathan's Famous", "cuisine": "hot_dog", "name": "Nathan's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "hot_dog"}, "countryCodes": ["us"], "terms": ["nathans famous"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Nestlé Toll House Café": {"name": "Nestlé Toll House Café", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1059491137700814848/KtzCuNTH_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6997922", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Nestlé Toll House Café", "brand:wikidata": "Q6997922", "brand:wikipedia": "en:Nestlé Toll House Café", "cuisine": "dessert", "name": "Nestlé Toll House Café", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/New York Fries": {"name": "New York Fries", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/NewYorkFries/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7013558", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "New York Fries", "brand:wikidata": "Q7013558", "brand:wikipedia": "en:New York Fries", "cuisine": "fries", "name": "New York Fries", "takeaway": "yes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/New York Pizza": {"name": "New York Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/newyorkpizza.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2639128", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "New York Pizza", "brand:wikidata": "Q2639128", "brand:wikipedia": "nl:New York Pizza", "cuisine": "pizza", "name": "New York Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Noah's Bagels": {"name": "Noah's Bagels", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/NoahsBagels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64517373", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Noah's Bagels", "brand:wikidata": "Q64517373", "cuisine": "bagel", "name": "Noah's Bagels", "official_name": "Noah's New York Bagels", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["noahs ny bagels"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Noodle Box": {"name": "Noodle Box", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/NoodleBoxAustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7049671", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Noodle Box", "brand:wikidata": "Q7049671", "brand:wikipedia": "en:Noodle Box", "cuisine": "noodle", "name": "Noodle Box", "takeaway": "yes"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Nordsee": {"name": "Nordsee", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/NORDSEEDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q74866", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Nordsee", "brand:wikidata": "Q74866", "brand:wikipedia": "en:Nordsee", "cuisine": "seafood", "name": "Nordsee", "takeaway": "yes"}, "countryCodes": ["at", "ch", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Num Pang": {"name": "Num Pang", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/NumPangKitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62079702", "amenity": "fast_food", "cuisine": "cambodian;sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Num Pang", "brand:wikidata": "Q62079702", "brand:wikipedia": "en:Num Pang", "cuisine": "cambodian;sandwich", "name": "Num Pang", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/O'Tacos": {"name": "O'Tacos", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/Otacos.France/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28494040", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "O'Tacos", "brand:wikidata": "Q28494040", "brand:wikipedia": "en:O'Tacos", "cuisine": "mexican", "name": "O'Tacos", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["be", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Oporto": {"name": "Oporto", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Oportos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4412342", "amenity": "fast_food", "cuisine": "burger;chicken"}, "addTags": {"amenity": "fast_food", "brand": "Oporto", "brand:wikidata": "Q4412342", "brand:wikipedia": "en:Oporto (restaurant)", "cuisine": "burger;chicken", "name": "Oporto", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/juice/Orange Julius": {"name": "Orange Julius", "icon": "temaki-drink_cup", "imageURL": "https://graph.facebook.com/OrangeJulius/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3355059", "amenity": "fast_food", "cuisine": "juice"}, "addTags": {"amenity": "fast_food", "brand": "Orange Julius", "brand:wikidata": "Q3355059", "brand:wikipedia": "en:Orange Julius", "cuisine": "juice", "name": "Orange Julius", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "juice"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/P. Terry's": {"name": "P. Terry's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/pterrys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19903521", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "P. Terry's", "brand:wikidata": "Q19903521", "brand:wikipedia": "en:P. Terry's", "cuisine": "burger", "name": "P. Terry's", "official_name": "P. Terry's Burger Stand", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Pal's": {"name": "Pal's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Palsweb/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7126094", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Pal's", "brand:wikidata": "Q7126094", "brand:wikipedia": "en:Pal's", "cuisine": "burger", "name": "Pal's", "official_name": "Pal's Sudden Service", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Panago": {"name": "Panago", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/panago/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17111672", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Panago", "brand:wikidata": "Q17111672", "brand:wikipedia": "en:Panago", "cuisine": "pizza", "name": "Panago", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Panda Express": {"name": "Panda Express", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/PandaExpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1358690", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Panda Express", "brand:wikidata": "Q1358690", "brand:wikipedia": "en:Panda Express", "cuisine": "chinese", "name": "Panda Express", "takeaway": "yes"}, "terms": ["panda"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Panera Bread": {"name": "Panera Bread", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/panerabread/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7130852", "amenity": "fast_food", "cuisine": "sandwich;bakery"}, "addTags": {"amenity": "fast_food", "brand": "Panera Bread", "brand:wikidata": "Q7130852", "brand:wikipedia": "en:Panera Bread", "cuisine": "sandwich;bakery", "name": "Panera Bread", "short_name": "Panera", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Panos": {"name": "Panos", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/PanosBelgium/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3384496", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Panos", "brand:wikidata": "Q3384496", "brand:wikipedia": "nl:Panos", "cuisine": "sandwich", "name": "Panos", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["ae", "be", "cz", "nl", "pl", "sk", "tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Pans & Company": {"name": "Pans & Company", "icon": "temaki-sandwich", "imageURL": "https://pbs.twimg.com/profile_images/1039055431996530688/bgRgkBHD_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11697586", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Pans & Company", "brand:wikidata": "Q11697586", "brand:wikipedia": "es:Pans & Company", "cuisine": "sandwich", "name": "Pans & Company", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["es", "it", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Papa John's": {"name": "Papa John's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/papajohns/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2759586", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Papa John's", "brand:wikidata": "Q2759586", "brand:wikipedia": "en:Papa John's Pizza", "cuisine": "pizza", "name": "Papa John's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": ["papa john", "papa john pizza", "papa johns pizza"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Papa Murphy's": {"name": "Papa Murphy's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/papamurphyspizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7132349", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Papa Murphy's", "brand:wikidata": "Q7132349", "brand:wikipedia": "en:Papa Murphy's", "cuisine": "pizza", "name": "Papa Murphy's", "official_name": "Papa Murphy's Take 'N' Bake Pizza", "takeaway": "only"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca", "us"], "terms": ["papa murphy", "papa murphy pizza", "papa murphys pizza"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Penn Station": {"name": "Penn Station", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/pennstation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7163311", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Penn Station", "brand:wikidata": "Q7163311", "brand:wikipedia": "en:Penn Station (restaurant)", "cuisine": "sandwich", "name": "Penn Station", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Philly Pretzel Factory": {"name": "Philly Pretzel Factory", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/PhillyPretzel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60097339", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Philly Pretzel Factory", "brand:wikidata": "Q60097339", "cuisine": "pretzel", "name": "Philly Pretzel Factory", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["philadelphia pretzel factory", "philadelphia soft pretzel factory", "philly soft pretzel factory"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Pinulito": {"name": "Pinulito", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/elsabordenuestragente/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62273613", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Pinulito", "brand:wikidata": "Q62273613", "cuisine": "chicken", "name": "Pinulito", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["gt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Pita Pit": {"name": "Pita Pit", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/pitapitusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7757289", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Pita Pit", "brand:wikidata": "Q7757289", "brand:wikipedia": "en:Pita Pit", "cuisine": "pita", "name": "Pita Pit", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza 73": {"name": "Pizza 73", "icon": "maki-restaurant-pizza", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7199950", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Pizza 73", "brand:wikidata": "Q7199950", "brand:wikipedia": "en:Pizza 73", "cuisine": "pizza", "name": "Pizza 73", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Capers": {"name": "Pizza Capers", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/PizzaCapers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17021875", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Capers", "brand:wikidata": "Q17021875", "brand:wikipedia": "en:Pizza Capers", "cuisine": "pizza", "name": "Pizza Capers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Hut Delivery": {"name": "Pizza Hut Delivery", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzahutus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q191615", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut Delivery", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Hut Express": {"name": "Pizza Hut Express", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzahutus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q191615", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut Express", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Inn": {"name": "Pizza Inn", "icon": "maki-restaurant-pizza", "imageURL": "https://pbs.twimg.com/profile_images/959101899675901952/2SogbY41_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4118850", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Inn", "brand:wikidata": "Q4118850", "brand:wikipedia": "en:Pizza Inn", "cuisine": "pizza", "name": "Pizza Inn", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Móvil": {"name": "Pizza Móvil", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzamovil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12397697", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Móvil", "brand:wikidata": "Q12397697", "brand:wikipedia": "gl:Pizza Móvil", "cuisine": "pizza", "name": "Pizza Móvil", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Nova": {"name": "Pizza Nova", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/PizzaNova/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7199971", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Nova", "brand:wikidata": "Q7199971", "brand:wikipedia": "en:Pizza Nova", "cuisine": "pizza", "name": "Pizza Nova", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Paï": {"name": "Pizza Paï", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/PizzaPai/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3389501", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Paï", "brand:wikidata": "Q3389501", "brand:wikipedia": "fr:PizzaPai", "cuisine": "pizza", "name": "Pizza Paï", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Pizza": {"name": "Pizza Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/PizzaPizzaCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1194143", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Pizza", "brand:wikidata": "Q1194143", "brand:wikipedia": "en:Pizza Pizza", "cuisine": "pizza", "name": "Pizza Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Pizza Schmizza": {"name": "Pizza Schmizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/schmizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7199979", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Pizza Schmizza", "brand:wikidata": "Q7199979", "brand:wikipedia": "en:Pizza Schmizza", "cuisine": "pizza", "name": "Pizza Schmizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Pollo Campero": {"name": "Pollo Campero", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/CamperoUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q942741", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Pollo Campero", "brand:wikidata": "Q942741", "brand:wikipedia": "en:Pollo Campero", "cuisine": "chicken", "name": "Pollo Campero", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Pollo Granjero (Costa Rica)": {"name": "Pollo Granjero (Costa Rica)", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/PolloGranjeroCostaRica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62273665", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Pollo Granjero", "brand:wikidata": "Q62273665", "cuisine": "chicken", "name": "Pollo Granjero", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["cr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Pollo Granjero (Guatemala)": {"name": "Pollo Granjero (Guatemala)", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/PolloGranjeroGuatemala/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62273652", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Pollo Granjero", "brand:wikidata": "Q62273652", "cuisine": "chicken", "name": "Pollo Granjero", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["gt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Pollo Tropical": {"name": "Pollo Tropical", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/PolloTropical/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3395356", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Pollo Tropical", "brand:wikidata": "Q3395356", "brand:wikipedia": "en:Pollo Tropical", "cuisine": "chicken", "name": "Pollo Tropical", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Popeyes": {"name": "Popeyes", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/PopeyesLouisianaKitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1330910", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Popeyes", "brand:wikidata": "Q1330910", "brand:wikipedia": "en:Popeyes", "cuisine": "chicken", "name": "Popeyes", "official_name": "Popeyes Louisiana Kitchen", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/hot_dog/Portillo's": {"name": "Portillo's", "icon": "fas-hotdog", "imageURL": "https://graph.facebook.com/portillos.hotdog/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3399307", "amenity": "fast_food", "cuisine": "hot_dog;burger"}, "addTags": {"amenity": "fast_food", "brand": "Portillo's", "brand:wikidata": "Q3399307", "brand:wikipedia": "en:Portillo's Restaurants", "cuisine": "hot_dog;burger", "name": "Portillo's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "hot_dog"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Potbelly": {"name": "Potbelly", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/potbellysandwichshop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7234777", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Potbelly", "brand:wikidata": "Q7234777", "brand:wikipedia": "en:Potbelly Sandwich Shop", "cuisine": "sandwich", "name": "Potbelly", "official_name": "Potbelly Sandwich Works", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": ["potbelly sandwich shop"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Pret A Manger": {"name": "Pret A Manger", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/pretamangerusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2109109", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Pret A Manger", "brand:wikidata": "Q2109109", "brand:wikipedia": "en:Pret a Manger", "cuisine": "sandwich", "name": "Pret A Manger", "short_name": "Pret", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["ae", "cn", "de", "dk", "fr", "gb", "hk", "nl", "sg", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Pretzelmaker": {"name": "Pretzelmaker", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/pretzelmaker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7242321", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Pretzelmaker", "brand:wikidata": "Q7242321", "brand:wikipedia": "en:Pretzelmaker", "cuisine": "pretzel", "name": "Pretzelmaker", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["pretzel time"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Qdoba": {"name": "Qdoba", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/qdoba/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1363885", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Qdoba", "brand:wikidata": "Q1363885", "brand:wikipedia": "en:Qdoba", "cuisine": "mexican", "name": "Qdoba", "official_name": "Qdoba Mexican Grill", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Quesada": {"name": "Quesada", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/QuesadaBurritos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66070360", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Quesada", "brand:wikidata": "Q66070360", "cuisine": "mexican", "name": "Quesada", "official_name": "Quesada Burritos & Tacos", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Quick": {"name": "Quick", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/QuickBelgium/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q286494", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Quick", "brand:wikidata": "Q286494", "brand:wikipedia": "en:Quick (restaurant)", "cuisine": "burger", "name": "Quick", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["be", "fr", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Quiznos": {"name": "Quiznos", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/Quiznos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1936229", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Quiznos", "brand:wikidata": "Q1936229", "brand:wikipedia": "en:Quiznos", "cuisine": "sandwich", "name": "Quiznos", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "terms": ["quiznos sub", "quiznos subs"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Raising Cane's": {"name": "Raising Cane's", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/RaisingCanesChickenFingers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7285144", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Raising Cane's", "brand:wikidata": "Q7285144", "brand:wikipedia": "en:Raising Cane's Chicken Fingers", "cuisine": "chicken", "name": "Raising Cane's", "official_name": "Raising Cane's Chicken Fingers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Rally's": {"name": "Rally's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/checkersrallys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63919323", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Rally's", "brand:wikidata": "Q63919323", "cuisine": "burger", "name": "Rally's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Red Rooster": {"name": "Red Rooster", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/RedRoosterAU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q376466", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Red Rooster", "brand:wikidata": "Q376466", "brand:wikipedia": "en:Red Rooster", "cuisine": "chicken", "name": "Red Rooster", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/donut/Robin's Donuts": {"name": "Robin's Donuts", "icon": "temaki-donut", "imageURL": "https://graph.facebook.com/RobinsDonutsCAN/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7352199", "amenity": "fast_food", "cuisine": "donut"}, "addTags": {"amenity": "fast_food", "brand": "Robin's Donuts", "brand:wikidata": "Q7352199", "brand:wikipedia": "en:Robin's Donuts", "cuisine": "donut", "name": "Robin's Donuts", "short_name": "Robin's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "donut"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Roy Rogers": {"name": "Roy Rogers", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/RoyRogersRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7373311", "amenity": "fast_food", "cuisine": "burger;sandwich;chicken"}, "addTags": {"amenity": "fast_food", "brand": "Roy Rogers", "brand:wikidata": "Q7373311", "brand:wikipedia": "en:Roy Rogers Restaurants", "cuisine": "burger;sandwich;chicken", "name": "Roy Rogers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Rubio's": {"name": "Rubio's", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/rubios/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7376154", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Rubio's", "brand:wikidata": "Q7376154", "brand:wikipedia": "en:Rubio's Coastal Grill", "cuisine": "mexican", "name": "Rubio's", "official_name": "Rubio's Coastal Grill", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": ["rubios fresh mexican grill"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/SUSU & Sons": {"name": "SUSU & Sons", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/susuandsons/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64760081", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "SUSU & Sons", "brand:en": "SUSU & Sons", "brand:he": "סוסו אנד סאנס", "brand:wikidata": "Q64760081", "cuisine": "burger", "name": "SUSU & Sons", "name:en": "SUSU & Sons", "name:he": "סוסו אנד סאנס", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["il"], "terms": ["סוסו ובניו"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Sarku Japan": {"name": "Sarku Japan", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/SarkuJapanColombia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7424243", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Sarku Japan", "brand:wikidata": "Q7424243", "cuisine": "japanese", "name": "Sarku Japan", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Sarpino's Pizzeria": {"name": "Sarpino's Pizzeria", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/SarpinosPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28229116", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Sarpino's Pizzeria", "brand:wikidata": "Q28229116", "brand:wikipedia": "en:Sarpino's Pizzeria", "cuisine": "pizza", "name": "Sarpino's Pizzeria", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Sbarro": {"name": "Sbarro", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Sbarro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2589409", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Sbarro", "brand:wikidata": "Q2589409", "brand:wikipedia": "en:Sbarro", "cuisine": "pizza", "name": "Sbarro", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": ["sbarro pizzeria"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Schlotzsky's": {"name": "Schlotzsky's", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/Schlotzskys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2244796", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Schlotzsky's", "brand:wikidata": "Q2244796", "brand:wikipedia": "en:Schlotzsky's", "cuisine": "sandwich", "name": "Schlotzsky's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": ["schlotzskys deli"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Schnitz": {"name": "Schnitz", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/SchnitzAU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48792277", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Schnitz", "brand:wikidata": "Q48792277", "brand:wikipedia": "en:Schnitz", "cuisine": "chicken", "name": "Schnitz", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Shake Shack": {"name": "Shake Shack", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/shakeshack/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1058722", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Shake Shack", "brand:wikidata": "Q1058722", "brand:wikipedia": "en:Shake Shack", "cuisine": "burger", "name": "Shake Shack", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Sibylla": {"name": "Sibylla", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/sibyllasverige/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q488643", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Sibylla", "brand:wikidata": "Q488643", "brand:wikipedia": "en:Sibylla (fast food)", "cuisine": "burger", "name": "Sibylla", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["fi", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Smashburger": {"name": "Smashburger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/smashburger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17061332", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Smashburger", "brand:wikidata": "Q17061332", "brand:wikipedia": "en:Smashburger", "cuisine": "burger", "name": "Smashburger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/juice/Smoothie King": {"name": "Smoothie King", "icon": "temaki-drink_cup", "imageURL": "https://graph.facebook.com/SmoothieKing/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5491421", "amenity": "fast_food", "cuisine": "juice"}, "addTags": {"amenity": "fast_food", "brand": "Smoothie King", "brand:wikidata": "Q5491421", "brand:wikipedia": "en:Smoothie King", "cuisine": "juice", "name": "Smoothie King", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "juice"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Sonic": {"name": "Sonic", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/sonicdrivein/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7561808", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Sonic", "brand:wikidata": "Q7561808", "brand:wikipedia": "en:Sonic Drive-In", "cuisine": "burger", "drive_in": "yes", "name": "Sonic", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": ["sonic drive in"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Specialty's": {"name": "Specialty's", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/specialtys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64339210", "amenity": "fast_food", "cuisine": "sandwich;bakery"}, "addTags": {"amenity": "fast_food", "brand": "Specialty's", "brand:wikidata": "Q64339210", "cuisine": "sandwich;bakery", "name": "Specialty's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/St-Hubert Express": {"name": "St-Hubert Express", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/sthubert/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3495225", "amenity": "fast_food", "cuisine": "chicken;barbecue"}, "addTags": {"amenity": "fast_food", "brand": "St-Hubert", "brand:wikidata": "Q3495225", "brand:wikipedia": "fr:St-Hubert (restaurant)", "cuisine": "chicken;barbecue", "name": "St-Hubert Express", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Steak 'n Shake": {"name": "Steak 'n Shake", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/steaknshake/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7605233", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Steak 'n Shake", "brand:wikidata": "Q7605233", "brand:wikipedia": "en:Steak 'n Shake", "cuisine": "burger", "name": "Steak 'n Shake", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Steak Escape": {"name": "Steak Escape", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/steakescape/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7605235", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Steak Escape", "brand:wikidata": "Q7605235", "brand:wikipedia": "en:Steak Escape", "cuisine": "sandwich", "name": "Steak Escape", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Steers": {"name": "Steers", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/OfficialSteers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56599145", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Steers", "brand:wikidata": "Q56599145", "brand:wikipedia": "en:Steers", "cuisine": "burger", "name": "Steers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Subway": {"name": "Subway", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/subway/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q244457", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Subway", "brand:wikidata": "Q244457", "brand:wikipedia": "en:Subway (restaurant)", "cuisine": "sandwich", "name": "Subway", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "terms": ["subway sandwiches"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Sumo Salad": {"name": "Sumo Salad", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/SumoSalad/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16951700", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Sumo Salad", "brand:wikidata": "Q16951700", "brand:wikipedia": "en:Sumo Salad", "cuisine": "salad", "name": "Sumo Salad", "takeaway": "yes"}, "countryCodes": ["ae", "au", "br", "nz", "sg", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Supermac's": {"name": "Supermac's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/supermacsofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7643750", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Supermac's", "brand:wikidata": "Q7643750", "brand:wikipedia": "en:Supermac's", "cuisine": "burger", "name": "Supermac's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Sushi Shop": {"name": "Sushi Shop", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/sushishopboutique/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64840990", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Sushi Shop", "brand:wikidata": "Q64840990", "cuisine": "sushi", "name": "Sushi Shop", "takeaway": "yes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Taco Bell": {"name": "Taco Bell", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/tacobell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q752941", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Taco Bell", "brand:wikidata": "Q752941", "brand:wikipedia": "en:Taco Bell", "cuisine": "tex-mex", "name": "Taco Bell", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Taco Bueno": {"name": "Taco Bueno", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/buenoheadquarters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7673958", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Taco Bueno", "brand:wikidata": "Q7673958", "brand:wikipedia": "en:Taco Bueno", "cuisine": "mexican", "name": "Taco Bueno", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Taco Cabana": {"name": "Taco Cabana", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/TacoCabana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12070488", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Taco Cabana", "brand:wikidata": "Q12070488", "brand:wikipedia": "en:Taco Cabana", "cuisine": "mexican", "name": "Taco Cabana", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Taco Del Mar": {"name": "Taco Del Mar", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/tacodelmarcorp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7673972", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Taco Del Mar", "brand:wikidata": "Q7673972", "brand:wikipedia": "en:Taco del Mar", "cuisine": "mexican", "name": "Taco Del Mar", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Taco John's": {"name": "Taco John's", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/tacojohns/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7673962", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Taco John's", "brand:wikidata": "Q7673962", "brand:wikipedia": "en:Taco John's", "cuisine": "mexican", "name": "Taco John's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Taco Mayo": {"name": "Taco Mayo", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1014909415101624320/p-fzpv6u_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2386946", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Taco Mayo", "brand:wikidata": "Q2386946", "brand:wikipedia": "en:Taco Mayo", "cuisine": "tex-mex", "name": "Taco Mayo", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/mexican/Taco Time": {"name": "Taco Time", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/tacotime/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7673969", "amenity": "fast_food", "cuisine": "mexican"}, "addTags": {"amenity": "fast_food", "brand": "Taco Time", "brand:wikidata": "Q7673969", "brand:wikipedia": "en:Taco Time", "cuisine": "mexican", "name": "Taco Time", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Taziki's Mediterranean Cafe": {"name": "Taziki's Mediterranean Cafe", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/TazikisMedCafe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19849840", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Taziki's Mediterranean Cafe", "brand:wikidata": "Q19849840", "brand:wikipedia": "en:Taziki's Mediterranean Café", "cuisine": "mediterranean", "name": "Taziki's Mediterranean Cafe", "short_name": "Taziki's", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/hot_dog/Ted's Hot Dogs": {"name": "Ted's Hot Dogs", "icon": "fas-hotdog", "imageURL": "https://graph.facebook.com/TedsHotDogs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7692930", "amenity": "fast_food", "cuisine": "hot_dog"}, "addTags": {"amenity": "fast_food", "brand": "Ted's Hot Dogs", "brand:wikidata": "Q7692930", "brand:wikipedia": "en:Ted's Hot Dogs", "cuisine": "hot_dog", "name": "Ted's Hot Dogs", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "hot_dog"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Telepizza": {"name": "Telepizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/telepizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2699863", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Telepizza", "brand:wikidata": "Q2699863", "brand:wikipedia": "en:Telepizza", "cuisine": "pizza", "name": "Telepizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Teriyaki Experience": {"name": "Teriyaki Experience", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/TeriyakiExperience/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7702453", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Teriyaki Experience", "brand:wikidata": "Q7702453", "cuisine": "japanese", "name": "Teriyaki Experience", "takeaway": "yes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Thai Express (Singapore)": {"name": "Thai Express (Singapore)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ThaiExpressSG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7709119", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Thai Express", "brand:wikidata": "Q7709119", "brand:wikipedia": "en:Thai Express", "cuisine": "thai", "name": "Thai Express", "takeaway": "yes"}, "countryCodes": ["sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Thaï Express (North America)": {"name": "Thaï Express (North America)", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/EatThaiExpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7711610", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Thaï Express", "brand:wikidata": "Q7711610", "brand:wikipedia": "en:Thaï Express", "cuisine": "thai", "name": "Thaï Express", "takeaway": "yes"}, "countryCodes": ["ca", "us"], "terms": ["thai express"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/The Habit Burger Grill": {"name": "The Habit Burger Grill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/habitburger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18158741", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"alt_name": "Habit Burger Grill", "amenity": "fast_food", "brand": "The Habit Burger Grill", "brand:wikidata": "Q18158741", "brand:wikipedia": "en:The Habit Burger Grill", "cuisine": "burger", "name": "The Habit Burger Grill", "short_name": "Habit Burger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": ["the habit burger"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/The Pizza Company": {"name": "The Pizza Company", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/thepizzacompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2413520", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"alt_name": "Pizza Company", "amenity": "fast_food", "brand": "The Pizza Company", "brand:wikidata": "Q2413520", "brand:wikipedia": "en:The Pizza Company", "cuisine": "pizza", "name": "The Pizza Company", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ae", "bh", "cn", "jo", "kh", "la", "mm", "my", "sa", "th", "vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Togo's": {"name": "Togo's", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/togossandwiches/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3530375", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Togo's", "brand:wikidata": "Q3530375", "brand:wikipedia": "en:Togo's", "cuisine": "sandwich", "name": "Togo's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/juice/Tropical Smoothie Cafe": {"name": "Tropical Smoothie Cafe", "icon": "temaki-drink_cup", "imageURL": "https://graph.facebook.com/tropicalsmoothiecafe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7845817", "amenity": "fast_food", "cuisine": "juice"}, "addTags": {"amenity": "fast_food", "brand": "Tropical Smoothie Cafe", "brand:wikidata": "Q7845817", "brand:wikipedia": "en:Tropical Smoothie Cafe", "cuisine": "juice", "name": "Tropical Smoothie Cafe", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "juice"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Tudor's Biscuit World": {"name": "Tudor's Biscuit World", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/tudorsbiscuitworld/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7851262", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Tudor's Biscuit World", "brand:wikidata": "Q7851262", "brand:wikipedia": "en:Tudor's Biscuit World", "cuisine": "american", "name": "Tudor's Biscuit World", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Upper Crust": {"name": "Upper Crust", "icon": "temaki-sandwich", "imageURL": "https://pbs.twimg.com/profile_images/1156194120324591619/0Wy7xKDd_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7898585", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Upper Crust", "brand:wikidata": "Q7898585", "brand:wikipedia": "en:Upper Crust (restaurant chain)", "cuisine": "sandwich", "name": "Upper Crust", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["de", "dk", "eg", "es", "fi", "gb", "ie", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Valentine": {"name": "Valentine", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/valentineqc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3553635", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Valentine", "brand:wikidata": "Q3553635", "brand:wikipedia": "fr:Valentine (restaurant)", "cuisine": "burger", "name": "Valentine", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Veggie Grill": {"name": "Veggie Grill", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/veggiegrill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18636427", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Veggie Grill", "brand:wikidata": "Q18636427", "brand:wikipedia": "en:Veggie Grill", "cuisine": "american", "diet:vegan": "only", "name": "Veggie Grill", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Villa Madina": {"name": "Villa Madina", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/villamadinarestaurant/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64876884", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Villa Madina", "brand:wikidata": "Q64876884", "cuisine": "mediterranean", "name": "Villa Madina", "takeaway": "yes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Wahoo's Fish Taco": {"name": "Wahoo's Fish Taco", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/WahoosFishTaco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7959827", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Wahoo's Fish Taco", "brand:wikidata": "Q7959827", "brand:wikipedia": "en:Wahoo's Fish Taco", "cuisine": "seafood", "name": "Wahoo's Fish Taco", "short_name": "Wahoo's", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Wayback Burgers": {"name": "Wayback Burgers", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/waybackburgers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16997570", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Wayback Burgers", "brand:wikidata": "Q16997570", "brand:wikipedia": "en:Wayback Burgers", "cuisine": "burger", "name": "Wayback Burgers", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Wendy's": {"name": "Wendy's", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/wendys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q550258", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Wendy's", "brand:wikidata": "Q550258", "brand:wikipedia": "en:Wendy's", "cuisine": "burger", "name": "Wendy's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/West Cornwall Pasty Co.": {"name": "West Cornwall Pasty Co.", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1079670717074018304/juDTW6De_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7774268", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "West Cornwall Pasty Co.", "brand:wikidata": "Q7774268", "brand:wikipedia": "en:The West Cornwall Pasty Company", "cuisine": "pasty", "name": "West Cornwall Pasty Co.", "takeaway": "yes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Wetzel's Pretzels": {"name": "Wetzel's Pretzels", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/WetzelsPretzels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7990205", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Wetzel's Pretzels", "brand:wikidata": "Q7990205", "brand:wikipedia": "en:Wetzel's Pretzels", "cuisine": "pretzel", "name": "Wetzel's Pretzels", "takeaway": "yes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Whataburger": {"name": "Whataburger", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/whataburger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q376627", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Whataburger", "brand:wikidata": "Q376627", "brand:wikipedia": "en:Whataburger", "cuisine": "burger", "name": "Whataburger", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Which Wich?": {"name": "Which Wich?", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/whichwich/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7993556", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Which Wich?", "brand:wikidata": "Q7993556", "brand:wikipedia": "en:Which Wich?", "cuisine": "sandwich", "name": "Which Wich?", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["ae", "gb", "gt", "mx", "om", "qa", "sa", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/White Castle": {"name": "White Castle", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/WhiteCastle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1244034", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "White Castle", "brand:wikidata": "Q1244034", "brand:wikipedia": "en:White Castle (restaurant)", "cuisine": "burger", "name": "White Castle", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/hot_dog/Wienerschnitzel": {"name": "Wienerschnitzel", "icon": "fas-hotdog", "imageURL": "https://graph.facebook.com/Wienerschnitzel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q324679", "amenity": "fast_food", "cuisine": "hot_dog"}, "addTags": {"amenity": "fast_food", "brand": "Wienerschnitzel", "brand:wikidata": "Q324679", "brand:wikipedia": "en:Wienerschnitzel", "cuisine": "hot_dog", "name": "Wienerschnitzel", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "hot_dog"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Wimpy": {"name": "Wimpy", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/wimpyrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2811992", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Wimpy", "brand:wikidata": "Q2811992", "brand:wikipedia": "en:Wimpy (restaurant)", "cuisine": "burger", "name": "Wimpy", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/WingStreet": {"name": "WingStreet", "icon": "maki-fast-food", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWingStreet.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q946630", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "WingStreet", "brand:wikidata": "Q946630", "brand:wikipedia": "en:WingStreet", "cuisine": "wings", "name": "WingStreet", "takeaway": "yes"}, "countryCodes": ["au", "ca", "cy", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Wingstop": {"name": "Wingstop", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Wingstop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8025339", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Wingstop", "brand:wikidata": "Q8025339", "brand:wikipedia": "en:Wingstop", "cuisine": "wings", "name": "Wingstop", "takeaway": "yes"}, "countryCodes": ["mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Xi'an Famous Foods": {"name": "Xi'an Famous Foods", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/xianfoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8044020", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Xi'an Famous Foods", "brand:wikidata": "Q8044020", "brand:wikipedia": "en:Xi'an Famous Foods", "cuisine": "chinese", "name": "Xi'an Famous Foods", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Yellow Cab Pizza": {"name": "Yellow Cab Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/YellowCabPizzaOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8051689", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Yellow Cab Pizza", "brand:wikidata": "Q8051689", "brand:wikipedia": "en:Yellow Cab Pizza", "cuisine": "pizza", "name": "Yellow Cab Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/Zaxby's": {"name": "Zaxby's", "icon": "fas-drumstick-bite", "imageURL": "https://graph.facebook.com/Zaxbys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8067525", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "Zaxby's", "brand:wikidata": "Q8067525", "brand:wikipedia": "en:Zaxby's", "cuisine": "chicken", "name": "Zaxby's", "official_name": "Zaxby's Chicken Fingers & Buffalo Wings", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Zoës Kitchen": {"name": "Zoës Kitchen", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ZoesKitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8074747", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Zoës Kitchen", "brand:wikidata": "Q8074747", "brand:wikipedia": "en:Zoës Kitchen", "cuisine": "mediterranean", "name": "Zoës Kitchen", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/immergrün": {"name": "immergrün", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/mein.immergruen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62589254", "amenity": "fast_food", "cuisine": "sandwich;salad;juice"}, "addTags": {"amenity": "fast_food", "brand": "immergrün", "brand:wikidata": "Q62589254", "cuisine": "sandwich;salad;juice", "name": "immergün", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["de"], "terms": ["immergün"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/itsu": {"name": "itsu", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1159375014875078656/IaKatTeE_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6094914", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "itsu", "brand:wikidata": "Q6094914", "brand:wikipedia": "en:Itsu", "cuisine": "asian", "name": "itsu", "takeaway": "yes"}, "countryCodes": ["gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Γρηγόρης": {"name": "Γρηγόρης", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/gregorys.gr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62273834", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "Γρηγόρης", "brand:el": "Γρηγόρης", "brand:en": "Gregorys", "brand:wikidata": "Q62273834", "cuisine": "sandwich", "name": "Γρηγόρης", "name:el": "Γρηγόρης", "name:en": "Gregorys", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Бургер Кинг": {"name": "Бургер Кинг", "icon": "maki-fast-food", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBurger%20King%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q177054", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Бургер Кинг", "brand:en": "Burger King", "brand:ru": "Бургер Кинг", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "Бургер Кинг", "name:en": "Burger King", "name:ru": "Бургер Кинг", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["by", "kz", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Додо Пицца": {"name": "Додо Пицца", "icon": "maki-restaurant-pizza", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61949318", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Додо Пицца", "brand:en": "Dodo Pizza", "brand:ru": "Додо Пицца", "brand:wikidata": "Q61949318", "brand:wikipedia": "ru:Додо Пицца", "cuisine": "pizza", "name": "Додо Пицца", "name:en": "Dodo Pizza", "name:ru": "Додо Пицца", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Домино'c": {"name": "Домино'c", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Dominos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q839466", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Домино'c", "brand:en": "Domino's", "brand:ru": "Домино'c", "brand:wikidata": "Q839466", "brand:wikipedia": "ru:Domino’s Pizza", "cuisine": "pizza", "name": "Домино'c", "name:en": "Domino's", "name:ru": "Домино'c", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": ["доминоc пицца"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Крошка Картошка": {"name": "Крошка Картошка", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/kartoshka.moscow/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4241838", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Крошка Картошка", "brand:en": "Kroshka Kartoshka", "brand:ru": "Крошка Картошка", "brand:wikidata": "Q4241838", "brand:wikipedia": "ru:Крошка Картошка", "cuisine": "potato", "name": "Крошка Картошка", "name:en": "Kroshka Kartoshka", "name:ru": "Крошка Картошка", "takeaway": "yes"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Макдоналдс": {"name": "Макдоналдс", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q38076", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Макдоналдс", "brand:en": "McDonald's", "brand:ru": "Макдоналдс", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "cuisine": "burger", "name": "Макдоналдс", "name:en": "McDonald's", "name:ru": "Макдоналдс", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/Папа Джонс": {"name": "Папа Джонс", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/papajohns/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2759586", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "Папа Джонс", "brand:en": "Papa John's", "brand:ru": "Папа Джонс", "brand:wikidata": "Q2759586", "brand:wikipedia": "ru:Papa John’s", "cuisine": "pizza", "name": "Папа Джонс", "name:en": "Papa John's", "name:ru": "Папа Джонс", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["by", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Пузата хата": {"name": "Пузата хата", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/puzatahata/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11832009", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Пузата Хата", "brand:en": "Puzata hata", "brand:ru": "Пузата Хата", "brand:ua": "Пузата Хата", "brand:wikidata": "Q11832009", "brand:wikipedia": "uk:Пузата Хата", "cuisine": "ukrainian;western", "name": "Пузата Хата", "name:en": "Puzata hata", "name:ru": "Пузата Хата", "name:ua": "Пузата Хата", "takeaway": "yes"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/Робин Сдобин": {"name": "Робин Сдобин", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/robinsdobin/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62273880", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "Робин Сдобин", "brand:en": "Robins Dobin", "brand:ru": "Робин Сдобин", "brand:wikidata": "Q62273880", "cuisine": "burger", "name": "Робин Сдобин", "name:en": "Robins Dobin", "name:ru": "Робин Сдобин", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/Русский Аппетит": {"name": "Русский Аппетит", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/1502979646622576/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62086063", "amenity": "fast_food", "cuisine": "sandwich;salad;regional"}, "addTags": {"amenity": "fast_food", "brand": "Русский Аппетит", "brand:en": "Russkiy Appetit", "brand:ru": "Русский Аппетит", "brand:wikidata": "Q62086063", "cuisine": "sandwich;salad;regional", "name": "Русский Аппетит", "name:en": "Russkiy Appetit", "name:ru": "Русский Аппетит", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Стардог!s": {"name": "Стардог!s", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/StardogsOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4439856", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Стардог!s", "brand:en": "Stardog!s", "brand:ru": "Стардог!s", "brand:wikidata": "Q4439856", "brand:wikipedia": "ru:Стардогс", "cuisine": "sausage", "name": "Стардог!s", "name:en": "Stardog!s", "name:ru": "Стардог!s", "takeaway": "yes"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Суши Wok": {"name": "Суши Wok", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/sushiwokofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25444754", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Суши Wok", "brand:en": "Sushi Wok", "brand:ru": "Суши Wok", "brand:wikidata": "Q25444754", "brand:wikipedia": "uk:Суши Wok (мережа магазинів)", "cuisine": "asian", "name": "Суши Wok", "name:en": "Sushi Wok", "name:ru": "Суши Wok", "takeaway": "yes"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/Теремок": {"name": "Теремок", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/teremok/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4455593", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "Теремок", "brand:en": "Teremok", "brand:ru": "Теремок", "brand:wikidata": "Q4455593", "brand:wikipedia": "ru:Теремок (сеть быстрого питания)", "cuisine": "crepe;russian", "name": "Теремок", "name:en": "Teremok", "name:ru": "Теремок", "takeaway": "yes"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/אגדיר": {"name": "אגדיר", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/agadirburger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64760070", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "אגדיר", "brand:en": "Agadir", "brand:he": "אגדיר", "brand:wikidata": "Q64760070", "cuisine": "burger", "name": "אגדיר", "name:en": "Agadir", "name:he": "אגדיר", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/מקדונלד'ס": {"name": "מקדונלד'ס", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/McDonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12061542", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "מקדונלד'ס", "brand:en": "McDonald's", "brand:he": "מקדונלד'ס", "brand:wikidata": "Q12061542", "brand:wikipedia": "en:McDonald's Israel", "cuisine": "burger", "name": "מקדונלד'ס", "name:en": "McDonald's", "name:he": "מקדונלד'ס", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/עד העצם אקספרס": {"name": "עד העצם אקספרס", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/1793025004285088/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64760165", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "עד העצם אקספרס", "brand:en": "Ad Haetzem Express", "brand:he": "עד העצם אקספרס", "brand:wikidata": "Q64760165", "cuisine": "burger", "name": "עד העצם אקספרס", "name:en": "Ad Haetzem Express", "name:he": "עד העצם אקספרס", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/دجاج كنتاكي": {"name": "دجاج كنتاكي", "icon": "fas-drumstick-bite", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKFC%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q524757", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "دجاج كنتاكي", "brand:ar": "دجاج كنتاكي", "brand:en": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "ar:دجاج كنتاكي", "cuisine": "chicken", "name": "دجاج كنتاكي", "name:ar": "دجاج كنتاكي", "name:en": "KFC", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/ماكدونالدز": {"name": "ماكدونالدز", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q38076", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "ماكدونالدز", "brand:ar": "ماكدونالدز", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "ar:ماكدونالدز", "cuisine": "burger", "name": "ماكدونالدز", "name:ar": "ماكدونالدز", "name:en": "McDonald's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/هرفي": {"name": "هرفي", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/herfyfscksa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5738371", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "هرفي", "brand:ar": "هرفي", "brand:en": "Herfy", "brand:wikidata": "Q5738371", "brand:wikipedia": "ar:هرفي", "cuisine": "burger", "name": "هرفي", "name:ar": "هرفي", "name:en": "Herfy", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["ae", "bh", "kw", "sa"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/かっぱ寿司": {"name": "かっぱ寿司", "icon": "maki-fast-food", "imageURL": "https://abs.twimg.com/sticky/default_profile_images/default_profile_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11263916", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "かっぱ寿司", "brand:en": "Kappazushi", "brand:ja": "かっぱ寿司", "brand:wikidata": "Q11263916", "brand:wikipedia": "ja:かっぱ寿司", "cuisine": "sushi", "name": "かっぱ寿司", "name:en": "Kappazushi", "name:ja": "かっぱ寿司", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/かつや": {"name": "かつや", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1215226415383080960/YbJ7aSm7_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2855257", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "かつや", "brand:en": "Katsuya", "brand:ja": "かつや", "brand:wikidata": "Q2855257", "brand:wikipedia": "ja:かつや", "cuisine": "fried_food", "name": "かつや", "name:en": "Katsuya", "name:ja": "かつや", "name:ko": "카쯔야", "name:zh": "吉豚屋", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/くら寿司": {"name": "くら寿司", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Kurasushi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6445491", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "くら寿司", "brand:en": "Kurazushi", "brand:ja": "くら寿司", "brand:wikidata": "Q6445491", "brand:wikipedia": "ja:くら寿司", "cuisine": "sushi", "name": "くら寿司", "name:en": "Kurazushi", "name:ja": "くら寿司", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/すき家": {"name": "すき家", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1233326387580194816/wH7fB1-w_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6137375", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "すき家", "brand:en": "Sukiya", "brand:ja": "すき家", "brand:wikidata": "Q6137375", "brand:wikipedia": "ja:すき家", "cuisine": "beef_bowl", "name": "すき家", "name:en": "Sukiya", "name:ja": "すき家", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/てんや": {"name": "てんや", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/TWtenya/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11319830", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "てんや", "brand:en": "Tenya", "brand:ja": "てんや", "brand:wikidata": "Q11319830", "brand:wikipedia": "ja:テンコーポレーション", "cuisine": "fries", "name": "てんや", "name:en": "Tenya", "name:ja": "てんや", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/なか卯": {"name": "なか卯", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/107330239328355/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11274132", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "なか卯", "brand:en": "Nakau", "brand:ja": "なか卯", "brand:wikidata": "Q11274132", "brand:wikipedia": "ja:なか卯", "cuisine": "udon", "name": "なか卯", "name:en": "Nakau", "name:ja": "なか卯", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/はま寿司": {"name": "はま寿司", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/1743876322501841/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17220385", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "はま寿司", "brand:en": "Hamazushi", "brand:ja": "はま寿司", "brand:wikidata": "Q17220385", "brand:wikipedia": "ja:はま寿司", "cuisine": "sushi", "name": "はま寿司", "name:en": "Hamazushi", "name:ja": "はま寿司", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ほっかほっか亭": {"name": "ほっかほっか亭", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/516896005176524/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5878035", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "ほっかほっか亭", "brand:en": "Hokka Hokka Tei", "brand:ja": "ほっかほっか亭", "brand:wikidata": "Q5878035", "brand:wikipedia": "ja:ほっかほっか亭", "cuisine": "japanese", "name": "ほっかほっか亭", "name:en": "Hokka Hokka Tei", "name:ja": "ほっかほっか亭", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ほっともっと": {"name": "ほっともっと", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hottomotto/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10850949", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "ほっともっと", "brand:en": "Hotto Motto", "brand:ja": "ほっともっと", "brand:wikidata": "Q10850949", "brand:wikipedia": "ja:ほっともっと", "cuisine": "japanese", "name": "ほっともっと", "name:en": "Hotto Motto", "name:ja": "ほっともっと", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ゆで太郎": {"name": "ゆで太郎", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/273267212711878/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11280824", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "ゆで太郎", "brand:en": "Yudetaro", "brand:ja": "ゆで太郎", "brand:wikidata": "Q11280824", "brand:wikipedia": "ja:ゆで太郎", "cuisine": "noodle", "name": "ゆで太郎", "name:en": "Yudetaro", "name:ja": "ゆで太郎", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/ウェンディーズ": {"name": "ウェンディーズ", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/wendys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q550258", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "ウェンディーズ", "brand:en": "Wendy's", "brand:ja": "ウェンディーズ", "brand:wikidata": "Q550258", "brand:wikipedia": "en:Wendy's", "cuisine": "burger", "name": "ウェンディーズ", "name:en": "Wendy's", "name:ja": "ウェンディーズ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/オリジン弁当": {"name": "オリジン弁当", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/152356971456128/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11292632", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "オリジン弁当", "brand:en": "Origin Bentō", "brand:ja": "オリジン弁当", "brand:wikidata": "Q11292632", "brand:wikipedia": "ja:オリジン東秀", "cuisine": "japanese", "name": "オリジン弁当", "name:en": "Origin Bentō", "name:ja": "オリジン弁当", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/ケンタッキーフライドチキン": {"name": "ケンタッキーフライドチキン", "icon": "fas-drumstick-bite", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKFC%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q524757", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"alt_name:en": "Kentucky Fried Chicken", "amenity": "fast_food", "brand": "ケンタッキーフライドチキン", "brand:en": "KFC", "brand:ja": "ケンタッキーフライドチキン", "brand:wikidata": "Q524757", "brand:wikipedia": "ja:KFCコーポレーション", "cuisine": "chicken", "name": "ケンタッキーフライドチキン", "name:en": "KFC", "name:ja": "ケンタッキーフライドチキン", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["jp"], "terms": ["ケンタッキー"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ゴーゴーカレー": {"name": "ゴーゴーカレー", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/1983361461/___2__bigger.JPG", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11303801", "amenity": "fast_food"}, "addTags": {"alt_name:en": "Go Go Curry", "amenity": "fast_food", "brand": "ゴーゴーカレー", "brand:en": "Go!Go!Curry", "brand:ja": "ゴーゴーカレー", "brand:wikidata": "Q11303801", "brand:wikipedia": "ja:ゴーゴーカレー", "cuisine": "curry", "name": "ゴーゴーカレー", "name:en": "Go!Go!Curry", "name:ja": "ゴーゴーカレー", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/sandwich/サブウェイ": {"name": "サブウェイ", "icon": "temaki-sandwich", "imageURL": "https://graph.facebook.com/subway/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q244457", "amenity": "fast_food", "cuisine": "sandwich"}, "addTags": {"amenity": "fast_food", "brand": "サブウェイ", "brand:en": "Subway", "brand:ja": "サブウェイ", "brand:wikidata": "Q244457", "brand:wikipedia": "ja:サブウェイ", "cuisine": "sandwich", "name": "サブウェイ", "name:en": "Subway", "name:ja": "サブウェイ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "sandwich"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/スシロー": {"name": "スシロー", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/akindosushiro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11257037", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "スシロー", "brand:en": "Sushiro", "brand:ja": "スシロー", "brand:wikidata": "Q11257037", "brand:wikipedia": "ja:あきんどスシロー", "cuisine": "sushi", "name": "スシロー", "name:en": "Sushiro", "name:ja": "スシロー", "name:zh": "壽司郎", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/ドミノ": {"name": "ドミノ", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Dominos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q839466", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "ドミノ", "brand:en": "Domino's", "brand:ja": "ドミノ", "brand:wikidata": "Q839466", "brand:wikipedia": "ja:ドミノ・ピザ", "cuisine": "pizza", "name": "ドミノ", "name:en": "Domino's", "name:ja": "ドミノ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "terms": ["ドミノ・ピザ"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/バーガーキング": {"name": "バーガーキング", "icon": "maki-fast-food", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBurger%20King%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q177054", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "バーガーキング", "brand:en": "Burger King", "brand:ja": "バーガーキング", "brand:wikidata": "Q177054", "brand:wikipedia": "en:Burger King", "cuisine": "burger", "name": "バーガーキング", "name:en": "Burger King", "name:ja": "バーガーキング", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/ピザハット": {"name": "ピザハット", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzahutus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q191615", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "ピザハット", "brand:en": "Pizza Hut", "brand:ja": "ピザハット", "brand:wikidata": "Q191615", "brand:wikipedia": "ja:ピザハット", "cuisine": "pizza", "name": "ピザハット", "name:en": "Pizza Hut", "name:ja": "ピザハット", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/ピザ・カリフォルニア": {"name": "ピザ・カリフォルニア", "icon": "maki-restaurant-pizza", "imageURL": "https://pbs.twimg.com/profile_images/660971858699771904/k5BvhuxH_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q75324", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "ピザ・カリフォルニア", "brand:en": "Pizza California", "brand:ja": "ピザ・カリフォルニア", "brand:wikidata": "Q75324", "brand:wikipedia": "ja:ピザ・カリフォルニア", "cuisine": "pizza", "name": "ピザ・カリフォルニア", "name:en": "Pizza California", "name:ja": "ピザ・カリフォルニア", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/pizza/ピザーラ": {"name": "ピザーラ", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzala.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7199948", "amenity": "fast_food", "cuisine": "pizza"}, "addTags": {"amenity": "fast_food", "brand": "ピザーラ", "brand:en": "Pizza-La", "brand:ja": "ピザーラ", "brand:wikidata": "Q7199948", "brand:wikipedia": "ja:ピザーラ", "cuisine": "pizza", "name": "ピザーラ", "name:en": "Pizza-La", "name:ja": "ピザーラ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ファーストキッチン": {"name": "ファーストキッチン", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/firstkitchen.offical/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5453133", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "ファーストキッチン", "brand:en": "First Kitchen", "brand:ja": "ファーストキッチン", "brand:wikidata": "Q5453133", "brand:wikipedia": "ja:ファーストキッチン", "cuisine": "friture", "name": "ファーストキッチン", "name:en": "First Kitchen", "name:ja": "ファーストキッチン", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/フレッシュネスバーガー": {"name": "フレッシュネスバーガー", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/freshness.burger.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5503087", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "フレッシュネスバーガー", "brand:en": "Freshness Burger", "brand:ja": "フレッシュネスバーガー", "brand:wikidata": "Q5503087", "brand:wikipedia": "ja:フレッシュネスバーガー", "cuisine": "burger", "name": "フレッシュネスバーガー", "name:en": "Freshness Burger", "name:ja": "フレッシュネスバーガー", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/マクドナルド": {"name": "マクドナルド", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q38076", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "マクドナルド", "brand:en": "McDonald's", "brand:ja": "マクドナルド", "brand:wikidata": "Q38076", "brand:wikipedia": "ja:マクドナルド", "cuisine": "burger", "name": "マクドナルド", "name:en": "McDonald's", "name:ja": "マクドナルド", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/donut/ミスタードーナツ": {"name": "ミスタードーナツ", "icon": "temaki-donut", "imageURL": "https://graph.facebook.com/misdo.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1065819", "amenity": "fast_food", "cuisine": "donut"}, "addTags": {"amenity": "fast_food", "brand": "ミスタードーナツ", "brand:en": "Mister Donut", "brand:ja": "ミスタードーナツ", "brand:wikidata": "Q1065819", "brand:wikipedia": "en:Mister Donut", "cuisine": "donut", "name": "ミスタードーナツ", "name:en": "Mister Donut", "name:ja": "ミスタードーナツ", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "donut"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/モスバーガー": {"name": "モスバーガー", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mosburger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1204169", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "モスバーガー", "brand:en": "MOS Burger", "brand:ja": "モスバーガー", "brand:wikidata": "Q1204169", "brand:wikipedia": "ja:モスバーガー", "cuisine": "burger", "name": "モスバーガー", "name:en": "MOS Burger", "name:ja": "モスバーガー", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/ラーメン二郎": {"name": "ラーメン二郎", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/jirolian/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11347765", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "ラーメン二郎", "brand:en": "Ramen Jiro", "brand:ja": "ラーメン二郎", "brand:wikidata": "Q11347765", "brand:wikipedia": "ja:ラーメン二郎", "cuisine": "ramen", "name": "ラーメン二郎", "name:en": "Ramen Jiro", "name:ja": "ラーメン二郎", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/ロッテリア": {"name": "ロッテリア", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ilovelotteria/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q249525", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "ロッテリア", "brand:en": "Lotteria", "brand:ja": "ロッテリア", "brand:wikidata": "Q249525", "brand:wikipedia": "ja:ロッテリア", "cuisine": "burger", "name": "ロッテリア", "name:en": "Lotteria", "name:ja": "ロッテリア", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/吉野家": {"name": "吉野家", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/tw.yoshinoya/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q776272", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "吉野家", "brand:en": "Yoshinoya", "brand:ja": "吉野家", "brand:wikidata": "Q776272", "brand:wikipedia": "ja:吉野家", "cuisine": "beef_bowl", "name": "吉野家", "name:en": "Yoshinoya", "name:ja": "吉野家", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/富士そば": {"name": "富士そば", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/fujisoba/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11414722", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "富士そば", "brand:en": "Fuji Soba", "brand:ja": "富士そば", "brand:wikidata": "Q11414722", "brand:wikipedia": "ja:名代富士そば", "cuisine": "soba", "name": "富士そば", "name:en": "Fuji Soba", "name:ja": "富士そば", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/幸楽苑": {"name": "幸楽苑", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/Kourakuen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11484003", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "幸楽苑", "brand:en": "Kourakuen", "brand:ja": "幸楽苑", "brand:wikidata": "Q11484003", "brand:wikipedia": "ja:幸楽苑", "cuisine": "ramen", "name": "幸楽苑", "name:en": "Kourakuen", "name:ja": "幸楽苑", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/摩斯漢堡": {"name": "摩斯漢堡", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mosburger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1204169", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "摩斯漢堡", "brand:en": "MOS Burger", "brand:wikidata": "Q1204169", "brand:wikipedia": "zh:摩斯漢堡", "brand:zh": "摩斯漢堡", "cuisine": "burger", "name": "摩斯漢堡", "name:en": "MOS Burger", "name:zh": "摩斯漢堡", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["cn", "hk", "mo", "sg", "tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/日高屋": {"name": "日高屋", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/hidakayavietnam/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11326050", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "日高屋", "brand:en": "Hidakaya", "brand:wikidata": "Q11326050", "brand:wikipedia": "ja:ハイデイ日高", "cuisine": "noodle", "name": "日高屋", "name:en": "Hidakaya", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/本家かまどや": {"name": "本家かまどや", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/378800000531828525/0a2223ddd4b6ec35d85d418c2aee44f6_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11520140", "amenity": "fast_food"}, "addTags": {"alt_name": "かまどや", "amenity": "fast_food", "brand": "本家かまどや", "brand:en": "Honke Kamadoya", "brand:ja": "本家かまどや", "brand:wikidata": "Q11520140", "brand:wikipedia": "ja:本家かまどや", "cuisine": "japanese", "name": "本家かまどや", "name:en": "Honke Kamadoya", "name:ja": "本家かまどや", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": ["かまどや"], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/松屋": {"name": "松屋", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/matsuyafoods.matsuya/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q848773", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "松屋", "brand:en": "Matsuya", "brand:ja": "松屋", "brand:wikidata": "Q848773", "brand:wikipedia": "ja:松屋フーズ", "cuisine": "japanese", "name": "松屋", "name:en": "Matsuya", "name:ja": "松屋", "official_name": "松屋フーズ", "official_name:en": "Matsuya Foods", "official_name:ja": "松屋フーズ", "takeaway": "yes"}, "countryCodes": ["cn", "hk", "jp", "mo", "sg", "tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/箱根そば": {"name": "箱根そば", "icon": "maki-fast-food", "imageURL": "https://pbs.twimg.com/profile_images/870545798039195648/wDwwGAUK_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11603345", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "箱根そば", "brand:en": "Hakone Soba", "brand:ja": "箱根そば", "brand:wikidata": "Q11603345", "brand:wikipedia": "ja:箱根そば", "cuisine": "soba", "name": "箱根そば", "name:en": "Hakone Soba", "name:ja": "箱根そば", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/築地銀だこ": {"name": "築地銀だこ", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/GindacoUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11603490", "amenity": "fast_food"}, "addTags": {"amenity": "fast_food", "brand": "築地銀だこ", "brand:en": "Gindaco", "brand:ja": "築地銀だこ", "brand:wikidata": "Q11603490", "brand:wikipedia": "ja:築地銀だこ", "cuisine": "takoyaki", "name": "築地銀だこ", "name:en": "Gindaco", "name:ja": "築地銀だこ", "takeaway": "yes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/chicken/肯德基": {"name": "肯德基", "icon": "fas-drumstick-bite", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKFC%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q524757", "amenity": "fast_food", "cuisine": "chicken"}, "addTags": {"amenity": "fast_food", "brand": "肯德基", "brand:en": "KFC", "brand:wikidata": "Q524757", "brand:wikipedia": "zh:肯德基", "cuisine": "chicken", "name": "肯德基", "name:en": "KFC", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "chicken"}, "countryCodes": ["cn", "hk", "mo", "sg", "tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/麥當勞": {"name": "麥當勞", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q38076", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "麥當勞", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "zh:麥當勞", "brand:zh": "麥當勞", "brand:zh-Hant": "麥當勞", "cuisine": "burger", "name": "麥當勞", "name:en": "McDonald's", "name:zh": "麥當勞", "name:zh-Hant": "麥當勞", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["hk", "mo", "tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/麦当劳": {"name": "麦当劳", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q38076", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "麦当劳", "brand:en": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "zh:麦当劳", "brand:zh": "麦当劳", "brand:zh-Hans": "麦当劳", "cuisine": "burger", "name": "麦当劳", "name:en": "McDonald's", "name:zh": "麦当劳", "name:zh-Hans": "麦当劳", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["cn", "sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/롯데리아": {"name": "롯데리아", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/ilovelotteria/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q249525", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "롯데리아", "brand:en": "Lotteria", "brand:ko": "롯데리아", "brand:wikidata": "Q249525", "brand:wikipedia": "ko:롯데리아", "cuisine": "burger", "name": "롯데리아", "name:en": "Lotteria", "name:ko": "롯데리아", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/맘스터치": {"name": "맘스터치", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/momstouchmain/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23044856", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "맘스터치", "brand:ko": "맘스터치", "brand:wikidata": "Q23044856", "brand:wikipedia": "en:Mom's Touch", "cuisine": "burger", "name": "맘스터치", "name:ko": "맘스터치", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fast_food/burger/맥도날드": {"name": "맥도날드", "icon": "maki-fast-food", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q38076", "amenity": "fast_food", "cuisine": "burger"}, "addTags": {"amenity": "fast_food", "brand": "맥도날드", "brand:en": "McDonald's", "brand:ko": "맥도날드", "brand:wikidata": "Q38076", "brand:wikipedia": "ko:맥도날드", "cuisine": "burger", "name": "맥도날드", "name:en": "McDonald's", "name:ko": "맥도날드", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "burger"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/1-2-3": {"name": "1-2-3", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4545742", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "1-2-3", "brand:wikidata": "Q4545742", "brand:wikipedia": "en:1-2-3 (fuel station)", "name": "1-2-3"}, "countryCodes": ["dk", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/7-Eleven": {"name": "7-Eleven", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q259340", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "7-Eleven", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "7-Eleven"}, "terms": ["7-11", "seven eleven"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/76": {"name": "76", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/76gas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1658320", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "76", "brand:wikidata": "Q1658320", "brand:wikipedia": "en:76 (gas station)", "name": "76"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/8 à Huit": {"name": "8 à Huit", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/fashion8a8/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2818601", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "fr:8 à Huit", "name": "8 à Huit"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ABC": {"name": "ABC", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/abcasemat/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10397504", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ABC", "brand:wikidata": "Q10397504", "brand:wikipedia": "fi:ABC-ketju", "name": "ABC"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ADNOC": {"name": "ADNOC", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ADNOCDistribution/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q166729", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ADNOC", "brand:wikidata": "Q166729", "brand:wikipedia": "en:Abu Dhabi National Oil Company", "name": "ADNOC"}, "countryCodes": ["ae"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ANCAP": {"name": "ANCAP", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/EstacionesANCAP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2824522", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ANCAP", "brand:wikidata": "Q2824522", "brand:wikipedia": "es:Administración Nacional de Combustibles, Alcohol y Portland", "name": "ANCAP", "official_name": "Administración Nacional de Combustibles, Alcoholes y Portland"}, "countryCodes": ["uy"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/AS 24": {"name": "AS 24", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAS%2024%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2819394", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "AS 24", "brand:wikidata": "Q2819394", "brand:wikipedia": "fr:AS 24 (entreprise)", "hgv": "only", "name": "AS 24"}, "countryCodes": ["at", "be", "bg", "cz", "de", "dk", "es", "fr", "gb", "ge", "gr", "hr", "hu", "ie", "it", "lt", "lu", "mk", "nl", "pl", "pt", "ro", "rs", "se", "si", "sk", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Aegean": {"name": "Aegean", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/AegeanOil.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28146598", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Aegean", "brand:wikidata": "Q28146598", "brand:wikipedia": "el:Aegean Oil", "name": "Aegean"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Afriquia": {"name": "Afriquia", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2829178", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Afriquia", "brand:wikidata": "Q2829178", "brand:wikipedia": "en:Akwa Group", "name": "Afriquia"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Agip": {"name": "Agip", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/agipoil888/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q377915", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Agip", "brand:wikidata": "Q377915", "brand:wikipedia": "en:Agip", "name": "Agip"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Agrola": {"name": "Agrola", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/AGROLA.AG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q397351", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Agrola", "brand:wikidata": "Q397351", "brand:wikipedia": "de:Agrola", "name": "Agrola"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Alexela": {"name": "Alexela", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20529782", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Alexela", "brand:wikidata": "Q20529782", "brand:wikipedia": "et:Alexela Oil", "name": "Alexela"}, "countryCodes": ["ee"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Aloha Petroleum": {"name": "Aloha Petroleum", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/alohagas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4734197", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Aloha Petroleum", "brand:wikidata": "Q4734197", "brand:wikipedia": "en:Aloha Petroleum", "name": "Aloha Petroleum", "official_name": "Aloha Petroleum Ltd"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Alon": {"name": "Alon", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/alonbrands/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62274304", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Alon", "brand:wikidata": "Q62274304", "name": "Alon"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Alpet": {"name": "Alpet", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ALPETtr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62131561", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Alpet", "brand:wikidata": "Q62131561", "name": "Alpet"}, "countryCodes": ["al", "tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Amoco": {"name": "Amoco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Amoco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q465952", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Amoco", "brand:wikidata": "Q465952", "brand:wikipedia": "en:Amoco", "name": "Amoco"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Ampol": {"name": "Ampol", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4748528", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Ampol", "brand:wikidata": "Q4748528", "brand:wikipedia": "en:Ampol", "name": "Ampol"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Api": {"name": "Api", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TheAmericanPetroleumInstitute/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q466043", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Api", "brand:wikidata": "Q466043", "brand:wikipedia": "en:American Petroleum Institute", "name": "Api"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Aral": {"name": "Aral", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/araldeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q565734", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Aral", "brand:wikidata": "Q565734", "brand:wikipedia": "en:Aral AG", "name": "Aral"}, "countryCodes": ["de", "lu"], "terms": ["aral tankstelle"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Arco": {"name": "Arco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/arco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q304769", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Arco", "brand:wikidata": "Q304769", "brand:wikipedia": "en:ARCO", "name": "Arco"}, "countryCodes": ["mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Asda": {"name": "Asda", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Asda/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q297410", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Asda", "brand:wikidata": "Q297410", "brand:wikipedia": "en:Asda", "name": "Asda"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Atem": {"name": "Atem", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/postosatem/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62332255", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Atem", "brand:wikidata": "Q62332255", "name": "Atem"}, "countryCodes": ["br"], "terms": ["posto atem"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Auchan": {"name": "Auchan", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/auchan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q758603", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Auchan", "brand:wikidata": "Q758603", "brand:wikipedia": "en:Auchan", "name": "Auchan"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Avanti": {"name": "Avanti", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OMV/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q168238", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Avanti", "brand:wikidata": "Q168238", "brand:wikipedia": "en:OMV", "name": "Avanti"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Avia": {"name": "Avia", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/AVIA.racing.team/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q300147", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Avia", "brand:wikidata": "Q300147", "brand:wikipedia": "de:Avia International", "name": "Avia"}, "countryCodes": ["at", "be", "bg", "ch", "cz", "de", "es", "fr", "hu", "it", "nl", "pl", "pt", "rs", "ua"], "terms": ["station avia"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Avin": {"name": "Avin", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19903165", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Avin", "brand:wikidata": "Q19903165", "brand:wikipedia": "en:Avin International", "name": "Avin"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Axion": {"name": "Axion", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/AXIONenergyOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62131749", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Axion", "brand:wikidata": "Q62131749", "name": "Axion"}, "countryCodes": ["ar", "py", "uy"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Aytemiz": {"name": "Aytemiz", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/AytemizOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62274352", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Aytemiz", "brand:wikidata": "Q62274352", "name": "Aytemiz"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Azpetrol": {"name": "Azpetrol", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/1029982540429881/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4034661", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Azpetrol", "brand:wikidata": "Q4034661", "brand:wikipedia": "az:Azpetrol", "name": "Azpetrol"}, "countryCodes": ["az"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/BEBECO": {"name": "BEBECO", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62274373", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "BEBECO", "brand:wikidata": "Q62274373", "name": "BEBECO"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/BHPetrol": {"name": "BHPetrol", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/BHP.Petrol/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62274381", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "BHPetrol", "brand:wikidata": "Q62274381", "name": "BHPetrol"}, "countryCodes": ["my"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/BP": {"name": "BP", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/bp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q152057", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "BP", "brand:wikidata": "Q152057", "brand:wikipedia": "en:BP", "name": "BP"}, "terms": ["bp gas station"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/BR": {"name": "BR", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/postospetrobras/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4836468", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "BR", "brand:wikidata": "Q4836468", "brand:wikipedia": "pt:Petrobras Distribuidora", "name": "BR"}, "countryCodes": ["br"], "terms": ["br petrobras", "petrobras", "posto br"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/BWOC": {"name": "BWOC", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4836845", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "BWOC", "brand:wikidata": "Q4836845", "brand:wikipedia": "en:BWOC", "name": "BWOC", "official_name": "Bob Wayne's Oil Company"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Bangchak": {"name": "Bangchak", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Bangchak/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6579719", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Bangchak", "brand:wikidata": "Q6579719", "brand:wikipedia": "zh:曼差石油股份", "name": "Bangchak"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Bapco": {"name": "Bapco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Bapco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q803640", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Bapco", "brand:wikidata": "Q803640", "brand:wikipedia": "en:Bahrain Petroleum Company", "name": "Bapco", "official_name": "Bahrain Petroleum Company"}, "countryCodes": ["bh"], "terms": ["bahrain petroleum"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Benzina": {"name": "Benzina", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBenzina%2B.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11130894", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Benzina", "brand:wikidata": "Q11130894", "brand:wikipedia": "cs:Benzina", "name": "Benzina"}, "countryCodes": ["cz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Beyfin": {"name": "Beyfin", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3639256", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Beyfin", "brand:wikidata": "Q3639256", "brand:wikipedia": "it:Beyfin", "name": "Beyfin"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Bharat Petroleum": {"name": "Bharat Petroleum", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/BharatPetroleumcorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q854826", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Bharat Petroleum", "brand:wikidata": "Q854826", "brand:wikipedia": "en:Bharat Petroleum", "name": "Bharat Petroleum"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Biomax": {"name": "Biomax", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/BiomaxColombia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62274413", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Biomax", "brand:wikidata": "Q62274413", "name": "Biomax"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Bliska": {"name": "Bliska", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4016378", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Bliska", "brand:wikidata": "Q4016378", "brand:wikipedia": "pl:Bliska", "name": "Bliska"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/CAMPSA": {"name": "CAMPSA", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1031623", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "CAMPSA", "brand:wikidata": "Q1031623", "brand:wikipedia": "en:Campsa", "name": "CAMPSA", "official_name": "Compañía Arrendataria del Monopolio del Petróleo, S.A."}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Caltex": {"name": "Caltex", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/582354948345634816/nzfEGDG1_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q277470", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Caltex", "brand:wikidata": "Q277470", "brand:wikipedia": "en:Caltex", "name": "Caltex"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Canadian Tire Gas+": {"name": "Canadian Tire Gas+", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Canadiantire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1032400", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Canadian Tire", "brand:wikidata": "Q1032400", "brand:wikipedia": "en:Canadian Tire", "name": "Canadian Tire"}, "terms": ["canadian tire", "canadian tire gas bar"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Carrefour": {"name": "Carrefour", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/1239110499553488898/S31rVo48_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q217599", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Carrefour", "brand:wikidata": "Q217599", "brand:wikipedia": "fr:Carrefour (enseigne)", "name": "Carrefour"}, "terms": ["carrefour market"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Casey's General Store": {"name": "Casey's General Store", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/caseys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2940968", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Casey's General Store", "brand:wikidata": "Q2940968", "brand:wikipedia": "en:Casey's General Stores", "name": "Casey's General Store"}, "terms": ["caseys"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Casino": {"name": "Casino", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20Casino%20Supermarch%C3%A9s.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89029184", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Casino", "brand:wikidata": "Q89029184", "name": "Casino"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Cenex": {"name": "Cenex", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/CenexStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5011381", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Cenex", "brand:wikidata": "Q5011381", "brand:wikipedia": "en:CHS Inc.", "name": "Cenex"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Cepsa": {"name": "Cepsa", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/CEPSAespana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q608819", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Cepsa", "brand:wikidata": "Q608819", "brand:wikipedia": "en:Cepsa", "name": "Cepsa", "official_name": "Compañía Española de Petróleos, S.A.U."}, "countryCodes": ["es", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Ceypetco": {"name": "Ceypetco", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5065795", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Ceypetco", "brand:wikidata": "Q5065795", "brand:wikipedia": "en:Ceylon Petroleum Corporation", "name": "Ceypetco"}, "countryCodes": ["lk"], "terms": ["lanka filling station"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Challenge": {"name": "Challenge", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ChallengefuelNZ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5068888", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Challenge", "brand:wikidata": "Q5068888", "brand:wikipedia": "en:Challenge (gasoline)", "name": "Challenge"}, "countryCodes": ["nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Chevron": {"name": "Chevron", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Chevron/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q319642", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Chevron", "brand:wikidata": "Q319642", "brand:wikipedia": "en:Chevron Corporation", "name": "Chevron"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Circle K": {"name": "Circle K", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/CircleKStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3268010", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Citgo": {"name": "Citgo", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/CITGOPetroleumCorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2974437", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Citgo", "brand:wikidata": "Q2974437", "brand:wikipedia": "en:Citgo", "name": "Citgo"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Clark": {"name": "Clark", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ClarkCrownBrands/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5127157", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Clark", "brand:wikidata": "Q5127157", "brand:wikipedia": "en:Clark Brands", "name": "Clark"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Co-op (Canada)": {"name": "Co-op (Canada)", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/CoopCRS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5440676", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op"}, "countryCodes": ["ca"], "terms": ["coop"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Coles Express": {"name": "Coles Express", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ColesExpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5144653", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Coles Express", "brand:wikidata": "Q5144653", "brand:wikipedia": "en:Coles Express", "name": "Coles Express"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Conoco": {"name": "Conoco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/conoco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1126518", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Conoco", "brand:wikidata": "Q1126518", "brand:wikipedia": "en:Conoco", "name": "Conoco"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Copec": {"name": "Copec", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11681461", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Copec", "brand:wikidata": "Q11681461", "brand:wikipedia": "en:Empresas Copec", "name": "Copec"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Copetrol": {"name": "Copetrol", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Copetrol/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62274431", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Copetrol", "brand:wikidata": "Q62274431", "name": "Copetrol"}, "countryCodes": ["py"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Cosan": {"name": "Cosan", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/CosanBrasil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2998228", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Cosan", "brand:wikidata": "Q2998228", "brand:wikipedia": "pt:Cosan", "name": "Cosan"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Costco Gasoline": {"name": "Costco Gasoline", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Costco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q715583", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Costco Gasoline", "brand:wikidata": "Q715583", "brand:wikipedia": "en:Costco", "name": "Costco Gasoline"}, "countryCodes": ["au", "ca", "mx", "us"], "terms": ["costco", "costco gas", "costco wholesale"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Couche-Tard": {"name": "Couche-Tard", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/CoucheTardQc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2836957", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Couche-Tard", "brand:wikidata": "Q2836957", "brand:wikipedia": "en:Alimentation Couche-Tard", "name": "Couche-Tard"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Crevier": {"name": "Crevier", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/GroupeCrevier/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61743451", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Crevier", "brand:wikidata": "Q61743451", "name": "Crevier"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Crodux": {"name": "Crodux", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/croduxhr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62274622", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Crodux", "brand:wikidata": "Q62274622", "name": "Crodux"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Cumberland Farms": {"name": "Cumberland Farms", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/CumberlandFarms/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1143685", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Cumberland Farms", "brand:wikidata": "Q1143685", "brand:wikipedia": "en:Cumberland Farms", "name": "Cumberland Farms"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Cupet": {"name": "Cupet", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3007579", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Cupet", "brand:wikidata": "Q3007579", "brand:wikipedia": "en:Cuba Petróleo Union", "name": "Cupet"}, "countryCodes": ["cu"], "terms": ["cuba oil union", "cuba petróleo union"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Delek": {"name": "Delek", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFlad%20of%20Delek%202000.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1184087", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Delek", "brand:wikidata": "Q1184087", "brand:wikipedia": "en:Delek", "name": "Delek"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Delta (Panama & Costa Rica)": {"name": "Delta (Panama & Costa Rica)", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PetroleosDelta/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62274638", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Delta", "brand:wikidata": "Q62274638", "name": "Delta"}, "countryCodes": ["cr", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Delta (USA)": {"name": "Delta (USA)", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62274661", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Delta", "brand:wikidata": "Q62274661", "name": "Delta"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Diamond Shamrock": {"name": "Diamond Shamrock", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16973722", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Diamond Shamrock", "brand:wikidata": "Q16973722", "brand:wikipedia": "en:Diamond Shamrock", "name": "Diamond Shamrock"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Domo": {"name": "Domo", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/924850916536107008/9ZCP6jwR_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5291326", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Domo", "brand:wikidata": "Q5291326", "brand:wikipedia": "en:Domo Gasoline", "name": "Domo"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Dyneff": {"name": "Dyneff", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16630266", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Dyneff", "brand:wikidata": "Q16630266", "brand:wikipedia": "fr:Dyneff", "name": "Dyneff"}, "countryCodes": ["es", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/EKO (Canada)": {"name": "EKO (Canada)", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3045934", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "EKO", "brand:wikidata": "Q3045934", "brand:wikipedia": "fr:EKO", "name": "EKO"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/EKO (Greece)": {"name": "EKO (Greece)", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/HELPEgroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q903198", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "EKO", "brand:wikidata": "Q903198", "brand:wikipedia": "el:Ελληνικά Πετρέλαια", "name": "EKO"}, "countryCodes": ["bg", "cy", "gr", "me", "mk", "rs"], "terms": ["εκο"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Elan": {"name": "Elan", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57980752", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Elan", "brand:wikidata": "Q57980752", "name": "Elan"}, "countryCodes": ["de", "fr", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Engen": {"name": "Engen", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/1014490248112373760/rL8smOvY_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3054251", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Engen", "brand:wikidata": "Q3054251", "brand:wikipedia": "en:Engen Petroleum", "name": "Engen"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Eni": {"name": "Eni", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Eni/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q565594", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Eni", "brand:wikidata": "Q565594", "brand:wikipedia": "en:Eni", "name": "Eni"}, "countryCodes": ["at", "ch", "fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Erg": {"name": "Erg", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FERG%20logo2018.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q739503", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Erg", "brand:wikidata": "Q739503", "brand:wikipedia": "it:ERG (azienda)", "name": "Erg"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Esso": {"name": "Esso", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/EssoGB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q867662", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Esso", "brand:wikidata": "Q867662", "brand:wikipedia": "en:Esso", "name": "Esso"}, "terms": ["station esso"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Esso Express": {"name": "Esso Express", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2350336", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Esso Express", "brand:wikidata": "Q2350336", "brand:wikipedia": "nl:Esso Express", "name": "Esso Express"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Exxon": {"name": "Exxon", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ExxonandMobilStations/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4781944", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Exxon", "brand:wikidata": "Q4781944", "brand:wikipedia": "en:Exxon", "name": "Exxon"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/F24": {"name": "F24", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12310853", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "F24", "brand:wikidata": "Q12310853", "brand:wikipedia": "da:F24", "name": "F24"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Fas Gas": {"name": "Fas Gas", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/FasGasPlusCorporate/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61743505", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Fas Gas", "brand:wikidata": "Q61743505", "brand:wikipedia": "en:Parkland Fuel", "name": "Fas Gas"}, "countryCodes": ["ca"], "terms": ["fas gas plus"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Firezone": {"name": "Firezone", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/FirezoneNL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q14628080", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Firezone", "brand:wikidata": "Q14628080", "brand:wikipedia": "nl:Firezone", "name": "Firezone"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Flying J": {"name": "Flying J", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/pilottravelcenters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64130592", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Flying J", "brand:wikidata": "Q64130592", "name": "Flying J"}, "countryCodes": ["ca", "us"], "terms": ["flying j travel plaza"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Flying V": {"name": "Flying V", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OfficialFlyingV/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62275048", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Flying V", "brand:wikidata": "Q62275048", "name": "Flying V"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Fred Meyer": {"name": "Fred Meyer", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/fredmeyer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5495932", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Fred Meyer", "brand:wikidata": "Q5495932", "brand:wikipedia": "en:Fred Meyer", "name": "Fred Meyer"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Freie Tankstelle": {"name": "Freie Tankstelle", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/768624663275807/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1009104", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Freie Tankstelle", "brand:wikidata": "Q1009104", "brand:wikipedia": "de:Bundesverband freier Tankstellen", "name": "Freie Tankstelle"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/GALP": {"name": "GALP", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/468503569977955/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1492739", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "GALP", "brand:wikidata": "Q1492739", "brand:wikipedia": "en:Galp Energia", "name": "GALP"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Gazel": {"name": "Gazel", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62529885", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Gazel", "brand:wikidata": "Q62529885", "name": "Gazel"}, "countryCodes": ["co", "mx", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Gazprom": {"name": "Gazprom", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/GazpromNewsEn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q102673", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Gazprom", "brand:wikidata": "Q102673", "brand:wikipedia": "en:Gazprom", "name": "Gazprom"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/GetGo": {"name": "GetGo", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/783666971883737088/OU8AdzWU_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5553766", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "GetGo", "brand:wikidata": "Q5553766", "brand:wikipedia": "en:GetGo", "name": "GetGo"}, "countryCodes": ["us"], "terms": ["giant eagle", "giant eagle fuel"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Giant (Carlisle)": {"name": "Giant (Carlisle)", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/giantfoodstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5558332", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Giant", "brand:wikidata": "Q5558332", "brand:wikipedia": "en:Giant Food Stores", "name": "Giant"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Glusco": {"name": "Glusco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Glusco.Ukraine/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62284719", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Glusco", "brand:wikidata": "Q62284719", "name": "Glusco"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Goil": {"name": "Goil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/GOIL.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5555383", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Goil", "brand:wikidata": "Q5555383", "brand:wikipedia": "en:Ghana Oil Company", "name": "Goil"}, "countryCodes": ["gh"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Green Oil": {"name": "Green Oil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/greenoilmaroc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88393926", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Green Oil", "brand:wikidata": "Q88393926", "name": "Green Oil"}, "countryCodes": ["ma"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Gulf": {"name": "Gulf", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGulf%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1296860", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Gulf", "brand:wikidata": "Q1296860", "brand:wikipedia": "en:Gulf Oil", "name": "Gulf"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Gull": {"name": "Gull", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/GullNZ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5617739", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Gull", "brand:wikidata": "Q5617739", "brand:wikipedia": "en:Gull Petroleum", "name": "Gull"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/H-E-B Fuel": {"name": "H-E-B Fuel", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/HEB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q830621", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "H-E-B Fuel", "brand:wikidata": "Q830621", "brand:wikipedia": "en:H-E-B", "name": "H-E-B Fuel"}, "countryCodes": ["us"], "terms": ["h-e-b gas"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/HEM": {"name": "HEM", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTamoil.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1563517", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "HEM", "brand:wikidata": "Q1563517", "brand:wikipedia": "de:Deutsche Tamoil", "name": "HEM"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/HP": {"name": "HP", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/hpcl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1619375", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Hindustan Petroleum", "brand:wikidata": "Q1619375", "brand:wikipedia": "en:Hindustan Petroleum", "name": "HP", "official_name": "Hindustan Petroleum"}, "countryCodes": ["in"], "terms": ["hp petrol pump"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Harnois": {"name": "Harnois", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/harnoisenergies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61743558", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Harnois", "brand:wikidata": "Q61743558", "name": "Harnois"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Hess": {"name": "Hess", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/HessCorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1615684", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Hess", "brand:wikidata": "Q1615684", "brand:wikipedia": "en:Hess Corporation", "name": "Hess"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Hofer": {"name": "Hofer", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/HOFER.AT/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15815751", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Hofer", "brand:wikidata": "Q15815751", "brand:wikipedia": "de:Hofer KG", "name": "Hofer"}, "countryCodes": ["at", "si"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Holiday": {"name": "Holiday", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/holidaystations/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5880490", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Holiday", "brand:wikidata": "Q5880490", "brand:wikipedia": "en:Holiday Stationstores", "name": "Holiday"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Huck's Food & Fuel": {"name": "Huck's Food & Fuel", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/GoToHucks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56276328", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Huck's Food & Fuel", "brand:wikidata": "Q56276328", "brand:wikipedia": "en:Huck's Food & Fuel", "name": "Huck's Food & Fuel", "short_name": "Huck's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Husky": {"name": "Husky", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/huskyenergy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q702049", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Husky", "brand:wikidata": "Q702049", "brand:wikipedia": "en:Husky Energy", "name": "Husky"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Hy-Vee Gas": {"name": "Hy-Vee Gas", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/HyVee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1639719", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Hy-Vee Gas", "brand:wikidata": "Q1639719", "brand:wikipedia": "en:Hy-Vee", "name": "Hy-Vee Gas"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/IES": {"name": "IES", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/512948242925891586/WqYuXs0m_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62287387", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "IES", "brand:wikidata": "Q62287387", "name": "IES"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/IP": {"name": "IP", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/IPperlitalia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q646807", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "IP", "brand:wikidata": "Q646807", "brand:wikipedia": "en:Anonima Petroli Italiana", "name": "IP"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Indian Oil": {"name": "Indian Oil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/IndianOilCorpLimited/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1289348", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Indian Oil", "brand:wikidata": "Q1289348", "brand:wikipedia": "en:Indian Oil Corporation", "name": "Indian Oil"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Ingo": {"name": "Ingo", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ingosverige/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17048617", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Ingo", "brand:wikidata": "Q17048617", "brand:wikipedia": "en:Ingo (brand)", "name": "Ingo"}, "countryCodes": ["dk", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Intermarché": {"name": "Intermarché", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/1242150382085779463/Cmm3JM1n_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3153200", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Intermarché", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché"}, "terms": ["intermarché super"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Ipiranga": {"name": "Ipiranga", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ipirangaoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2081136", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Ipiranga", "brand:wikidata": "Q2081136", "brand:wikipedia": "pt:Ipiranga (empresa)", "name": "Ipiranga"}, "countryCodes": ["br"], "terms": ["posto ipiranga"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Irving": {"name": "Irving", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/irvingoil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1673286", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Irving", "brand:wikidata": "Q1673286", "brand:wikipedia": "en:Irving Oil", "name": "Irving"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/JA-SS": {"name": "JA-SS", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11225213", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "JA-SS", "brand:wikidata": "Q11225213", "brand:wikipedia": "ja:JA-SS", "name": "JA-SS"}, "countryCodes": ["jp"], "terms": ["ja"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Jet": {"name": "Jet", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q568940", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Jet", "brand:wikidata": "Q568940", "brand:wikipedia": "en:Jet (brand)", "name": "Jet"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Jetti": {"name": "Jetti", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/drivewithjetti/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62288720", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Jetti", "brand:wikidata": "Q62288720", "name": "Jetti"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Kangaroo Express": {"name": "Kangaroo Express", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/KangarooExpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61747408", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Kangaroo Express", "brand:wikidata": "Q61747408", "name": "Kangaroo Express", "short_name": "Kangaroo"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Kobil": {"name": "Kobil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/kenolkobil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22906119", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Kobil", "brand:wikidata": "Q22906119", "brand:wikipedia": "en:KenolKobil", "name": "Kobil"}, "countryCodes": ["bi", "et", "ke", "rw", "tz", "ug", "zm"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Krist": {"name": "Krist", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/kristoil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q77885501", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Krist", "brand:wikidata": "Q77885501", "name": "Krist"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Kroger": {"name": "Kroger", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Kroger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q153417", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Kroger", "brand:wikidata": "Q153417", "brand:wikipedia": "en:Kroger", "name": "Kroger"}, "terms": ["kroger fuel", "kroger gas"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Kum & Go": {"name": "Kum & Go", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/kumandgo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6443340", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Kum & Go", "brand:wikidata": "Q6443340", "brand:wikipedia": "en:Kum & Go", "name": "Kum & Go"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Kwik Shop": {"name": "Kwik Shop", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/kwikshopstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6450417", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Kwik Shop", "brand:wikidata": "Q6450417", "brand:wikipedia": "en:Kwik Shop", "name": "Kwik Shop"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Kwik Trip": {"name": "Kwik Trip", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/KwikTrip/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6450420", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Lotos": {"name": "Lotos", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/GrupaLOTOS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1256909", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Lotos", "brand:wikidata": "Q1256909", "brand:wikipedia": "pl:Grupa Lotos", "name": "Lotos"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Lotos Optima": {"name": "Lotos Optima", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/GrupaLOTOS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1256909", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Lotos Optima", "brand:wikidata": "Q1256909", "brand:wikipedia": "pl:Grupa Lotos", "name": "Lotos Optima"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Love's": {"name": "Love's", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/lovestravelstops/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1872496", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Love's", "brand:wikidata": "Q1872496", "brand:wikipedia": "en:Love's Travel Stops & Country Stores", "name": "Love's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Lukoil": {"name": "Lukoil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Lukoil.en/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q329347", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Lukoil", "brand:wikidata": "Q329347", "brand:wikipedia": "en:Lukoil", "name": "Lukoil"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/MEROIL": {"name": "MEROIL", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/meroilspain/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62292559", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "MEROIL", "brand:wikidata": "Q62292559", "name": "MEROIL"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/MOL": {"name": "MOL", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/molcesko/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q549181", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "MOL", "brand:wikidata": "Q549181", "brand:wikipedia": "en:MOL (company)", "name": "MOL"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/MRS": {"name": "MRS", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56274919", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "MRS", "brand:wikidata": "Q56274919", "brand:wikipedia": "en:MRS Oil Nigeria Plc", "name": "MRS"}, "countryCodes": ["ng"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Mac's": {"name": "Mac's", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/MacsBigBaypointRoad/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4043527", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Mac's", "brand:wikidata": "Q4043527", "brand:wikipedia": "en:Mac's Convenience Stores", "name": "Mac's"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/MacEwen": {"name": "MacEwen", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/MacEwenServiceStation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61740335", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "MacEwen", "brand:wikidata": "Q61740335", "name": "MacEwen"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Marathon": {"name": "Marathon", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/MarathonPetroleumCorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q458363", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon"}, "terms": ["marathon gas"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Maverik": {"name": "Maverik", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/maverikadventure/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64149010", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Maverik", "brand:wikidata": "Q64149010", "brand:wikipedia": "en:Maverik, Inc.", "name": "Maverik"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Maxol": {"name": "Maxol", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/1211959625710477313/3pwGBn8K_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3302837", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Maxol", "brand:wikidata": "Q3302837", "brand:wikipedia": "en:Maxol", "name": "Maxol"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Meijer": {"name": "Meijer", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/meijer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1917753", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Meijer", "brand:wikidata": "Q1917753", "brand:wikipedia": "en:Meijer", "name": "Meijer"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Metano": {"name": "Metano", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62294765", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Metano", "brand:wikidata": "Q62294765", "name": "Metano"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Migrol": {"name": "Migrol", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Migrol.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1747771", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Migrol", "brand:wikidata": "Q1747771", "brand:wikipedia": "de:Migrol", "name": "Migrol"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Mobil": {"name": "Mobil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ExxonandMobilStations/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3088656", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Mobil", "brand:wikidata": "Q3088656", "brand:wikipedia": "en:Mobil", "name": "Mobil"}, "terms": ["mobile"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Mohawk": {"name": "Mohawk", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6893796", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Mohawk", "brand:wikidata": "Q6893796", "brand:wikipedia": "en:Mohawk Oil", "name": "Mohawk"}, "countryCodes": ["ca"], "terms": ["mohawk oil"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Moil": {"name": "Moil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/milanpetrol/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62296914", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Moil", "brand:wikidata": "Q62296914", "name": "Moil"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Morrisons": {"name": "Morrisons", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Morrisons/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q922344", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Morrisons", "brand:wikidata": "Q922344", "brand:wikipedia": "en:Morrisons", "name": "Morrisons"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Moya": {"name": "Moya", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/moyastacja/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62297700", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Moya", "brand:wikidata": "Q62297700", "name": "Moya"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Murco": {"name": "Murco", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16998281", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Murco", "brand:wikidata": "Q16998281", "brand:wikipedia": "en:Murco Petroleum", "name": "Murco"}, "countryCodes": ["gb"], "terms": ["murco petroleum"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Murphy USA": {"name": "Murphy USA", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/MurphyUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19604459", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Murphy USA", "brand:wikidata": "Q19604459", "brand:wikipedia": "en:Murphy USA", "name": "Murphy USA"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/NP": {"name": "NP", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/trinidadnp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7842382", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "NP", "brand:wikidata": "Q7842382", "brand:wikipedia": "en:Trinidad & Tobago National Petroleum Marketing Company Limited", "name": "NP"}, "countryCodes": ["tt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Neste": {"name": "Neste", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/NesteUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q616376", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Neste", "brand:wikidata": "Q616376", "brand:wikipedia": "en:Neste", "name": "Neste"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/OIL!": {"name": "OIL!", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20OIL!.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2007561", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "OIL!", "brand:wikidata": "Q2007561", "brand:wikipedia": "de:OIL! Tankstellen", "name": "OIL!"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/OK": {"name": "OK", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12329785", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "OK", "brand:wikidata": "Q12329785", "brand:wikipedia": "da:OK a.m.b.a.", "name": "OK"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/OKQ8": {"name": "OKQ8", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OKQ8/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1634762", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "OKQ8", "brand:wikidata": "Q1634762", "brand:wikipedia": "en:Kuwait Petroleum Corporation", "name": "OKQ8"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/OMV": {"name": "OMV", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OMV/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q168238", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "OMV", "brand:wikidata": "Q168238", "brand:wikipedia": "en:OMV", "name": "OMV"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Oilibya": {"name": "Oilibya", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OilibyaMisr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7081491", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Oilibya", "brand:wikidata": "Q7081491", "brand:wikipedia": "en:Oilibya", "name": "Oilibya", "name:ar": "أويليبيا"}, "terms": ["oilibia", "oilibiya", "oillibia", "oilliby", "oillibya", "oillybia", "oilybia", "olibya", "olybia"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Olerex": {"name": "Olerex", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/as.olerex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16931205", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Olerex", "brand:wikidata": "Q16931205", "brand:wikipedia": "et:AS Olerex", "name": "Olerex"}, "countryCodes": ["ee"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Opet": {"name": "Opet", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/opet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7072824", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Opet", "brand:wikidata": "Q7072824", "brand:wikipedia": "en:Opet", "name": "Opet"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Orlen": {"name": "Orlen", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ORLENOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q971649", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Orlen", "brand:wikidata": "Q971649", "brand:wikipedia": "en:PKN Orlen", "name": "Orlen"}, "countryCodes": ["lt", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Oxxo": {"name": "Oxxo", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OXXOTiendas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1342538", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/PSO": {"name": "PSO", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PSOCL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2741455", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "PSO", "brand:wikidata": "Q2741455", "brand:wikipedia": "en:Pakistan State Oil", "name": "PSO"}, "countryCodes": ["pk"], "terms": ["pso petrol pump"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/PT": {"name": "PT", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ptstation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62298612", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "PT", "brand:wikidata": "Q62298612", "name": "PT"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/PTT": {"name": "PTT", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PTTNews/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1810389", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "PTT", "brand:wikidata": "Q1810389", "brand:wikipedia": "en:PTT Public Company Limited", "name": "PTT"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/PV Oil": {"name": "PV Oil", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2089536", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "PV Oil", "brand:wikidata": "Q2089536", "brand:wikipedia": "en:Petrovietnam", "name": "PV Oil"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Pacific Pride": {"name": "Pacific Pride", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PacificPrideUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7122637", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Pacific Pride", "brand:wikidata": "Q7122637", "brand:wikipedia": "en:Pacific Pride", "name": "Pacific Pride"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Pecsa": {"name": "Pecsa", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PecsaPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62299262", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Pecsa", "brand:wikidata": "Q62299262", "name": "Pecsa"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Pemex": {"name": "Pemex", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Pemex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q871308", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Pemex", "brand:wikidata": "Q871308", "brand:wikipedia": "en:Pemex", "name": "Pemex"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Pertamina": {"name": "Pertamina", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/pertamina/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1641044", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Pertamina", "brand:wikidata": "Q1641044", "brand:wikipedia": "en:Pertamina", "name": "Pertamina"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petro": {"name": "Petro", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TravelCentersOfAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64051305", "amenity": "fuel"}, "addTags": {"alt_name": "Petro Stopping Centers", "amenity": "fuel", "brand": "Petro", "brand:wikidata": "Q64051305", "name": "Petro"}, "countryCodes": ["ca", "us"], "terms": ["petro stopping center"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petro-Canada": {"name": "Petro-Canada", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/petrocanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1208279", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petro-T": {"name": "Petro-T", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/433867116736933/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61743540", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petro-T", "brand:wikidata": "Q61743540", "name": "Petro-T"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/PetroPerú": {"name": "PetroPerú", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/petroperu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2506390", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "PetroPerú", "brand:wikidata": "Q2506390", "brand:wikipedia": "es:Petroperú", "name": "PetroPerú"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petrochina": {"name": "Petrochina", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PetroChina.Ltd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q503182", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petrochina", "brand:wikidata": "Q503182", "brand:wikipedia": "en:PetroChina", "name": "Petrochina"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petroecuador": {"name": "Petroecuador", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PetroecuadorEP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1812822", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petroecuador", "brand:wikidata": "Q1812822", "brand:wikipedia": "en:Petroecuador", "name": "Petroecuador"}, "countryCodes": ["ec"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petrol Ofisi": {"name": "Petrol Ofisi", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/petrolofisi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1278087", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petrol Ofisi", "brand:wikidata": "Q1278087", "brand:wikipedia": "en:Petrol Ofisi", "name": "Petrol Ofisi"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petrolimex": {"name": "Petrolimex", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/tapdoanxangdauvietnam/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10831598", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petrolimex", "brand:wikidata": "Q10831598", "brand:wikipedia": "en:Petrolimex", "name": "Petrolimex"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petrolina": {"name": "Petrolina", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/petrolinaholdings/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17013948", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petrolina", "brand:wikidata": "Q17013948", "brand:wikipedia": "en:Petrolina (company)", "name": "Petrolina"}, "countryCodes": ["cy"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petrom": {"name": "Petrom", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PetromRo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1755034", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petrom", "brand:wikidata": "Q1755034", "brand:wikipedia": "en:Petrom", "name": "Petrom"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petron": {"name": "Petron", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PetronCorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7179011", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petron", "brand:wikidata": "Q7179011", "brand:wikipedia": "en:Petron Corporation", "name": "Petron"}, "countryCodes": ["my", "ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petronas": {"name": "Petronas", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/petronas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q221692", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petronas", "brand:wikidata": "Q221692", "brand:wikipedia": "en:Petronas", "name": "Petronas"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Petronor": {"name": "Petronor", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/info.petronor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1726547", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Petronor", "brand:wikidata": "Q1726547", "brand:wikipedia": "es:Petronor", "name": "Petronor"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Phillips 66": {"name": "Phillips 66", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Phillips66Co/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1656230", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Phillips 66", "brand:wikidata": "Q1656230", "brand:wikipedia": "en:Phillips 66", "name": "Phillips 66"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Phoenix": {"name": "Phoenix", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/phoenixfuels.ph/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7186949", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Phoenix", "brand:wikidata": "Q7186949", "brand:wikipedia": "en:Phoenix Petroleum", "name": "Phoenix"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Pilot": {"name": "Pilot", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/pilottravelcenters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64128179", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Pilot", "brand:wikidata": "Q64128179", "name": "Pilot"}, "countryCodes": ["ca", "us"], "terms": ["pilot travel centers"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Pioneer": {"name": "Pioneer", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PioneerEnergy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7196684", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Pioneer", "brand:wikidata": "Q7196684", "brand:wikipedia": "en:Pioneer Energy", "name": "Pioneer"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Preem": {"name": "Preem", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/preem/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q598835", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Preem", "brand:wikidata": "Q598835", "brand:wikipedia": "en:Preem", "name": "Preem"}, "countryCodes": ["pl", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Primax (Ecuador)": {"name": "Primax (Ecuador)", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PrimaxEcuador/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62332857", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Primax", "brand:wikidata": "Q62332857", "name": "Primax"}, "countryCodes": ["ec"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Primax (Peru)": {"name": "Primax (Peru)", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PrimaxPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62332638", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Primax", "brand:wikidata": "Q62332638", "name": "Primax"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Prio": {"name": "Prio", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PrioEnergy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62530421", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Prio", "brand:wikidata": "Q62530421", "name": "Prio"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Puma": {"name": "Puma", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PumaEnergy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7259769", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Puma", "brand:wikidata": "Q7259769", "brand:wikipedia": "en:Puma Energy", "name": "Puma"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Q1": {"name": "Q1", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Q1EnergieAG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62086498", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Q1", "brand:wikidata": "Q62086498", "name": "Q1"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Q8": {"name": "Q8", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OKQ8/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1634762", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Q8", "brand:wikidata": "Q1634762", "brand:wikipedia": "en:Kuwait Petroleum Corporation", "name": "Q8"}, "countryCodes": ["be", "dk", "es", "it", "lu", "nl", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Q8 Easy": {"name": "Q8 Easy", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Q8italia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1806948", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Q8 Easy", "brand:wikidata": "Q1806948", "brand:wikipedia": "nl:Q8 Easy", "name": "Q8 Easy"}, "countryCodes": ["be", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Qstar": {"name": "Qstar", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10647961", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Qstar", "brand:wikidata": "Q10647961", "brand:wikipedia": "sv:Qstar", "name": "Qstar"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/QuickChek": {"name": "QuickChek", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/1235227251131678722/4FZ60T1d_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7271689", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "QuickChek", "brand:wikidata": "Q7271689", "brand:wikipedia": "en:QuickChek", "name": "QuickChek"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/QuikTrip": {"name": "QuikTrip", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Quiktrip/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7271953", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "QuikTrip", "brand:wikidata": "Q7271953", "brand:wikipedia": "en:QuikTrip", "name": "QuikTrip", "short_name": "QT"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/RaceTrac": {"name": "RaceTrac", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/RaceTrac/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q735942", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "RaceTrac", "brand:wikidata": "Q735942", "brand:wikipedia": "en:RaceTrac", "name": "RaceTrac"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/RaceWay": {"name": "RaceWay", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/720219901323849/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q73039084", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "RaceWay", "brand:wikidata": "Q73039084", "name": "RaceWay"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Repsol": {"name": "Repsol", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/repsol/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q174747", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Repsol", "brand:wikidata": "Q174747", "brand:wikipedia": "es:Repsol", "name": "Repsol"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Revoil": {"name": "Revoil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/revoil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62530755", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Revoil", "brand:wikidata": "Q62530755", "name": "Revoil"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Rompetrol": {"name": "Rompetrol", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Rompetrol.Romania/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1788862", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Rompetrol", "brand:wikidata": "Q1788862", "brand:wikipedia": "en:Rompetrol", "name": "Rompetrol"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Rotten Robbie": {"name": "Rotten Robbie", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/rottenrobbies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87378070", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Rotten Robbie", "brand:wikidata": "Q87378070", "name": "Rotten Robbie"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Royal Farms": {"name": "Royal Farms", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Royalfarmsstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7374169", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Royal Farms", "brand:wikidata": "Q7374169", "brand:wikipedia": "en:Royal Farms", "name": "Royal Farms"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Rubis": {"name": "Rubis", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3446514", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Rubis", "brand:wikidata": "Q3446514", "brand:wikipedia": "en:Rubis (company)", "name": "Rubis"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Rutter's": {"name": "Rutter's", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/rutters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7383544", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Rutter's", "brand:wikidata": "Q7383544", "brand:wikipedia": "en:Rutter's", "name": "Rutter's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Safeway": {"name": "Safeway", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Safeway/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1508234", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Safeway", "brand:wikidata": "Q1508234", "brand:wikipedia": "en:Safeway Inc.", "name": "Safeway"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sainsbury's": {"name": "Sainsbury's", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/sainsburys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q152096", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Sainsbury's", "brand:wikidata": "Q152096", "brand:wikipedia": "en:Sainsbury's", "name": "Sainsbury's"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sam's Club": {"name": "Sam's Club", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/samsclub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1972120", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Sam's Club", "brand:wikidata": "Q1972120", "brand:wikipedia": "en:Sam's Club", "name": "Sam's Club"}, "terms": ["sams club fuel center", "sams club gas"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sasol": {"name": "Sasol", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/SasolSACareers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q905998", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Sasol", "brand:wikidata": "Q905998", "brand:wikipedia": "en:Sasol", "name": "Sasol"}, "countryCodes": ["za"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sea Oil": {"name": "Sea Oil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/SEAOIL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7389549", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Sea Oil", "brand:wikidata": "Q7389549", "brand:wikipedia": "en:Seaoil Philippines", "name": "Sea Oil"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sheetz": {"name": "Sheetz", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/sheetz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7492551", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Shell": {"name": "Shell", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Shell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q154950", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Shell", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell"}, "terms": ["posto shell", "shell gas station", "shell petrol station", "shell station", "station shell"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Shell Express": {"name": "Shell Express", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/shell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2289188", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Shell Express", "brand:wikidata": "Q2289188", "brand:wikipedia": "nl:Shell Express", "name": "Shell Express"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sinclair": {"name": "Sinclair", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/SinclairOilCorp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1290900", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Sinclair", "brand:wikidata": "Q1290900", "brand:wikipedia": "en:Sinclair Oil Corporation", "name": "Sinclair"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Slovnaft": {"name": "Slovnaft", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/MySlovnaft/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1587563", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Slovnaft", "brand:wikidata": "Q1587563", "brand:wikipedia": "en:Slovnaft", "name": "Slovnaft"}, "countryCodes": ["cz", "pl", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Socar": {"name": "Socar", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/SOCARofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1622293", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Socar", "brand:wikidata": "Q1622293", "brand:wikipedia": "en:SOCAR", "name": "Socar"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sokimex": {"name": "Sokimex", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/SokimexGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1149575", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Sokimex", "brand:wikidata": "Q1149575", "brand:wikipedia": "en:Sokimex", "name": "Sokimex"}, "countryCodes": ["kh"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sonangol": {"name": "Sonangol", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSonangol%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q677832", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Sonangol", "brand:wikidata": "Q677832", "brand:wikipedia": "pt:Sonangol", "name": "Sonangol"}, "countryCodes": ["ao"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Speedway": {"name": "Speedway", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/SpeedwayStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7575683", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sprint": {"name": "Sprint", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/SprintTankstelle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57588452", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Sprint", "brand:wikidata": "Q57588452", "name": "Sprint"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/St1": {"name": "St1", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/st1suomi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7592214", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "St1", "brand:wikidata": "Q7592214", "brand:wikipedia": "en:St1", "name": "St1"}, "countryCodes": ["fi", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Star": {"name": "Star", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/123909017686285/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2031095", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Star", "brand:wikidata": "Q2031095", "brand:wikipedia": "de:Orlen Deutschland", "name": "Star"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Station Service E. Leclerc": {"name": "Station Service E. Leclerc", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/E.Leclerc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1273376", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "E.Leclerc", "brand:wikidata": "Q1273376", "brand:wikipedia": "fr:E.Leclerc", "name": "Station Service E. Leclerc"}, "terms": ["e. leclerc"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Statoil": {"name": "Statoil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Equinor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1776022", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Statoil", "brand:wikidata": "Q1776022", "brand:wikipedia": "en:Equinor", "name": "Statoil"}, "countryCodes": ["dk", "ee", "ie", "pl", "ru", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Stewart's": {"name": "Stewart's", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/YourStewarts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7615690", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Stewart's", "brand:wikidata": "Q7615690", "brand:wikipedia": "en:Stewart's Shops", "name": "Stewart's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Sunoco": {"name": "Sunoco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/GoSunoco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1423218", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Sunoco", "brand:wikidata": "Q1423218", "brand:wikipedia": "en:Sunoco", "name": "Sunoco"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Super U": {"name": "Super U", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ULesCommercants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2529029", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Super U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Super U"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/TA": {"name": "TA", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TravelCentersOfAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7835892", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "TA", "brand:wikidata": "Q7835892", "brand:wikipedia": "en:TravelCenters of America", "name": "TA"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Tamoil": {"name": "Tamoil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TamoilNederland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q706793", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Tamoil", "brand:wikidata": "Q706793", "brand:wikipedia": "en:Tamoil", "name": "Tamoil"}, "countryCodes": ["ch", "de", "es", "fr", "it", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Tango": {"name": "Tango", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TangoTankstations/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2423920", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Tango", "brand:wikidata": "Q2423920", "brand:wikipedia": "nl:Tango CV", "name": "Tango"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Tanka": {"name": "Tanka", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10690640", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Tanka", "brand:wikidata": "Q10690640", "brand:wikipedia": "sv:Tanka (bensinstationskedja)", "name": "Tanka"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Teboil": {"name": "Teboil", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/teboil.fi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7692079", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Teboil", "brand:wikidata": "Q7692079", "brand:wikipedia": "en:Teboil", "name": "Teboil"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Tela": {"name": "Tela", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TelaCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62534875", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Tela", "brand:wikidata": "Q62534875", "name": "Tela"}, "countryCodes": ["kh"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Tempo": {"name": "Tempo", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62535175", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Tempo", "brand:wikidata": "Q62535175", "name": "Tempo"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Terpel": {"name": "Terpel", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Terpel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7703003", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Terpel", "brand:wikidata": "Q7703003", "brand:wikipedia": "en:Terpel", "name": "Terpel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Terrible's": {"name": "Terrible's", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TerribleHerbst/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7703648", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Terrible's", "brand:wikidata": "Q7703648", "brand:wikipedia": "en:Terrible Herbst", "name": "Terrible's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Tesco": {"name": "Tesco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/1183230681723205/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q487494", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Tesco", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Texaco": {"name": "Texaco", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TexacoWithTechron/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q775060", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Texaco", "brand:wikidata": "Q775060", "brand:wikipedia": "en:Texaco", "name": "Texaco"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Thorntons": {"name": "Thorntons", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/thorntonsllc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7796584", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Thorntons", "brand:wikidata": "Q7796584", "brand:wikipedia": "en:Thorntons LLC", "name": "Thorntons"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Tinq": {"name": "Tinq", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2132028", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Tinq", "brand:wikidata": "Q2132028", "brand:wikipedia": "nl:Tinq", "name": "Tinq"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Top": {"name": "Top", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TOPOilFuelingIreland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7693933", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Top", "brand:wikidata": "Q7693933", "brand:wikipedia": "en:Tedcastles Oil Products", "name": "Top", "official_name": "Tedcastles Oil Products"}, "countryCodes": ["ie"], "terms": ["top oil"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Topaz": {"name": "Topaz", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/1167471677904773120/_vgQ82G0_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7824764", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Topaz", "brand:wikidata": "Q7824764", "brand:wikipedia": "en:Topaz Energy", "name": "Topaz"}, "countryCodes": ["ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Total": {"name": "Total", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TotalUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q154037", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Total", "brand:wikidata": "Q154037", "brand:wikipedia": "fr:Total (entreprise)", "name": "Total"}, "terms": ["station total"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Total Access": {"name": "Total Access", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TotalUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q154037", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Total Access", "brand:wikidata": "Q154037", "brand:wikipedia": "fr:Total (entreprise)", "name": "Total Access"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/TotalErg": {"name": "TotalErg", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTotalerg%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3995933", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "TotalErg", "brand:wikidata": "Q3995933", "brand:wikipedia": "it:TotalErg", "name": "TotalErg"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Turkey Hill": {"name": "Turkey Hill", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/turkeyhillmm/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q42376970", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Turkey Hill", "brand:wikidata": "Q42376970", "brand:wikipedia": "en:Turkey Hill Minit Markets", "name": "Turkey Hill"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Turmöl": {"name": "Turmöl", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Turmoel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1473279", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Turmöl", "brand:wikidata": "Q1473279", "brand:wikipedia": "de:Turmöl", "name": "Turmöl"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/UDF Fuel": {"name": "UDF Fuel", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/UnitedDairyFarmers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7887677", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "UDF Fuel", "short_name": "UDF"}, "countryCodes": ["us"], "terms": ["udf fuels", "united dairy farmers"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/USA Gasoline": {"name": "USA Gasoline", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/153091311519939/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17126373", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "USA Gasoline", "brand:wikidata": "Q17126373", "brand:wikipedia": "en:USA Gasoline", "name": "USA Gasoline"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Ultramar": {"name": "Ultramar", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ultramarcanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3548078", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Ultramar", "brand:wikidata": "Q3548078", "brand:wikipedia": "en:Ultramar", "name": "Ultramar"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/United": {"name": "United", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/unitedpetroleum/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28224393", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "United", "brand:wikidata": "Q28224393", "brand:wikipedia": "en:United Petroleum", "name": "United"}, "countryCodes": ["au"], "terms": ["united petroleum"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Uno": {"name": "Uno", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/UnoGasolineras/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62535574", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Uno", "brand:wikidata": "Q62535574", "name": "Uno"}, "countryCodes": ["bz", "cr", "gt", "hn", "ni", "sv"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Uno-X": {"name": "Uno-X", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/unoxdanmark/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3362746", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Uno-X", "brand:wikidata": "Q3362746", "brand:wikipedia": "en:Uno-X", "name": "Uno-X"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Valero": {"name": "Valero", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/valeroenergy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1283291", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Valero", "brand:wikidata": "Q1283291", "brand:wikipedia": "en:Valero Energy", "name": "Valero"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Viada": {"name": "Viada", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ViadaLietuva/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12663942", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Viada", "brand:wikidata": "Q12663942", "brand:wikipedia": "en:Lukoil Baltija", "name": "Viada"}, "countryCodes": ["lt", "lv"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Vito": {"name": "Vito", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/VITOCORSICA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62536473", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Vito", "brand:wikidata": "Q62536473", "name": "Vito"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/WOG": {"name": "WOG", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/azkWOG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12072939", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "WOG", "brand:wikidata": "Q12072939", "brand:wikipedia": "en:WOG (gas stations)", "name": "WOG"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Walmart": {"name": "Walmart", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62606411", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Walmart", "brand:wikidata": "Q62606411", "brand:wikipedia": "en:Walmart", "name": "Walmart"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Wawa": {"name": "Wawa", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/wawa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5936320", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Wawa", "brand:wikidata": "Q5936320", "brand:wikipedia": "en:Wawa (company)", "name": "Wawa"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Westfalen": {"name": "Westfalen", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/WestfalenAG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1411209", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Westfalen", "brand:wikidata": "Q1411209", "brand:wikipedia": "en:Westfalen AG", "name": "Westfalen"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Winxo": {"name": "Winxo", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/WinxoOfficiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88389320", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Winxo", "brand:wikidata": "Q88389320", "name": "Winxo"}, "countryCodes": ["ma"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Woolworths Petrol": {"name": "Woolworths Petrol", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/woolworths/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5023980", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/XTR": {"name": "XTR", "icon": "maki-fuel", "imageURL": "https://pbs.twimg.com/profile_images/1849683826/XTRASlogo_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62537250", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "XTR", "brand:wikidata": "Q62537250", "name": "XTR"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/YPF": {"name": "YPF", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/YPFoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2006989", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "YPF", "brand:wikidata": "Q2006989", "brand:wikipedia": "en:YPF", "name": "YPF"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/YX Energi": {"name": "YX Energi", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4580519", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "YX Energi", "brand:wikidata": "Q4580519", "brand:wikipedia": "en:YX Energi", "name": "YX Energi"}, "countryCodes": ["dk", "no"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Z": {"name": "Z", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/zenergynz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8063337", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Z", "brand:wikidata": "Q8063337", "brand:wikipedia": "en:Z Energy", "name": "Z"}, "countryCodes": ["nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Ziz": {"name": "Ziz", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/smdczizmaroc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88393228", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Ziz", "brand:wikidata": "Q88393228", "name": "Ziz"}, "countryCodes": ["ma"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/bft": {"name": "bft", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/768624663275807/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1009104", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "bft", "brand:wikidata": "Q1009104", "brand:wikipedia": "de:Bundesverband freier Tankstellen", "name": "bft"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/bi1": {"name": "bi1", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56325139", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "bi1", "brand:wikidata": "Q56325139", "brand:wikipedia": "pl:Bi1", "name": "bi1"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/din-X": {"name": "din-X", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/bensinbolagettvartom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10472858", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "din-X", "brand:wikidata": "Q10472858", "brand:wikipedia": "sv:Din-X", "name": "din-X"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/uSmile 昆仑好客": {"name": "uSmile 昆仑好客", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/113494673346645/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66480830", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "uSmile 昆仑好客", "brand:en": "uSmile", "brand:wikidata": "Q66480830", "brand:zh": "昆仑好客", "name": "uSmile 昆仑好", "name:en": "uSmile", "name:zh": "昆仑好客"}, "countryCodes": ["cn"], "terms": ["usmile", "usmile 便利店", "昆仑好", "昆仑好客"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Авіас": {"name": "Авіас", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12122687", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Авіас", "brand:wikidata": "Q12122687", "brand:wikipedia": "uk:Мережа АЗС Приват", "name": "Авіас"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/БРСМ-Нафта": {"name": "БРСМ-Нафта", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/BRSM.NAFTA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56356523", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "БРСМ-Нафта", "brand:wikidata": "Q56356523", "brand:wikipedia": "uk:БРСМ-Нафта", "name": "БРСМ-Нафта"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Башнефть": {"name": "Башнефть", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Bashneft/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q809985", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Башнефть", "brand:en": "Bashneft", "brand:wikidata": "Q809985", "brand:wikipedia": "en:Bashneft", "name": "Башнефть", "name:en": "Bashneft"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Белоруснефть": {"name": "Белоруснефть", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/belorusneft/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4082693", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Белоруснефть", "brand:wikidata": "Q4082693", "brand:wikipedia": "ru:Белоруснефть", "name": "Белоруснефть"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Газпромнефть": {"name": "Газпромнефть", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/gazprom.neft/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1461799", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Газпромнефть", "brand:wikidata": "Q1461799", "brand:wikipedia": "en:Gazprom Neft", "name": "Газпромнефть"}, "countryCodes": ["by", "kg", "kz", "ru", "tj"], "terms": ["газпром"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Гелиос": {"name": "Гелиос", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62286471", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Гелиос", "brand:en": "Helios", "brand:wikidata": "Q62286471", "name": "Гелиос", "name:en": "Helios"}, "countryCodes": ["kz"], "terms": ["helios"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ЕКА": {"name": "ЕКА", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62543029", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ЕКА", "brand:wikidata": "Q62543029", "name": "ЕКА"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/КЛО": {"name": "КЛО", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/klo.oil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60966526", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "КЛО", "brand:en": "Klo", "brand:wikidata": "Q60966526", "brand:wikipedia": "ru:КЛО (сеть АЗС)", "name": "КЛО", "name:en": "Klo"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/КазМунайГаз": {"name": "КазМунайГаз", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OzenMunaiGaz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1417227", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "КазМунайГаз", "brand:wikidata": "Q1417227", "brand:wikipedia": "en:KazMunayGas", "name": "КазМунайГаз"}, "countryCodes": ["kz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Лукойл": {"name": "Лукойл", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Lukoil.en/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q329347", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Лукойл", "brand:wikidata": "Q329347", "brand:wikipedia": "ru:Лукойл", "name": "Лукойл"}, "terms": ["лукоил"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Макпетрол": {"name": "Макпетрол", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/makpetrol.ultra/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1886438", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Макпетрол", "brand:wikidata": "Q1886438", "brand:wikipedia": "en:Makpetrol", "name": "Макпетрол"}, "countryCodes": ["mk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/НК Альянс": {"name": "НК Альянс", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/AllianceOilUkraine/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4063700", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "НК Альянс", "brand:en": "Alliance Oil", "brand:ru": "НК Альянс", "brand:wikidata": "Q4063700", "brand:wikipedia": "ru:Альянс (компания)", "name": "НК Альянс", "name:en": "Alliance Oil", "name:ru": "НК Альянс"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Нефтьмагистраль": {"name": "Нефтьмагистраль", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/neftm.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62544323", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Нефтьмагистраль", "brand:en": "Neftmagistral", "brand:wikidata": "Q62544323", "name": "Нефтьмагистраль", "name:en": "Neftmagistral"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ОККО": {"name": "ОККО", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/okkoua/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7072617", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ОККО", "brand:en": "OKKO", "brand:wikidata": "Q7072617", "brand:wikipedia": "en:OKKO", "name": "ОККО", "name:en": "OKKO"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ОМВ": {"name": "ОМВ", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/OMV/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q168238", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ОМВ", "brand:wikidata": "Q168238", "brand:wikipedia": "en:OMV", "name": "ОМВ"}, "countryCodes": ["bg", "rs"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ПТК": {"name": "ПТК", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ptk.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4360193", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ПТК", "brand:en": "The Petersburg Fuel Company", "brand:ru": "ПТК", "brand:wikidata": "Q4360193", "brand:wikipedia": "ru:Петербургская топливная компания", "name": "ПТК", "name:en": "The Petersburg Fuel Company", "name:ru": "ПТК"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Петрол": {"name": "Петрол", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PetrolAD/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24315", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Петрол", "brand:en": "Petrol AD", "brand:wikidata": "Q24315", "brand:wikipedia": "en:Petrol AD", "name": "Петрол", "name:en": "Petrol AD"}, "countryCodes": ["bg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Роснефть": {"name": "Роснефть", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/RosneftRu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1141123", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Роснефть", "brand:en": "Rosneft", "brand:ru": "Роснефть", "brand:wikidata": "Q1141123", "brand:wikipedia": "ru:Роснефть", "name": "Роснефть", "name:en": "Rosneft", "name:ru": "Роснефть"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Сургутнефтегаз": {"name": "Сургутнефтегаз", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSng2.gif&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q680776", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Сургутнефтегаз", "brand:en": "Surgutneftegas", "brand:ru": "Сургутнефтегаз", "brand:wikidata": "Q680776", "brand:wikipedia": "en:Surgutneftegas", "name": "Сургутнефтегаз", "name:en": "Surgutneftegas", "name:ru": "Сургутнефтегаз"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ТНК": {"name": "ТНК", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2298901", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ТНК", "brand:wikidata": "Q2298901", "brand:wikipedia": "en:TNK-BP", "name": "ТНК"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Татнефтепродукт": {"name": "Татнефтепродукт", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62545686", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Татнефтепродукт", "brand:en": "Tatnefteprodukt", "brand:ru": "Татнефтепродукт", "brand:wikidata": "Q62545686", "name": "Татнефтепродукт", "name:en": "Tatnefteprodukt", "name:ru": "Татнефтепродукт"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Татнефть": {"name": "Татнефть", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/tatneftofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1616858", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Татнефть", "brand:en": "Tatneft", "brand:ru": "Татнефть", "brand:wikidata": "Q1616858", "brand:wikipedia": "en:Tatneft", "name": "Татнефть", "name:en": "Tatneft", "name:ru": "Татнефть"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/Укрнафта": {"name": "Укрнафта", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUkrnafta.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2447961", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "Укрнафта", "brand:en": "Ukrnafta", "brand:uk": "Укрнафта", "brand:wikidata": "Q2447961", "brand:wikipedia": "uk:Укрнафта", "name": "Укрнафта", "name:en": "Ukrnafta", "name:uk": "Укрнафта"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/דור אלון": {"name": "דור אלון", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/dor.alon.il/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16130352", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "דור אלון", "brand:en": "Dor Alon", "brand:he": "דור אלון", "brand:wikidata": "Q16130352", "brand:wikipedia": "he:דור אלון אנרגיה בישראל (1988)", "name": "דור אלון", "name:en": "Dor Alon", "name:he": "דור אלון"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/סונול": {"name": "סונול", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/sonolsogood/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3701622", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "סונול", "brand:en": "Sonol", "brand:he": "סונול", "brand:wikidata": "Q3701622", "brand:wikipedia": "en:Sonol", "name": "סונול", "name:en": "Sonol", "name:he": "סונול"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/פז": {"name": "פז", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/YellowPaz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2211731", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "פז", "brand:en": "Paz", "brand:he": "פז", "brand:wikidata": "Q2211731", "brand:wikipedia": "en:Paz Oil Company", "name": "פז", "name:en": "Paz", "name:he": "פז"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ادنوك": {"name": "ادنوك", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ADNOCDistribution/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q166729", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ادنوك", "brand:ar": "ادنوك", "brand:en": "ADNOC", "brand:wikidata": "Q166729", "brand:wikipedia": "en:Abu Dhabi National Oil Company", "name": "ادنوك", "name:ar": "ادنوك", "name:en": "ADNOC"}, "countryCodes": ["ae"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/اينوك": {"name": "اينوك", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3045998", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "اينوك", "brand:ar": "اينوك", "brand:en": "ENOC", "brand:wikidata": "Q3045998", "brand:wikipedia": "ar:اينوك", "name": "اينوك", "name:ar": "اينوك", "name:en": "ENOC"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/توتال": {"name": "توتال", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/TotalUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q154037", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "توتال", "brand:ar": "توتال", "brand:en": "Total", "brand:wikidata": "Q154037", "brand:wikipedia": "fr:Total (entreprise)", "name": "توتال", "name:ar": "توتال", "name:en": "Total"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/บางจาก": {"name": "บางจาก", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Bangchak/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6579719", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "บางจาก", "brand:en": "Bangchak", "brand:th": "บางจาก", "brand:wikidata": "Q6579719", "brand:wikipedia": "th:บางจาก คอร์ปอเรชัน", "name": "บางจาก", "name:en": "Bangchak", "name:th": "บางจาก"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ป.ต.ท.": {"name": "ป.ต.ท.", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PTTNews/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1810389", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ป.ต.ท.", "brand:en": "PTT", "brand:th": "ป.ต.ท.", "brand:wikidata": "Q1810389", "brand:wikipedia": "th:ปตท.", "name": "ป.ต.ท.", "name:en": "PTT", "name:th": "ป.ต.ท."}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/เชลล์": {"name": "เชลล์", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Shell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q154950", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "เชลล์", "brand:en": "Shell", "brand:th": "เชลล์", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "เชลล์", "name:en": "Shell", "name:th": "เชลล์"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/เอสโซ่": {"name": "เอสโซ่", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/EssoGB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q867662", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "เอสโซ่", "brand:en": "Esso", "brand:th": "เอสโซ่", "brand:wikidata": "Q867662", "brand:wikipedia": "en:Esso", "name": "เอสโซ่", "name:en": "Esso", "name:th": "เอสโซ่"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/エッソ": {"name": "エッソ", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/EssoGB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q867662", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "エッソ", "brand:en": "Esso", "brand:ja": "エッソ", "brand:wikidata": "Q867662", "brand:wikipedia": "en:Esso", "name": "エッソ", "name:en": "Esso", "name:ja": "エッソ"}, "countryCodes": ["jp"], "terms": ["エッソ石油"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/エネオス": {"name": "エネオス", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/eneos.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1640290", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "エネオス", "brand:en": "ENEOS", "brand:ja": "エネオス", "brand:wikidata": "Q1640290", "brand:wikipedia": "en:JXTG Nippon Oil & Energy", "name": "エネオス", "name:en": "ENEOS", "name:ja": "エネオス"}, "countryCodes": ["jp"], "terms": ["eneos"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/キグナス石油": {"name": "キグナス石油", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKygnus%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11296629", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "キグナス石油", "brand:en": "KYGNUS", "brand:ja": "キグナス石油", "brand:wikidata": "Q11296629", "brand:wikipedia": "ja:キグナス石油", "name": "キグナス石油", "name:en": "Kygnus", "name:ja": "キグナス石油"}, "countryCodes": ["jp"], "terms": ["キグナス"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/コスモ": {"name": "コスモ", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCosmo%20Oil%20company%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2498318", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "コスモ", "brand:en": "Cosmo", "brand:ja": "コスモ", "brand:wikidata": "Q2498318", "brand:wikipedia": "en:Cosmo Oil Company", "name": "コスモ", "name:en": "Cosmo", "name:ja": "コスモ", "official_name": "コスモ石油"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/ゼネラル": {"name": "ゼネラル", "icon": "maki-fuel", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTonenGeneral.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11528048", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "ゼネラル", "brand:en": "Tonen General", "brand:ja": "ゼネラル", "brand:wikidata": "Q11528048", "brand:wikipedia": "ja:東燃ゼネラル石油", "name": "ゼネラル", "name:en": "Tonen General", "name:ja": "ゼネラル"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/モービル": {"name": "モービル", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/ExxonandMobilStations/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3088656", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "モービル", "brand:en": "Mobil", "brand:ja": "モービル", "brand:wikidata": "Q3088656", "brand:wikipedia": "ja:モービル (ブランド)", "name": "モービル", "name:en": "Mobil", "name:ja": "モービル"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/中国石化 Sinopec": {"name": "中国石化 Sinopec", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/Sinopec/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q831445", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "中国石化 Sinopec", "brand:en": "Sinopec", "brand:wikidata": "Q831445", "brand:wikipedia": "en:Sinopec", "brand:zh": "中国石化", "name": "中国石化 Sinopec", "name:en": "Sinopec", "name:zh": "中国石化"}, "countryCodes": ["cn"], "terms": ["sinopec", "sinopec fuel", "中国石化", "中国石化加油站"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/中国石油": {"name": "中国石油", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/PetroChina.Ltd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q503182", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "中国石油", "brand:en": "PetroChina", "brand:wikidata": "Q503182", "brand:wikipedia": "en:PetroChina", "brand:zh": "中国石油", "name": "中国石油", "name:en": "PetroChina", "name:zh": "中国石油"}, "countryCodes": ["cn"], "terms": ["中油加油站"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/全國加油站": {"name": "全國加油站", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20410455", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "全國加油站", "brand:en": "NPC", "brand:wikidata": "Q20410455", "brand:wikipedia": "zh:全國加油站", "brand:zh": "全國加油站", "name": "全國加油站", "name:en": "NPC", "name:zh": "全國加油站"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/出光": {"name": "出光", "icon": "maki-fuel", "imageURL": "https://graph.facebook.com/odekakebu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2216770", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "出光", "brand:en": "Idemitsu Kosan", "brand:ja": "出光", "brand:wikidata": "Q2216770", "brand:wikipedia": "en:Idemitsu Kosan", "name": "出光", "name:en": "Idemitsu Kosan", "name:ja": "出光"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/台塑石油": {"name": "台塑石油", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1437742", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "台塑石油", "brand:en": "Formosa Petrochemical Corporation", "brand:wikidata": "Q1437742", "brand:wikipedia": "zh:台塑石油", "brand:zh": "台塑石油", "name": "台塑石油", "name:en": "Formosa Petrochemical Corporation", "name:zh": "台塑石油"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/fuel/台灣中油": {"name": "台灣中油", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21527177", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "台灣中油", "brand:en": "CPC Corporation, Taiwan", "brand:wikidata": "Q21527177", "brand:wikipedia": "en:CPC Corporation, Taiwan", "brand:zh": "台灣中油", "name": "台灣中油", "name:en": "CPC Corporation, Taiwan", "name:zh": "台灣中油"}, "countryCodes": ["tw"], "terms": ["中油"], "matchScore": 2, "suggestion": true}, - "amenity/fuel/昭和シェル": {"name": "昭和シェル", "icon": "maki-fuel", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q277115", "amenity": "fuel"}, "addTags": {"amenity": "fuel", "brand": "昭和シェル", "brand:en": "Showa Shell Sekiyu", "brand:ja": "昭和シェル", "brand:wikidata": "Q277115", "brand:wikipedia": "en:Showa Shell Sekiyu", "name": "昭和シェル", "name:en": "Showa Shell Sekiyu", "name:ja": "昭和シェル"}, "countryCodes": ["jp"], "terms": ["昭和シェル石油"], "matchScore": 2, "suggestion": true}, - "amenity/gambling/Buzz Bingo": {"name": "Buzz Bingo", "icon": "fas-coins", "imageURL": "https://pbs.twimg.com/profile_images/1084856442736332800/GgVekVmJ_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60746117", "amenity": "gambling"}, "addTags": {"amenity": "gambling", "brand": "Buzz Bingo", "brand:wikidata": "Q60746117", "brand:wikipedia": "en:Buzz Bingo", "gambling": "bingo;slot_machines", "name": "Buzz Bingo"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/hospital/Fortis Healthcare": {"name": "Fortis Healthcare", "icon": "maki-hospital", "imageURL": "https://graph.facebook.com/fortishealth/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q7810035", "amenity": "hospital"}, "addTags": {"amenity": "hospital", "brand": "Fortis Healthcare", "brand:wikidata": "Q7810035", "brand:wikipedia": "en:Fortis Healthcare", "healthcare": "hospital", "name": "Fortis Healthcare"}, "reference": {"key": "amenity", "value": "hospital"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/hospital/Select Specialty Hospital": {"name": "Select Specialty Hospital", "icon": "maki-hospital", "imageURL": "https://graph.facebook.com/SelectMedical/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q66360902", "amenity": "hospital"}, "addTags": {"amenity": "hospital", "brand": "Select Specialty Hospital", "brand:wikidata": "Q66360902", "healthcare": "hospital", "name": "Select Specialty Hospital"}, "reference": {"key": "amenity", "value": "hospital"}, "countryCodes": ["us"], "terms": ["select speciality"], "matchScore": 2, "suggestion": true}, - "amenity/hospital/Shriners Hospital for Children": {"name": "Shriners Hospital for Children", "icon": "maki-hospital", "imageURL": "https://graph.facebook.com/ShrinersHospitalsforChildren/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q7504109", "amenity": "hospital"}, "addTags": {"amenity": "hospital", "brand": "Shriners Hospitals for Children", "brand:wikidata": "Q7504109", "brand:wikipedia": "en:Shriners Hospitals for Children", "healthcare": "hospital", "healthcare:speciality": "paediatrics", "name": "Shriners Hospitals for Children"}, "reference": {"key": "amenity", "value": "hospital"}, "countryCodes": ["us"], "terms": ["shriners burn hospital", "shriners hospital", "shriners hospitals for children"], "matchScore": 2, "suggestion": true}, - "amenity/hospital/VA Medical Center": {"name": "VA Medical Center", "icon": "maki-hospital", "imageURL": "https://graph.facebook.com/VeteransHealth/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q6580225", "amenity": "hospital"}, "addTags": {"amenity": "hospital", "brand": "VA", "brand:wikidata": "Q6580225", "brand:wikipedia": "en:Veterans Health Administration", "healthcare": "hospital", "healthcare:for": "veterans", "name": "VA Medical Center", "short_name": "VA"}, "reference": {"key": "amenity", "value": "hospital"}, "countryCodes": ["us"], "terms": ["department of veterans affairs medical center", "veterans administration", "veterans administration hospital", "veterans administration medical center", "veterans affairs", "veterans affairs hospital", "veterans affairs medical center"], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Abbott's Frozen Custard": {"name": "Abbott's Frozen Custard", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/AbbottsFrozenCustard/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4664334", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Abbott's Frozen Custard", "brand:wikidata": "Q4664334", "brand:wikipedia": "en:Abbott's Frozen Custard", "name": "Abbott's Frozen Custard", "short_name": "Abbott's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Amorino": {"name": "Amorino", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/AmorinoGelato/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2843884", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Amorino", "brand:wikidata": "Q2843884", "brand:wikipedia": "fr:Amorino", "name": "Amorino"}, "countryCodes": ["ae", "ch", "cz", "de", "es", "fr", "gb", "gr", "ie", "it", "lu", "ma", "mt", "mx", "nc", "pt", "qa", "re", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Amy's Ice Creams": {"name": "Amy's Ice Creams", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/amysicecreams/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4749045", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Amy's Ice Creams", "brand:wikidata": "Q4749045", "brand:wikipedia": "en:Amy's Ice Creams", "name": "Amy's Ice Creams"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Andy's Frozen Custard": {"name": "Andy's Frozen Custard", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/AndysFrozenCustard/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4760327", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Andy's Frozen Custard", "brand:wikidata": "Q4760327", "brand:wikipedia": "en:Andy's Frozen Custard", "name": "Andy's Frozen Custard", "short_name": "Andy's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Baskin-Robbins": {"name": "Baskin-Robbins", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/baskinrobbinsUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q584601", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Baskin-Robbins", "brand:wikidata": "Q584601", "brand:wikipedia": "en:Baskin-Robbins", "cuisine": "ice_cream", "name": "Baskin-Robbins"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Ben & Jerry's": {"name": "Ben & Jerry's", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/BenandJerryAustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q816412", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Ben & Jerry's", "brand:wikidata": "Q816412", "brand:wikipedia": "en:Ben & Jerry's", "cuisine": "ice_cream", "name": "Ben & Jerry's"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Bruster's Ice Cream": {"name": "Bruster's Ice Cream", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/BrustersRealIceCream/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4979810", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Bruster's Ice Cream", "brand:wikidata": "Q4979810", "brand:wikipedia": "en:Bruster's Ice Cream", "cuisine": "ice_cream", "name": "Bruster's Ice Cream"}, "countryCodes": ["us"], "terms": ["brusters"], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Carvel": {"name": "Carvel", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/CarvelIceCream/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5047520", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Carvel", "brand:wikidata": "Q5047520", "brand:wikipedia": "en:Carvel (franchise)", "cuisine": "ice_cream", "name": "Carvel", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Cold Rock Ice Creamery": {"name": "Cold Rock Ice Creamery", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/ColdRockIceCreamery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2982390", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Cold Rock Ice Creamery", "brand:wikidata": "Q2982390", "brand:wikipedia": "en:Cold Rock Ice Creamery", "cuisine": "ice_cream", "name": "Cold Rock Ice Creamery", "takeaway": "yes"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Cold Stone Creamery": {"name": "Cold Stone Creamery", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/coldstonecreamery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1094923", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Cold Stone Creamery", "brand:wikidata": "Q1094923", "brand:wikipedia": "en:Cold Stone Creamery", "cuisine": "ice_cream", "name": "Cold Stone Creamery"}, "countryCodes": ["ng", "us"], "terms": ["cold stone"], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/D'Onofrio": {"name": "D'Onofrio", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/DonofrioDOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5203166", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "D'Onofrio", "brand:wikidata": "Q5203166", "brand:wikipedia": "es:D'Onofrio", "cuisine": "ice_cream", "name": "D'Onofrio"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Freddo": {"name": "Freddo", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/FreddoUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28823999", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Freddo", "brand:wikidata": "Q28823999", "brand:wikipedia": "es:Freddo", "cuisine": "ice_cream", "name": "Freddo"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Graeter's": {"name": "Graeter's", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/Graeters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5592430", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Graeter's", "brand:wikidata": "Q5592430", "brand:wikipedia": "en:Graeter's", "cuisine": "ice_cream", "name": "Graeter's", "takeaway": "yes"}, "countryCodes": ["us"], "terms": ["greaters"], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Grido": {"name": "Grido", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/GridoHelados/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5885724", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Grido", "brand:wikidata": "Q5885724", "brand:wikipedia": "es:Grido Helado", "cuisine": "ice_cream", "name": "Grido"}, "countryCodes": ["ar"], "terms": ["grido helado"], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Häagen-Dazs": {"name": "Häagen-Dazs", "icon": "fas-ice-cream", "imageURL": "https://pbs.twimg.com/profile_images/1235610812623884288/3p55Ca0K_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1143333", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Häagen-Dazs", "brand:wikidata": "Q1143333", "brand:wikipedia": "en:Häagen-Dazs", "name": "Häagen-Dazs"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/La Michoacana": {"name": "La Michoacana", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/LaMichoacana.sv/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17118857", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "La Michoacana", "brand:wikidata": "Q17118857", "brand:wikipedia": "en:Paletería La Michoacana", "name": "La Michoacana"}, "countryCodes": ["mx"], "terms": ["paleteria la michoacana"], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Marble Slab Creamery": {"name": "Marble Slab Creamery", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/marbleslabcreamery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17020087", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Marble Slab Creamery", "brand:wikidata": "Q17020087", "brand:wikipedia": "en:Marble Slab Creamery", "cuisine": "ice_cream", "name": "Marble Slab Creamery"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Menchie's": {"name": "Menchie's", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/MyMenchies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6816528", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Menchie's", "brand:wikidata": "Q6816528", "brand:wikipedia": "en:Menchie's Frozen Yogurt", "cuisine": "frozen_yogurt", "name": "Menchie's"}, "countryCodes": ["ae", "bh", "bs", "ca", "cn", "gb", "in", "jp", "kw", "qa", "sa", "us"], "terms": ["menchie's frozen yoghurt", "menchie's frozen yogurt"], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Pinkberry": {"name": "Pinkberry", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/pinkberry/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2904053", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Pinkberry", "brand:wikidata": "Q2904053", "brand:wikipedia": "en:Pinkberry", "cuisine": "frozen_yogurt", "name": "Pinkberry", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Ralph's Italian Ices": {"name": "Ralph's Italian Ices", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/RalphsFamous/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62576909", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Ralph's Italian Ices", "brand:wikidata": "Q62576909", "cuisine": "ice_cream", "name": "Ralph's Italian Ices", "official_name": "Ralph's Famous Italian Ices"}, "countryCodes": ["us"], "terms": ["ralphs famous italian ices and ice cream", "ralphs italian ice", "ralphs italian ices and ice cream"], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Rita's Italian Ice": {"name": "Rita's Italian Ice", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/RitasItalianIceCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7336456", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Rita's Italian Ice", "brand:wikidata": "Q7336456", "brand:wikipedia": "en:Rita's Italian Ice", "cuisine": "ice_cream", "name": "Rita's Italian Ice"}, "countryCodes": ["us"], "terms": ["ritas", "ritas water ice"], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Shake's": {"name": "Shake's", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/shakeswlr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17032842", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Shake's", "brand:wikidata": "Q17032842", "brand:wikipedia": "en:Shake's Frozen Custard", "name": "Shake's", "official_name": "Shake’s Frozen Custard"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/TCBY": {"name": "TCBY", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/tcby/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7669631", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "TCBY", "brand:wikidata": "Q7669631", "brand:wikipedia": "en:TCBY", "cuisine": "frozen_yogurt", "name": "TCBY", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Yogen Früz": {"name": "Yogen Früz", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/yogenfruz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8054358", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Yogen Früz", "brand:wikidata": "Q8054358", "brand:wikipedia": "en:Yogen Früz", "cuisine": "frozen_yogurt", "name": "Yogen Früz", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Yogurt Mountain": {"name": "Yogurt Mountain", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/YogurtMountain/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8054427", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Yogurt Mountain", "brand:wikidata": "Q8054427", "brand:wikipedia": "en:Yogurt Mountain", "cuisine": "frozen_yogurt", "name": "Yogurt Mountain", "takeaway": "yes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/Yogurtland": {"name": "Yogurtland", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/yogurtland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8054428", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "Yogurtland", "brand:wikidata": "Q8054428", "brand:wikipedia": "en:Yogurtland", "cuisine": "frozen_yogurt", "name": "Yogurtland", "takeaway": "yes"}, "countryCodes": ["ae", "au", "sg", "th", "us", "ve"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/smöoy": {"name": "smöoy", "icon": "fas-ice-cream", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSm%C3%B6oy-logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21573945", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "smöoy", "brand:wikidata": "Q21573945", "brand:wikipedia": "es:Smöoy", "name": "smöoy", "official_name": "Softy Cream"}, "countryCodes": ["ao", "ci", "cn", "dz", "ec", "es", "fr", "gb", "gn", "it", "ma", "pa", "pe", "pt", "re", "sa"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/sweetFrog": {"name": "sweetFrog", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/sweetfrogfroyo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16952110", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "sweetFrog", "brand:wikidata": "Q16952110", "brand:wikipedia": "en:Sweet Frog", "cuisine": "frozen_yogurt", "name": "sweetFrog"}, "countryCodes": ["us"], "terms": ["sweetfrog frozen yogurt", "sweetfrog premium frozen yogurt"], "matchScore": 2, "suggestion": true}, - "amenity/ice_cream/サーティワンアイスクリーム": {"name": "サーティワンアイスクリーム", "icon": "fas-ice-cream", "imageURL": "https://graph.facebook.com/baskinrobbinsUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q584601", "amenity": "ice_cream"}, "addTags": {"amenity": "ice_cream", "brand": "バスキン・ロビンス", "brand:en": "Baskin-Robbins", "brand:ja": "バスキン・ロビンス", "brand:wikidata": "Q584601", "brand:wikipedia": "ja:バスキン・ロビンス", "cuisine": "ice_cream", "name": "サーティワンアイスクリーム", "name:en": "Baskin-Robbins", "name:ja": "サーティワンアイスクリーム"}, "countryCodes": ["jp"], "terms": ["31アイスクリーム", "サーティーワン"], "matchScore": 2, "suggestion": true}, - "amenity/internet_cafe/アプレシオ": {"name": "アプレシオ", "icon": "temaki-antenna", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11284756", "amenity": "internet_cafe"}, "addTags": {"amenity": "internet_cafe", "brand": "アプレシオ", "brand:en": "Aprecio", "brand:ja": "アプレシオ", "brand:wikidata": "Q11284756", "brand:wikipedia": "ja:アプレシオ", "internet_access:fee": "yes", "name": "アプレシオ", "name:en": "Aprecio", "name:ja": "アプレシオ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/internet_cafe/コミック・バスター": {"name": "コミック・バスター", "icon": "temaki-antenna", "imageURL": "https://graph.facebook.com/buster.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90413129", "amenity": "internet_cafe"}, "addTags": {"amenity": "internet_cafe", "brand": "コミック・バスター", "brand:en": "Comic Buster", "brand:ja": "コミック・バスター", "brand:wikidata": "Q90413129", "internet_access:fee": "yes", "name": "コミック・バスター", "name:en": "Comic Buster", "name:ja": "コミック・バスター"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/internet_cafe/マンボー": {"name": "マンボー", "icon": "temaki-antenna", "imageURL": "https://pbs.twimg.com/profile_images/924089427990687745/F_o4taQX_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11341637", "amenity": "internet_cafe"}, "addTags": {"amenity": "internet_cafe", "brand": "マンボー", "brand:en": "Manboo", "brand:ja": "マンボー", "brand:wikidata": "Q11341637", "brand:wikipedia": "ja:マンボー (インターネットカフェ)", "internet_access:fee": "yes", "name": "マンボー", "name:en": "Manboo", "name:ja": "マンボー"}, "countryCodes": ["jp"], "terms": ["manboo"], "matchScore": 2, "suggestion": true}, - "amenity/internet_cafe/メディアカフェポパイ": {"name": "メディアカフェポパイ", "icon": "temaki-antenna", "imageURL": "https://pbs.twimg.com/profile_images/1660803642/_________bigger.gif", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11343796", "amenity": "internet_cafe"}, "addTags": {"amenity": "internet_cafe", "brand": "メディアカフェポパイ", "brand:en": "Media Cafe Popeye", "brand:ja": "メディアカフェポパイ", "brand:wikidata": "Q11343796", "brand:wikipedia": "ja:メディアカフェポパイ", "internet_access:fee": "yes", "name": "メディアカフェポパイ", "name:en": "Media Cafe Popeye", "name:ja": "メディアカフェポパイ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/internet_cafe/快活CLUB": {"name": "快活CLUB", "icon": "temaki-antenna", "imageURL": "https://graph.facebook.com/kaikatsu.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88299591", "amenity": "internet_cafe"}, "addTags": {"alt_name": "快活クラブ", "amenity": "internet_cafe", "brand": "快活CLUB", "brand:en": "Kaikatsu Club", "brand:ja": "快活CLUB", "brand:wikidata": "Q88299591", "internet_access:fee": "yes", "name": "快活CLUB", "name:en": "Kaikatsu Club", "name:ja": "快活CLUB"}, "countryCodes": ["jp"], "terms": ["快活クラブ"], "matchScore": 2, "suggestion": true}, - "amenity/internet_cafe/自遊空間": {"name": "自遊空間", "icon": "temaki-antenna", "imageURL": "https://pbs.twimg.com/profile_images/1193733042461765632/swJNltaG_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88121843", "amenity": "internet_cafe"}, "addTags": {"alt_name:en": "Jiyu Kukan", "amenity": "internet_cafe", "brand": "自遊空間", "brand:en": "Space Create", "brand:ja": "自遊空間", "brand:wikidata": "Q88121843", "internet_access:fee": "yes", "name": "自遊空間", "name:en": "Space Create", "name:ja": "自遊空間"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/karaoke_box/カラオケ まねきねこ": {"name": "カラオケ まねきねこ", "icon": "maki-karaoke", "imageURL": "https://graph.facebook.com/karaokemanekinekoth/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88326334", "amenity": "karaoke_box"}, "addTags": {"amenity": "karaoke_box", "brand": "カラオケ まねきねこ", "brand:en": "Karaoke Manekineko", "brand:ja": "カラオケ まねきねこ", "brand:wikidata": "Q88326334", "fee": "yes", "name": "カラオケ まねきねこ", "name:en": "Karaoke Manekineko", "name:ja": "カラオケ まねきねこ"}, "countryCodes": ["jp"], "terms": ["まねきねこ"], "matchScore": 2, "suggestion": true}, - "amenity/karaoke_box/カラオケバンバン": {"name": "カラオケバンバン", "icon": "maki-karaoke", "imageURL": "https://pbs.twimg.com/profile_images/1217401623237914625/Tj_UN7HA_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88485685", "amenity": "karaoke_box"}, "addTags": {"amenity": "karaoke_box", "brand": "カラオケバンバン", "brand:en": "Karaoke BanBan", "brand:ja": "カラオケバンバン", "brand:wikidata": "Q88485685", "fee": "yes", "name": "カラオケバンバン", "name:en": "Karaoke BanBan", "name:ja": "カラオケバンバン"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/karaoke_box/カラオケ館": {"name": "カラオケ館", "icon": "maki-karaoke", "imageURL": "https://graph.facebook.com/karaokekan.111/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11294889", "amenity": "karaoke_box"}, "addTags": {"amenity": "karaoke_box", "brand": "カラオケ館", "brand:en": "Karaoke-kan", "brand:ja": "カラオケ館", "brand:wikidata": "Q11294889", "brand:wikipedia": "ja:B&V", "fee": "yes", "name": "カラオケ館", "name:en": "Karaoke-kan", "name:ja": "カラオケ館"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/karaoke_box/シダックス": {"name": "シダックス", "icon": "maki-karaoke", "imageURL": "https://graph.facebook.com/restaurantkaraokeshidax/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7496130", "amenity": "karaoke_box"}, "addTags": {"amenity": "karaoke_box", "brand": "シダックス", "brand:en": "Shidax", "brand:ja": "シダックス", "brand:wikidata": "Q7496130", "brand:wikipedia": "ja:シダックス", "fee": "yes", "name": "シダックス", "name:en": "Shidax", "name:ja": "シダックス"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/karaoke_box/ジョイサウンド": {"name": "ジョイサウンド", "icon": "maki-karaoke", "imageURL": "https://graph.facebook.com/JOYSOUND.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11226033", "amenity": "karaoke_box"}, "addTags": {"amenity": "karaoke_box", "brand": "ジョイサウンド", "brand:en": "Joysound", "brand:ja": "ジョイサウンド", "brand:wikidata": "Q11226033", "brand:wikipedia": "ja:JOYSOUND", "fee": "yes", "name": "ジョイサウンド", "name:en": "Joysound", "name:ja": "ジョイサウンド"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/karaoke_box/ビッグエコー": {"name": "ビッグエコー", "icon": "maki-karaoke", "imageURL": "https://graph.facebook.com/karaokebigecho/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88117761", "amenity": "karaoke_box"}, "addTags": {"amenity": "karaoke_box", "brand": "ビッグエコー", "brand:en": "Big Echo", "brand:ja": "ビッグエコー", "brand:wikidata": "Q88117761", "fee": "yes", "name": "ビッグエコー", "name:en": "Big Echo", "name:ja": "ビッグエコー"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/kindergarten/Children's Learning Adventure": {"name": "Children's Learning Adventure", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/Childrenslearningadventure/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q64821213", "amenity": "kindergarten"}, "addTags": {"after_school": "yes", "amenity": "kindergarten", "brand": "Children's Learning Adventure", "brand:wikidata": "Q64821213", "brand:wikipedia": "en:Children's Learning Adventure", "fee": "yes", "isced:level": "0", "name": "Children's Learning Adventure", "nursery": "yes", "preschool": "yes", "short_name": "CLA"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/kindergarten/Childtime": {"name": "Childtime", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/Childtime/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q64877793", "amenity": "kindergarten"}, "addTags": {"amenity": "kindergarten", "brand": "Childtime", "brand:wikidata": "Q64877793", "fee": "yes", "isced:level": "0", "name": "Childtime", "nursery": "yes", "preschool": "yes"}, "countryCodes": ["us"], "terms": ["childtime learning center", "childtime learning centers"], "matchScore": 2, "suggestion": true}, - "amenity/kindergarten/KinderCare": {"name": "KinderCare", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/kindercare/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q6410551", "amenity": "kindergarten"}, "addTags": {"after_school": "yes", "alt_name": "KinderCare Learning Center", "amenity": "kindergarten", "brand": "KinderCare", "brand:wikidata": "Q6410551", "brand:wikipedia": "en:KinderCare Learning Centers", "fee": "yes", "isced:level": "0", "name": "KinderCare", "nursery": "yes", "preschool": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/kindergarten/La Petite Academy": {"name": "La Petite Academy", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/LaPetiteAcademy/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q64877784", "amenity": "kindergarten"}, "addTags": {"amenity": "kindergarten", "brand": "La Petite Academy", "brand:wikidata": "Q64877784", "fee": "yes", "isced:level": "0", "name": "La Petite Academy", "nursery": "yes", "preschool": "yes"}, "countryCodes": ["us"], "terms": ["la petite"], "matchScore": 2, "suggestion": true}, - "amenity/kindergarten/New Horizon Academy": {"name": "New Horizon Academy", "icon": "temaki-school", "imageURL": "https://pbs.twimg.com/profile_images/778681004206592001/ZQF3Eurh_bigger.jpg", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q64821306", "amenity": "kindergarten"}, "addTags": {"after_school": "yes", "amenity": "kindergarten", "brand": "New Horizon Academy", "brand:wikidata": "Q64821306", "fee": "yes", "isced:level": "0", "name": "New Horizon Academy", "nursery": "yes", "preschool": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/kindergarten/Primrose School": {"name": "Primrose School", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/PrimroseSchools/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q7243677", "amenity": "kindergarten"}, "addTags": {"after_school": "yes", "alt_name": "Primrose Schools", "amenity": "kindergarten", "brand": "Primrose School", "brand:wikidata": "Q7243677", "brand:wikipedia": "en:Primrose Schools", "fee": "yes", "isced:level": "0", "max_age": "12", "min_age": "6 weeks", "name": "Primrose School", "nursery": "yes", "preschool": "yes"}, "countryCodes": ["us"], "terms": ["primrose"], "matchScore": 2, "suggestion": true}, - "amenity/kindergarten/The Children's Courtyard": {"name": "The Children's Courtyard", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/ChildrensCourtyard/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q64877852", "amenity": "kindergarten"}, "addTags": {"amenity": "kindergarten", "brand": "The Children's Courtyard", "brand:wikidata": "Q64877852", "fee": "yes", "isced:level": "0", "name": "The Children's Courtyard", "nursery": "yes", "preschool": "yes"}, "countryCodes": ["us"], "terms": ["children's courtyard"], "matchScore": 2, "suggestion": true}, - "amenity/kindergarten/The Goddard School": {"name": "The Goddard School", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/goddardschool/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q5576260", "amenity": "kindergarten"}, "addTags": {"after_school": "yes", "alt_name": "Goddard School", "amenity": "kindergarten", "brand": "The Goddard School", "brand:wikidata": "Q5576260", "brand:wikipedia": "en:Goddard School", "fee": "yes", "isced:level": "0", "min_age": "6 weeks", "name": "The Goddard School", "nursery": "yes", "preschool": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/kindergarten/Tutor Time": {"name": "Tutor Time", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/TutorTime/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q64877826", "amenity": "kindergarten"}, "addTags": {"amenity": "kindergarten", "brand": "Tutor Time", "brand:wikidata": "Q64877826", "fee": "yes", "isced:level": "0", "name": "Tutor Time", "nursery": "yes", "preschool": "yes"}, "countryCodes": ["us"], "terms": ["tutor time child care", "tutor time child care learning center", "tutor time learning center", "tutor time learning centers"], "matchScore": 2, "suggestion": true}, - "amenity/language_school/AEON": {"name": "AEON", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/AEONCorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4687898", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "AEON", "brand:en": "Aeon", "brand:ja": "AEON", "brand:ja-Hira": "イーオン", "brand:ja-Latn": "AEON", "brand:wikidata": "Q4687898", "brand:wikipedia": "ja:イーオン", "language:en": "main", "name": "AEON", "name:en": "Aeon", "name:ja": "AEON", "name:ja-Hira": "イーオン", "name:ja-Latn": "AEON"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/language_school/Berlitz": {"name": "Berlitz", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/BerlitzUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q821960", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "Berlitz", "brand:wikidata": "Q821960", "brand:wikipedia": "en:Berlitz Corporation", "name": "Berlitz"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/language_school/ECC外語学院": {"name": "ECC外語学院", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/ecc.co.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5322655", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "ECC外語学院", "brand:en": "ECC Foreign Language Institute", "brand:ja": "ECC外語学院", "brand:ja-Hira": "イーシーシーがいごがくいん", "brand:ja-Latn": "ECC Gaigo Gakuin", "brand:wikidata": "Q5322655", "brand:wikipedia": "ja:ECC総合教育機関", "language:en": "main", "name": "ECC外語学院", "name:en": "ECC Foreign Language Institute", "name:ja": "ECC外語学院", "name:ja-Hira": "イーシーシーがいごがくいん", "name:ja-Latn": "ECC Gaigo Gakuin", "short_name": "ECC", "short_name:en": "ECC", "short_name:ja": "ECC", "short_name:ja-Hira": "イーシーシー", "short_name:ja-Latn": "ECC"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/language_school/ELS": {"name": "ELS", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/els/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5323325", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "ELS", "brand:en": "ELS", "brand:wikidata": "Q5323325", "brand:wikipedia": "en:ELS Language Centers", "language:en": "main", "name": "ELS", "name:en": "ELS", "official_name": "ELS Language Centers", "official_name:en": "ELS Language Centers"}, "countryCodes": ["ca", "in", "my", "pa", "sa", "tr", "us", "vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/language_school/GABA": {"name": "GABA", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/gaba.corp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5515241", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "GABA", "brand:en": "Gaba", "brand:ja": "GABA", "brand:ja-Kana": "ガバ", "brand:ja-Latn": "GABA", "brand:wikidata": "Q5515241", "brand:wikipedia": "ja:GABA (企業)", "language:en": "main", "name": "GABA", "name:en": "Gaba", "name:ja": "GABA", "name:ja-Kana": "ガバ", "name:ja-Latn": "GABA"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/language_school/NOVA": {"name": "NOVA", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/nova.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7064000", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "NOVA", "brand:en": "Nova", "brand:ja": "NOVA", "brand:ja-Hira": "ノヴァ", "brand:ja-Latn": "NOVA", "brand:wikidata": "Q7064000", "brand:wikipedia": "ja:NOVA", "language:en": "main", "name": "NOVA", "name:en": "Nova", "name:ja": "NOVA", "name:ja-Hira": "ノヴァ", "name:ja-Latn": "NOVA"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/language_school/Shane English School": {"name": "Shane English School", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/ShaneEnglishSchool/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17054332", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "Shane English School", "brand:en": "Shane English School", "brand:ja": "シェーン英会話", "brand:ja-Latn": "Shēn Eikaiwa", "brand:wikidata": "Q17054332", "brand:wikipedia": "en:Shane English School", "language:en": "main", "name": "Shane English School", "name:en": "Shane English School", "name:ja": "シェーン英会話", "name:ja-Latn": "Shēn Eikaiwa"}, "countryCodes": ["cn", "dz", "gb", "hk", "id", "kr", "pl", "th", "tw", "vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/language_school/シェーン英会話": {"name": "シェーン英会話", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/ShaneEnglishSchool/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17054332", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "シェーン英会話", "brand:en": "Shane English School", "brand:ja": "シェーン英会話", "brand:ja-Latn": "Shēn Eikaiwa", "brand:wikidata": "Q17054332", "brand:wikipedia": "ja:シェーン英会話スクール", "language:en": "main", "name": "シェーン英会話", "name:en": "Shane English School", "name:ja": "シェーン英会話", "name:ja-Latn": "Shēn Eikaiwa"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/language_school/セイハ英語学院": {"name": "セイハ英語学院", "icon": "temaki-school", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7446694", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "セイハ英語学院", "brand:en": "Seiha English Academy", "brand:ja": "セイハ英語学院", "brand:ja-Hani": "セイハえいごがくいん", "brand:ja-Latn": "Seiha Eigo Gakuin", "brand:wikidata": "Q7446694", "language:en": "main", "name": "セイハ英語学院", "name:en": "Seiha English Academy", "name:ja": "セイハ英語学院", "name:ja-Hani": "セイハえいごがくいん", "name:ja-Latn": "Seiha Eigo Gakuin"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/language_school/ベルリッツ": {"name": "ベルリッツ", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/BerlitzJapan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4892545", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "ベルリッツ", "brand:en": "Berlitz", "brand:ja": "ベルリッツ", "brand:ja-Hira": "ベルリッツ", "brand:wikidata": "Q4892545", "brand:wikipedia": "ja:ベルリッツ・ジャパン", "name": "ベルリッツ", "name:en": "Berlitz", "name:ja": "ベルリッツ", "name:ja-Hira": "ベルリッツ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/language_school/ペッピーキッズクラブ": {"name": "ペッピーキッズクラブ", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/1431440567161295/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7166471", "amenity": "language_school"}, "addTags": {"amenity": "language_school", "brand": "ペッピーキッズクラブ", "brand:en": "Peppy Kids Club", "brand:ja": "ペッピーキッズクラブ", "brand:ja-Latn": "Peppi Kizzu Kurabu", "brand:wikidata": "Q7166471", "brand:wikipedia": "ja:ペッピーキッズクラブ", "language:en": "main", "name": "ペッピーキッズクラブ", "name:en": "Peppy Kids Club", "name:ja": "ペッピーキッズクラブ", "name:ja-Latn": "Peppi Kizzu Kurabu"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/money_transfer/Express Union": {"name": "Express Union", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/ExpressUnionFinance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3062276", "amenity": "money_transfer"}, "addTags": {"amenity": "money_transfer", "brand": "Express Union", "brand:wikidata": "Q3062276", "brand:wikipedia": "fr:Express Union", "name": "Express Union"}, "countryCodes": ["td"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/money_transfer/Hoa Phát": {"name": "Hoa Phát", "icon": "temaki-money_hand", "imageURL": "https://pbs.twimg.com/profile_images/692515699349135364/P4MUVfcJ_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65116775", "amenity": "money_transfer"}, "addTags": {"amenity": "money_transfer", "brand": "Hoa Phát", "brand:wikidata": "Q65116775", "name": "Hoa Phát", "name:vi": "Hoa Phát"}, "countryCodes": ["us"], "terms": ["hoa phat goi tien", "hoa phat gui tien"], "matchScore": 2, "suggestion": true}, - "amenity/money_transfer/MoneyGram": {"name": "MoneyGram", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/moneygram/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1944412", "amenity": "money_transfer"}, "addTags": {"amenity": "money_transfer", "brand": "MoneyGram", "brand:wikidata": "Q1944412", "brand:wikipedia": "en:MoneyGram", "name": "MoneyGram"}, "countryCodes": ["de", "fr", "gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/money_transfer/Orange Money": {"name": "Orange Money", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/orange/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16668220", "amenity": "money_transfer"}, "addTags": {"amenity": "money_transfer", "brand": "Orange Money", "brand:wikidata": "Q16668220", "brand:wikipedia": "en:Orange Money", "name": "Orange Money"}, "countryCodes": ["ml"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/money_transfer/Western Union": {"name": "Western Union", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/WesternUnion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q861042", "amenity": "money_transfer"}, "addTags": {"amenity": "money_transfer", "brand": "Western Union", "brand:wikidata": "Q861042", "brand:wikipedia": "en:Western Union", "name": "Western Union"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/music_school/ヤマハ音楽教室": {"name": "ヤマハ音楽教室", "icon": "fas-music", "imageURL": "https://graph.facebook.com/yamaha.ongakukyoushitsu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90327852", "amenity": "music_school"}, "addTags": {"amenity": "music_school", "brand": "ヤマハ音楽教室", "brand:en": "Yamaha Music School", "brand:ja": "ヤマハ音楽教室", "brand:ja-Latn": "Yamaha Ongaku Kyōshitsu", "brand:wikidata": "Q90327852", "name": "ヤマハ音楽教室", "name:en": "Yamaha Music School", "name:ja": "ヤマハ音楽教室", "name:ja-Latn": "Yamaha Ongaku Kyōshitsu"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/parking/Diamond Parking": {"name": "Diamond Parking", "icon": "temaki-car_parked", "imageURL": "https://graph.facebook.com/DiamondParkingService/picture?type=large", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q5270887", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "Diamond Parking", "brand:wikidata": "Q5270887", "brand:wikipedia": "en:Diamond Parking", "name": "Diamond Parking"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/parking/Indigo": {"name": "Indigo", "icon": "temaki-car_parked", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FIndigo%20(entreprise)%20logo.png&width=100", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q3559970", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "Indigo", "brand:wikidata": "Q3559970", "brand:wikipedia": "fr:Indigo (entreprise)", "fee": "yes", "name": "Indigo"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/parking/NPC24H": {"name": "NPC24H", "icon": "temaki-car_parked", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q11506782", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "NPC", "brand:wikidata": "Q11506782", "brand:wikipedia": "ja:日本パーキング", "fee": "yes", "name": "NPC24H", "official_name": "日本パーキング"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/parking/Parking Company of America": {"name": "Parking Company of America", "icon": "temaki-car_parked", "imageURL": "https://graph.facebook.com/parkingcompanyofamerica/picture?type=large", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q65491376", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "Parking Company of America", "brand:wikidata": "Q65491376", "fee": "yes", "name": "Parking Company of America", "short_name": "PCA"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/parking/SP+": {"name": "SP+", "icon": "temaki-car_parked", "imageURL": "https://graph.facebook.com/sppluscorp/picture?type=large", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q7598289", "amenity": "parking"}, "addTags": {"alt_name": "SP Plus", "amenity": "parking", "brand": "SP+", "brand:wikidata": "Q7598289", "brand:wikipedia": "en:SP Plus Corporation", "fee": "yes", "name": "SP+"}, "countryCodes": ["ca", "us"], "terms": ["central parking", "central parking system", "standard parking"], "matchScore": 2, "suggestion": true}, - "amenity/parking/Wilson Parking": {"name": "Wilson Parking", "icon": "temaki-car_parked", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q28448427", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "Wilson Parking", "brand:wikidata": "Q28448427", "brand:wikipedia": "en:Wilson Parking", "fee": "yes", "name": "Wilson Parking"}, "countryCodes": ["au", "cn", "hk", "ko", "nz", "sg"], "terms": ["wilson"], "matchScore": 2, "suggestion": true}, - "amenity/parking/アップルパーク": {"name": "アップルパーク", "icon": "temaki-car_parked", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q30923801", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "アップルパーク", "brand:en": "Apple Park", "brand:ja": "アップルパーク", "brand:wikidata": "Q30923801", "brand:wikipedia": "ja:アップルパーク", "fee": "yes", "name": "アップルパーク", "name:en": "Apple Park", "name:ja": "アップルパーク"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/parking/タイムズ": {"name": "タイムズ", "icon": "temaki-car_parked", "imageURL": "https://graph.facebook.com/Park24.co.jp/picture?type=large", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q11089693", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "タイムズ", "brand:en": "Times", "brand:ja": "タイムズ", "brand:wikidata": "Q11089693", "brand:wikipedia": "ja:パーク24", "fee": "yes", "name": "タイムズ", "name:en": "Times", "name:ja": "タイムズ"}, "countryCodes": ["jp"], "terms": ["times 24th", "タイムズ24"], "matchScore": 2, "suggestion": true}, - "amenity/parking/トラストパーク": {"name": "トラストパーク", "icon": "temaki-car_parked", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q11321776", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "トラストパーク", "brand:en": "Trust Park", "brand:ja": "トラストパーク", "brand:wikidata": "Q11321776", "brand:wikipedia": "ja:トラストホールディングス", "fee": "yes", "name": "トラストパーク", "name:en": "Trust Park", "name:ja": "トラストパーク"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/parking/パラカ": {"name": "パラカ", "icon": "temaki-car_parked", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q11329318", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "パラカ", "brand:en": "Paraca", "brand:ja": "パラカ", "brand:wikidata": "Q11329318", "brand:wikipedia": "ja:パラカ", "fee": "yes", "name": "パラカ", "name:en": "Paraca", "name:ja": "パラカ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/parking/ル・パルク": {"name": "ル・パルク", "icon": "temaki-car_parked", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNTT%20EAST%20YOYOGI.JPG&width=100", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q11236111", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "ル・パルク", "brand:en": "LePerc", "brand:ja": "ル・パルク", "brand:wikidata": "Q11236111", "brand:wikipedia": "ja:NTTル・パルク", "fee": "yes", "name": "ル・パルク", "name:en": "LePerc", "name:ja": "ル・パルク"}, "countryCodes": ["jp"], "terms": ["nttル・パルク"], "matchScore": 2, "suggestion": true}, - "amenity/parking/三井のリパーク": {"name": "三井のリパーク", "icon": "temaki-car_parked", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q11415765", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "三井のリパーク", "brand:en": "Mitsui Repark", "brand:ja": "三井のリパーク", "brand:wikidata": "Q11415765", "brand:wikipedia": "ja:名鉄協商", "fee": "yes", "name": "三井のリパーク", "name:en": "Mitsui Repark", "name:ja": "三井のリパーク"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/parking/名鉄協商パーキング": {"name": "名鉄協商パーキング", "icon": "temaki-car_parked", "geometry": ["area", "point", "vertex"], "tags": {"brand:wikidata": "Q11415765", "amenity": "parking"}, "addTags": {"amenity": "parking", "brand": "名鉄協商パーキング", "brand:en": "Meitetsu Kyosho", "brand:ja": "名鉄協商パーキング", "brand:wikidata": "Q11415765", "brand:wikipedia": "ja:名鉄協商", "fee": "yes", "name": "名鉄協商パーキング", "name:en": "Meitetsu Kyosho", "name:ja": "名鉄協商パーキング"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/payment_centre/Abitab": {"name": "Abitab", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/Abitaboficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16488129", "amenity": "payment_centre"}, "addTags": {"amenity": "payment_centre", "brand": "Abitab", "brand:wikidata": "Q16488129", "brand:wikipedia": "es:Abitab", "name": "Abitab"}, "countryCodes": ["uy"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/payment_centre/Rapipago": {"name": "Rapipago", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/Rapipago/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6100413", "amenity": "payment_centre"}, "addTags": {"amenity": "payment_centre", "brand": "Rapipago", "brand:wikidata": "Q6100413", "brand:wikipedia": "es:Rapipago", "name": "Rapipago"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/payment_terminal/Qiwi": {"name": "Qiwi", "icon": "far-credit-card", "imageURL": "https://graph.facebook.com/qiwirussia/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q4047736", "amenity": "payment_terminal"}, "addTags": {"amenity": "payment_terminal", "brand": "Qiwi", "brand:wikidata": "Q4047736", "brand:wikipedia": "en:Qiwi", "name": "Qiwi"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/payment_terminal/ПриватБанк": {"name": "ПриватБанк", "icon": "far-credit-card", "imageURL": "https://graph.facebook.com/privatbank/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q1515015", "amenity": "payment_terminal"}, "addTags": {"amenity": "payment_terminal", "brand": "ПриватБанк", "brand:wikidata": "Q1515015", "brand:wikipedia": "en:PrivatBank", "name": "ПриватБанк"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/payment_terminal/Элекснет": {"name": "Элекснет", "icon": "far-credit-card", "imageURL": "https://graph.facebook.com/elecsnet/picture?type=large", "geometry": ["point"], "tags": {"brand:wikidata": "Q4530795", "amenity": "payment_terminal"}, "addTags": {"amenity": "payment_terminal", "brand": "Элекснет", "brand:wikidata": "Q4530795", "brand:wikipedia": "ru:Элекснет", "name": "Элекснет"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/36,6": {"name": "36,6", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/apteka366/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q226889", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "36,6", "brand:wikidata": "Q226889", "brand:wikipedia": "ru:36,6 (аптечная сеть)", "healthcare": "pharmacy", "name": "36,6"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ru"], "terms": ["аптека 36,6"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Amcal": {"name": "Amcal", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/AmcalAustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63367373", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Amcal", "brand:wikidata": "Q63367373", "healthcare": "pharmacy", "name": "Amcal"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["au"], "terms": ["amcal pharmacy"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Apollo Pharmacy": {"name": "Apollo Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/ApolloPharmacy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62562612", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Apollo Pharmacy", "brand:wikidata": "Q62562612", "healthcare": "pharmacy", "name": "Apollo Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Apotek Hjärtat": {"name": "Apotek Hjärtat", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/apotekhjartat/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10416114", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Apotek Hjärtat", "brand:wikidata": "Q10416114", "brand:wikipedia": "sv:Apotek Hjärtat", "healthcare": "pharmacy", "name": "Apotek Hjärtat"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Bartell Drugs": {"name": "Bartell Drugs", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/BartellDrugs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4865152", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Bartell Drugs", "brand:wikidata": "Q4865152", "brand:wikipedia": "en:Bartell Drugs", "healthcare": "pharmacy", "name": "Bartell Drugs"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Benavides": {"name": "Benavides", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasBenavides/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5435613", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Benavides", "brand:wikidata": "Q5435613", "brand:wikipedia": "en:Farmacias Benavides", "healthcare": "pharmacy", "name": "Benavides"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Benu": {"name": "Benu", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/PharmaciesBENUSwitzerland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62562792", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Benu", "brand:wikidata": "Q62562792", "healthcare": "pharmacy", "name": "Benu"}, "reference": {"key": "amenity", "value": "pharmacy"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Blooms The Chemist": {"name": "Blooms The Chemist", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/BloomsTheChemistPharmacy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63367543", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Blooms The Chemist", "brand:wikidata": "Q63367543", "healthcare": "pharmacy", "name": "Blooms The Chemist", "shop": "chemist"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Boots": {"name": "Boots", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/bootsuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6123139", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Boots", "brand:wikidata": "Q6123139", "brand:wikipedia": "en:Boots UK", "healthcare": "pharmacy", "name": "Boots"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["gb"], "terms": ["boots pharmacy"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Boticas y Salud": {"name": "Boticas y Salud", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62563126", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Boticas y Salud", "brand:wikidata": "Q62563126", "healthcare": "pharmacy", "name": "Boticas y Salud"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Brookshire Brothers Pharmacy": {"name": "Brookshire Brothers Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/BrookshireBros/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4975084", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Brookshire Brothers Pharmacy", "brand:wikidata": "Q4975084", "brand:wikipedia": "en:Brookshire Brothers", "healthcare": "pharmacy", "name": "Brookshire Brothers Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/CVS Pharmacy": {"name": "CVS Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/CVS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2078880", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "CVS Pharmacy", "brand:wikidata": "Q2078880", "brand:wikipedia": "en:CVS Pharmacy", "healthcare": "pharmacy", "name": "CVS Pharmacy", "short_name": "CVS"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Camelia": {"name": "Camelia", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/camelia.vaistine/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15867413", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Camelia", "brand:wikidata": "Q15867413", "brand:wikipedia": "lt:Nemuno vaistinė", "healthcare": "pharmacy", "name": "Camelia"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["lt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Catena": {"name": "Catena", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciaCatena/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24035728", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Catena", "brand:wikidata": "Q24035728", "brand:wikipedia": "ro:Farmacia Catena", "healthcare": "pharmacy", "name": "Catena"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Chemist King Discount Pharmacy": {"name": "Chemist King Discount Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/ChemistKingDiscountPharmacy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63367667", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Chemist King Discount Pharmacy", "brand:wikidata": "Q63367667", "healthcare": "pharmacy", "name": "Chemist King Discount Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["au"], "terms": ["chemist king", "chemist king discount pharmacies"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Chemist Warehouse": {"name": "Chemist Warehouse", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/ChemistWarehouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48782120", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Chemist Warehouse", "brand:wikidata": "Q48782120", "brand:wikipedia": "en:Chemist Warehouse", "healthcare": "pharmacy", "name": "Chemist Warehouse"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Clicks": {"name": "Clicks", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/ClicksSouthAfrica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62563622", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Clicks", "brand:wikidata": "Q62563622", "healthcare": "pharmacy", "name": "Clicks"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["za"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Costco Pharmacy": {"name": "Costco Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Costco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q715583", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Costco Pharmacy", "brand:wikidata": "Q715583", "brand:wikipedia": "en:Costco", "healthcare": "pharmacy", "name": "Costco Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Cruz Azul": {"name": "Cruz Azul", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/CruzAzul.Farmacias/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62108219", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Cruz Azul", "brand:wikidata": "Q62108219", "healthcare": "pharmacy", "name": "Cruz Azul"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ec"], "terms": ["farmacias cruz azul"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Cruz Verde": {"name": "Cruz Verde", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasCruzVerde1/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5856071", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Cruz Verde", "brand:wikidata": "Q5856071", "brand:wikipedia": "es:Farmacias Cruz Verde", "healthcare": "pharmacy", "name": "Cruz Verde"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl"], "terms": ["farmacias cruz verde"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Day Lewis Pharmacy": {"name": "Day Lewis Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/DayLewisPharmacy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62563772", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Day Lewis Pharmacy", "brand:wikidata": "Q62563772", "healthcare": "pharmacy", "name": "Day Lewis Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Dbam o Zdrowie": {"name": "Dbam o Zdrowie", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/725613555530133504/f2lYAu0M_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62563833", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Dbam o Zdrowie", "brand:wikidata": "Q62563833", "healthcare": "pharmacy", "name": "Dbam o Zdrowie"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Dr. Max": {"name": "Dr. Max", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/lekarnadrmax/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56317371", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Dr. Max", "brand:wikidata": "Q56317371", "brand:wikipedia": "fr:Dr.Max", "healthcare": "pharmacy", "name": "Dr. Max"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cz", "pl", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Droga Raia": {"name": "Droga Raia", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/DrogaRaia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10357101", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Droga Raia", "brand:wikidata": "Q10357101", "brand:wikipedia": "pt:RaiaDrogasil", "healthcare": "pharmacy", "name": "Droga Raia"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Drogaria São Paulo": {"name": "Drogaria São Paulo", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/DrogariaSaoPaulo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5308184", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Drogaria São Paulo", "brand:wikidata": "Q5308184", "brand:wikipedia": "en:Grupo DPSP", "healthcare": "pharmacy", "name": "Drogaria São Paulo"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Drogasil": {"name": "Drogasil", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDrogazil.logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5308185", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Drogasil", "brand:wikidata": "Q5308185", "brand:wikipedia": "pt:Drogasil", "healthcare": "pharmacy", "name": "Drogasil", "wheelchair": "yes"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Duane Reade": {"name": "Duane Reade", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/duanereade/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5310380", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Duane Reade", "brand:wikidata": "Q5310380", "brand:wikipedia": "en:Duane Reade", "healthcare": "pharmacy", "name": "Duane Reade"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Eurovaistinė": {"name": "Eurovaistinė", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q267205", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Eurovaistinė", "brand:wikidata": "Q267205", "brand:wikipedia": "en:Euroapotheca", "healthcare": "pharmacy", "name": "Eurovaistinė"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["lt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Extrafarma": {"name": "Extrafarma", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Extrafarma/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20055480", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Extrafarma", "brand:wikidata": "Q20055480", "brand:wikipedia": "pt:Extrafarma", "healthcare": "pharmacy", "name": "Extrafarma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Familiprix": {"name": "Familiprix", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Familiprix/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3064881", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Familiprix", "brand:wikidata": "Q3064881", "brand:wikipedia": "fr:Familiprix", "healthcare": "pharmacy", "name": "Familiprix"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/FarmaElías": {"name": "FarmaElías", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81969487", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "FarmaElías", "brand:wikidata": "Q81969487", "healthcare": "pharmacy", "name": "FarmaElías"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacenter (Colombia)": {"name": "Farmacenter (Colombia)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmacenterCo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62563928", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacenter", "brand:wikidata": "Q62563928", "healthcare": "pharmacy", "name": "Farmacenter"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacia Benavides": {"name": "Farmacia Benavides", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasBenavides/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5435613", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacia Benavides", "brand:wikidata": "Q5435613", "brand:wikipedia": "en:Farmacias Benavides", "healthcare": "pharmacy", "name": "Farmacia Benavides"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacia Chávez": {"name": "Farmacia Chávez", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81969919", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacia Chávez", "brand:wikidata": "Q81969919", "healthcare": "pharmacy", "name": "Farmacia Chávez"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacia Guadalajara": {"name": "Farmacia Guadalajara", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/1204192654420000769/YTWjQ-IM_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5435609", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacia Guadalajara", "brand:wikidata": "Q5435609", "brand:wikipedia": "en:Farmacias Guadalajara", "healthcare": "pharmacy", "name": "Farmacia Guadalajara"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["mx"], "terms": ["farmacias guadalajara"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacia Hipermaxi": {"name": "Farmacia Hipermaxi", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81970238", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacia Hipermaxi", "brand:wikidata": "Q81970238", "healthcare": "pharmacy", "name": "Farmacia Hipermaxi"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacias Ahumada": {"name": "Farmacias Ahumada", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFarmacias%20ahumada.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5856069", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Ahumada", "brand:wikidata": "Q5856069", "brand:wikipedia": "es:Farmacias Ahumada", "healthcare": "pharmacy", "name": "Farmacias Ahumada"}, "reference": {"key": "amenity", "value": "pharmacy"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacias Bolivia": {"name": "Farmacias Bolivia", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81970584", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Bolivia", "brand:wikidata": "Q81970584", "healthcare": "pharmacy", "name": "Farmacias Bolivia"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacias Económicas (Ecuador)": {"name": "Farmacias Económicas (Ecuador)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasEconomicasEc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62108380", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Económicas", "brand:wikidata": "Q62108380", "healthcare": "pharmacy", "name": "Farmacias Económicas"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ec"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacias Económicas (El Salvador)": {"name": "Farmacias Económicas (El Salvador)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasEconomicas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62108397", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Económicas", "brand:wikidata": "Q62108397", "healthcare": "pharmacy", "name": "Farmacias Económicas"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["sv"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacias Similares": {"name": "Farmacias Similares", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/DrSimiChile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62564610", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias Similares", "brand:wikidata": "Q62564610", "healthcare": "pharmacy", "name": "Farmacias Similares"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl", "gt", "mx"], "terms": ["similares"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacias del Ahorro": {"name": "Farmacias del Ahorro", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FAhorro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62086647", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias del Ahorro", "brand:wikidata": "Q62086647", "healthcare": "pharmacy", "name": "Farmacias del Ahorro"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["mx"], "terms": ["farmacia del ahorro"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacias del Dr. Simi": {"name": "Farmacias del Dr. Simi", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/DrSimiChile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62564610", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacias del Dr. Simi", "brand:wikidata": "Q62564610", "healthcare": "pharmacy", "name": "Farmacias del Dr. Simi"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl", "gt", "mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacity": {"name": "Farmacity", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Farmacity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5856076", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacity", "brand:wikidata": "Q5856076", "brand:wikipedia": "es:Farmacity", "healthcare": "pharmacy", "name": "Farmacity"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ra"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmacorp": {"name": "Farmacorp", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Farmacorp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81968937", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmacorp", "brand:wikidata": "Q81968937", "healthcare": "pharmacy", "name": "Farmacorp"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmahorro": {"name": "Farmahorro", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmahorroVe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20015002", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmahorro", "brand:wikidata": "Q20015002", "brand:wikipedia": "es:Farmahorro", "healthcare": "pharmacy", "name": "Farmahorro"}, "reference": {"key": "amenity", "value": "pharmacy"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Farmatodo": {"name": "Farmatodo", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/farmatodovenezuela/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5856092", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Farmatodo", "brand:wikidata": "Q5856092", "brand:wikipedia": "es:Farmatodo", "healthcare": "pharmacy", "name": "Farmatodo"}, "reference": {"key": "amenity", "value": "pharmacy"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Felicia": {"name": "Felicia", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/farmaciafelicia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62564805", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Felicia", "brand:wikidata": "Q62564805", "healthcare": "pharmacy", "name": "Felicia"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["md"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Fred Meyer Pharmacy": {"name": "Fred Meyer Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/fredmeyer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5495932", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Fred Meyer", "brand:wikidata": "Q5495932", "brand:wikipedia": "en:Fred Meyer", "healthcare": "pharmacy", "name": "Fred Meyer Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": ["fred meyer"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Fybeca": {"name": "Fybeca", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/fybeca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62564822", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Fybeca", "brand:wikidata": "Q62564822", "healthcare": "pharmacy", "name": "Fybeca"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ec"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Generika": {"name": "Generika", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/GenerikaDrugstorePH/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62564876", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Generika", "brand:wikidata": "Q62564876", "healthcare": "pharmacy", "name": "Generika"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ph"], "terms": ["generika drugstore"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Gintarinė vaistinė": {"name": "Gintarinė vaistinė", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Gintarine.Vaistine/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15857801", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Gintarinė vaistinė", "brand:wikidata": "Q15857801", "brand:wikipedia": "lt:Gintarinė vaistinė", "healthcare": "pharmacy", "name": "Gintarinė vaistinė"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["lt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Guardian (Asia)": {"name": "Guardian (Asia)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Guardianmy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63371124", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Guardian", "brand:wikidata": "Q63371124", "brand:wikipedia": "ms:Guardian Malaysia", "healthcare": "pharmacy", "name": "Guardian"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["bn", "id", "kh", "my", "sg", "vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Guardian (Australia)": {"name": "Guardian (Australia)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/GuardianAustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63367814", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Guardian", "brand:wikidata": "Q63367814", "healthcare": "pharmacy", "name": "Guardian"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["au"], "terms": ["guardian pharmacies", "guardian pharmacy"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Guardian (Canada)": {"name": "Guardian (Canada)", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65553864", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Guardian", "brand:wikidata": "Q65553864", "healthcare": "pharmacy", "name": "Guardian"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/H-E-B Pharmacy": {"name": "H-E-B Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/HEB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q830621", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "H-E-B Pharmacy", "brand:wikidata": "Q830621", "brand:wikipedia": "en:H-E-B", "healthcare": "pharmacy", "name": "H-E-B Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Health Mart": {"name": "Health Mart", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/HealthMart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5690597", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Health Mart", "brand:wikidata": "Q5690597", "brand:wikipedia": "en:Health Mart", "healthcare": "pharmacy", "name": "Health Mart"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": ["health mart pharmacy"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Hy-Vee Pharmacy": {"name": "Hy-Vee Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/HyVee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1639719", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Hy-Vee Pharmacy", "brand:wikidata": "Q1639719", "brand:wikipedia": "en:Hy-Vee", "healthcare": "pharmacy", "name": "Hy-Vee Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/I.D.A.": {"name": "I.D.A.", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65553883", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "I.D.A.", "brand:wikidata": "Q65553883", "healthcare": "pharmacy", "name": "I.D.A."}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Inkafarma": {"name": "Inkafarma", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/inkafarmaperu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10997748", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Inkafarma", "brand:wikidata": "Q10997748", "brand:wikipedia": "es:Inkafarma", "healthcare": "pharmacy", "name": "Inkafarma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Jean Coutu": {"name": "Jean Coutu", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/JeanCoutu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3117457", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Jean Coutu", "brand:wikidata": "Q3117457", "brand:wikipedia": "fr:Groupe Jean Coutu", "healthcare": "pharmacy", "name": "Jean Coutu"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Kimia Farma": {"name": "Kimia Farma", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/KimiaFarmaCare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11264892", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Kimia Farma", "brand:wikidata": "Q11264892", "brand:wikipedia": "en:Kimia Farma", "healthcare": "pharmacy", "name": "Kimia Farma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Kinney Drugs": {"name": "Kinney Drugs", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/kinneydrugs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6414090", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Kinney Drugs", "brand:wikidata": "Q6414090", "brand:wikipedia": "en:Kinney Drugs", "healthcare": "pharmacy", "name": "Kinney Drugs"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Lloyds Pharmacy": {"name": "Lloyds Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/lloydspharmacy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6662870", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Lloyds Pharmacy", "brand:wikidata": "Q6662870", "brand:wikipedia": "en:LloydsPharmacy", "healthcare": "pharmacy", "name": "Lloyds Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["be", "gb", "ie", "im"], "terms": ["lloyds"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/London Drugs": {"name": "London Drugs", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/LondonDrugs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3258955", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "London Drugs", "brand:wikidata": "Q3258955", "brand:wikipedia": "en:London Drugs", "healthcare": "pharmacy", "name": "London Drugs"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Longs Drugs (Hawaii)": {"name": "Longs Drugs (Hawaii)", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLongs%20Drugs%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16931196", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Longs Drugs", "brand:wikidata": "Q16931196", "brand:wikipedia": "en:Longs Drugs", "healthcare": "pharmacy", "name": "Longs Drugs", "short_name": "Longs"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Mannings": {"name": "Mannings", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/manningshongkong/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13646560", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Mannings", "brand:wikidata": "Q13646560", "brand:wikipedia": "en:Mannings", "healthcare": "pharmacy", "name": "Mannings"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cn", "hk", "mo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Marc's Pharmacy": {"name": "Marc's Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/MarcsStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17080259", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Marc's", "brand:wikidata": "Q17080259", "brand:wikipedia": "en:Marc's", "healthcare": "pharmacy", "name": "Marc's Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/MedPlus": {"name": "MedPlus", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/842606018131443712/P1glGiqa_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65684234", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "MedPlus", "brand:wikidata": "Q65684234", "brand:wikipedia": "en:MedPlus", "healthcare": "pharmacy", "name": "MedPlus"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Mercury Drug": {"name": "Mercury Drug", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/mercurydrugph/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6818610", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Mercury Drug", "brand:wikidata": "Q6818610", "brand:wikipedia": "en:Mercury Drug", "healthcare": "pharmacy", "name": "Mercury Drug"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Mifarma": {"name": "Mifarma", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/MifarmaPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62564998", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Mifarma", "brand:wikidata": "Q62564998", "healthcare": "pharmacy", "name": "Mifarma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Multipharma": {"name": "Multipharma", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Multipharma.be/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62565018", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Multipharma", "brand:wikidata": "Q62565018", "healthcare": "pharmacy", "name": "Multipharma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["be"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Mēness aptieka": {"name": "Mēness aptieka", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/MenessAptieka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57583051", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Mēness aptieka", "brand:wikidata": "Q57583051", "healthcare": "pharmacy", "name": "Mēness aptieka"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["lv"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Pague Menos": {"name": "Pague Menos", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/farmaciaspaguemenos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7124466", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Pague Menos", "brand:wikidata": "Q7124466", "brand:wikipedia": "pt:Pague Menos", "healthcare": "pharmacy", "name": "Pague Menos"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "terms": ["farmácia pague menos"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Panvel": {"name": "Panvel", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/panvelfarmacias/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10344254", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Panvel", "brand:wikidata": "Q10344254", "brand:wikipedia": "pt:Panvel", "healthcare": "pharmacy", "name": "Panvel"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/PharmaChoice": {"name": "PharmaChoice", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/875423108513091584/kcsmBdjL_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7180716", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "PharmaChoice", "brand:wikidata": "Q7180716", "brand:wikipedia": "en:PharmaChoice", "healthcare": "pharmacy", "name": "PharmaChoice"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/PharmaSave (Australia)": {"name": "PharmaSave (Australia)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/PharmasaveBrentfordSquare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63367906", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "PharmaSave", "brand:wikidata": "Q63367906", "healthcare": "pharmacy", "name": "PharmaSave"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Pharmacie Principale": {"name": "Pharmacie Principale", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/PharmaciePrincipale/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1547749", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Pharmacie Principale", "brand:wikidata": "Q1547749", "brand:wikipedia": "fr:Groupe PP Holding", "healthcare": "pharmacy", "name": "Pharmacie Principale"}, "reference": {"key": "amenity", "value": "pharmacy"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Pharmacy 4 Less": {"name": "Pharmacy 4 Less", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/pharmacy4less/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63367608", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Pharmacy 4 Less", "brand:wikidata": "Q63367608", "healthcare": "pharmacy", "name": "Pharmacy 4 Less"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Pharmaprix": {"name": "Pharmaprix", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/shoppersdrugmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1820137", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Pharmaprix", "brand:wikidata": "Q1820137", "brand:wikipedia": "fr:Pharmaprix", "healthcare": "pharmacy", "name": "Pharmaprix"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Pharmasave (Canada)": {"name": "Pharmasave (Canada)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/PharmasaveAtlantic/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17093822", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Pharmasave", "brand:wikidata": "Q17093822", "brand:wikipedia": "en:Pharmasave", "healthcare": "pharmacy", "name": "Pharmasave"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Priceline Pharmacy": {"name": "Priceline Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/PricelineAustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7242652", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Priceline Pharmacy", "brand:wikidata": "Q7242652", "brand:wikipedia": "en:Priceline (Australia)", "healthcare": "pharmacy", "name": "Priceline Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["au"], "terms": ["priceline"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Punto Farma (Colombia)": {"name": "Punto Farma (Colombia)", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62595271", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Punto Farma", "brand:wikidata": "Q62595271", "healthcare": "pharmacy", "name": "Punto Farma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Punto Farma (Honduras)": {"name": "Punto Farma (Honduras)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasPuntoFarma/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62595229", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Punto Farma", "brand:wikidata": "Q62595229", "healthcare": "pharmacy", "name": "Punto Farma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["hn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Punto Farma (Paraguay)": {"name": "Punto Farma (Paraguay)", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Puntofarmapy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62595220", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Punto Farma", "brand:wikidata": "Q62595220", "healthcare": "pharmacy", "name": "Punto Farma"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["py"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Remedy'sRx": {"name": "Remedy'sRx", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65553833", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Remedy'sRx", "brand:wikidata": "Q65553833", "healthcare": "pharmacy", "name": "Remedy'sRx"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Rexall": {"name": "Rexall", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Rexall/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7319360", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Rexall", "brand:wikidata": "Q7319360", "brand:wikipedia": "en:Rexall", "healthcare": "pharmacy", "name": "Rexall"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Rite Aid": {"name": "Rite Aid", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/riteaid/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3433273", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Rite Aid", "brand:wikidata": "Q3433273", "brand:wikipedia": "en:Rite Aid", "healthcare": "pharmacy", "name": "Rite Aid"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": ["rite aid pharmacy"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Rose Pharmacy": {"name": "Rose Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/RosePharmacyInc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62663208", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Rose Pharmacy", "brand:wikidata": "Q62663208", "healthcare": "pharmacy", "name": "Rose Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Rowlands Pharmacy": {"name": "Rowlands Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/RowlandsPharmacy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62663235", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Rowlands Pharmacy", "brand:wikidata": "Q62663235", "healthcare": "pharmacy", "name": "Rowlands Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["gb"], "terms": ["rowlands"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Safeway": {"name": "Safeway", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Safeway/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1508234", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Safeway", "brand:wikidata": "Q1508234", "brand:wikipedia": "en:Safeway Inc.", "healthcare": "pharmacy", "name": "Safeway"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/SalcoBrand": {"name": "SalcoBrand", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Salcobrand/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2877054", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "SalcoBrand", "brand:wikidata": "Q2877054", "brand:wikipedia": "es:Farmacias Salcobrand", "healthcare": "pharmacy", "name": "SalcoBrand"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["cl"], "terms": ["farmacias salcobrand"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Sana Sana": {"name": "Sana Sana", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/FarmaciasSanaSanaEc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62564499", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Sana Sana", "brand:wikidata": "Q62564499", "healthcare": "pharmacy", "name": "Sana Sana"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ec"], "terms": ["farmacias sana sana"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Sensiblu": {"name": "Sensiblu", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Sensiblu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12740640", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Sensiblu", "brand:wikidata": "Q12740640", "brand:wikipedia": "ro:Sensiblu", "healthcare": "pharmacy", "name": "Sensiblu"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Shoppers Drug Mart": {"name": "Shoppers Drug Mart", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/shoppersdrugmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1820137", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Shoppers Drug Mart", "brand:wikidata": "Q1820137", "brand:wikipedia": "en:Shoppers Drug Mart", "healthcare": "pharmacy", "name": "Shoppers Drug Mart"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/South Star Drug": {"name": "South Star Drug", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/southstardrugph/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7568544", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "South Star Drug", "brand:wikidata": "Q7568544", "brand:wikipedia": "en:South Star Drug", "healthcare": "pharmacy", "name": "South Star Drug"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Superdrug": {"name": "Superdrug", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/Superdrug/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7643261", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Superdrug", "brand:wikidata": "Q7643261", "brand:wikipedia": "en:Superdrug", "healthcare": "pharmacy", "name": "Superdrug"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/São João": {"name": "São João", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/farmaciassaojoao/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62663306", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "São João", "brand:wikidata": "Q62663306", "healthcare": "pharmacy", "name": "São João"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/TGP": {"name": "TGP", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/tgpthegenericspharmacy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61948677", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "The Generics Pharmacy", "brand:wikidata": "Q61948677", "healthcare": "pharmacy", "name": "TGP", "official_name": "The Generics Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/TerryWhite Chemmart": {"name": "TerryWhite Chemmart", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/terrywhitechemmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24089773", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "TerryWhite Chemmart", "brand:wikidata": "Q24089773", "brand:wikipedia": "en:Terry White Chemmart", "healthcare": "pharmacy", "name": "TerryWhite Chemmart"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["au"], "terms": ["terrywhite", "terrywhite chemist", "terrywhite chemists"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/UFS": {"name": "UFS", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/ufsdispensaries/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63367573", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "UFS", "brand:wikidata": "Q63367573", "healthcare": "pharmacy", "name": "UFS"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["au"], "terms": ["ufs dispensaries"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Unichem Pharmacy": {"name": "Unichem Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/UnichemNZ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62663379", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Unichem Pharmacy", "brand:wikidata": "Q62663379", "healthcare": "pharmacy", "name": "Unichem Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Uniprix": {"name": "Uniprix", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/uniprix/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q683265", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Uniprix", "brand:wikidata": "Q683265", "brand:wikipedia": "fr:Uniprix (pharmacies)", "healthcare": "pharmacy", "name": "Uniprix"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/V・ドラッグ": {"name": "V・ドラッグ", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/chubuyakuhin.co.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11367334", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "V・ドラッグ", "brand:en": "V・Drug", "brand:ja": "V・ドラッグ", "brand:wikidata": "Q11367334", "brand:wikipedia": "ja:中部薬品", "healthcare": "pharmacy", "name": "V・ドラッグ", "name:en": "V・Drug", "name:ja": "V・ドラッグ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Walgreens": {"name": "Walgreens", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/walgreens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1591889", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Walgreens", "brand:wikidata": "Q1591889", "brand:wikipedia": "en:Walgreens", "healthcare": "pharmacy", "name": "Walgreens"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["us"], "terms": ["walgreens pharmacy"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Walmart Pharmacy": {"name": "Walmart Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q483551", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "healthcare": "pharmacy", "name": "Walmart Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ca", "us"], "terms": ["walmart"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Watsons": {"name": "Watsons", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/WatsonsPH/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7974785", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Watsons", "brand:wikidata": "Q7974785", "brand:wikipedia": "en:Watsons", "healthcare": "pharmacy", "name": "Watsons"}, "reference": {"key": "amenity", "value": "pharmacy"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Well Pharmacy": {"name": "Well Pharmacy", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/PharmacyWell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7726524", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Well Pharmacy", "brand:wikidata": "Q7726524", "brand:wikipedia": "en:Well Pharmacy", "healthcare": "pharmacy", "name": "Well Pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["gb"], "terms": ["well"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Ziko Apteka": {"name": "Ziko Apteka", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/ZikoUrodaiZdrowie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63432892", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Ziko Apteka", "brand:wikidata": "Q63432892", "healthcare": "pharmacy", "name": "Ziko Apteka", "short_name": "Ziko"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/А5": {"name": "А5", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/apteka5/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62663476", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "А5", "brand:wikidata": "Q62663476", "healthcare": "pharmacy", "name": "А5"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Бережная аптека": {"name": "Бережная аптека", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/BereznayaApteka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62664194", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Бережная аптека", "brand:wikidata": "Q62664194", "healthcare": "pharmacy", "name": "Бережная аптека"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/Ригла": {"name": "Ригла", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/rigla.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4394431", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "Ригла", "brand:wikidata": "Q4394431", "brand:wikipedia": "ru:Ригла", "healthcare": "pharmacy", "name": "Ригла"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/סופר-פארם": {"name": "סופר-פארם", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/super.pharm.co.il/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13220217", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "סופר-פארם", "brand:he": "סופר-פארם", "brand:wikidata": "Q13220217", "brand:wikipedia": "en:Super-Pharm", "healthcare": "pharmacy", "name": "סופר-פארם", "name:he": "סופר-פארם"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/くすりの福太郎": {"name": "くすりの福太郎", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/kusurinofukutaro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17214460", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "くすりの福太郎", "brand:en": "Kusurino FUKUTARO", "brand:ja": "くすりの福太郎", "brand:wikidata": "Q17214460", "brand:wikipedia": "ja:くすりの福太郎", "healthcare": "pharmacy", "name": "くすりの福太郎", "name:en": "Kusurino Fukutaro", "name:ja": "くすりの福太郎"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/さくら薬局": {"name": "さくら薬局", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11299021", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "さくら薬局", "brand:ja": "さくら薬局", "brand:wikidata": "Q11299021", "brand:wikipedia": "ja:クラフト (ドラッグストア)", "healthcare": "pharmacy", "name": "さくら薬局", "name:en": "Sakura Pharmacy", "name:ja": "さくら薬局"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/アイン薬局": {"name": "アイン薬局", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11282518", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "アイン薬局", "brand:ja": "アイン薬局", "brand:wikidata": "Q11282518", "brand:wikipedia": "ja:アインファーマシーズ", "healthcare": "pharmacy", "name": "アイン薬局", "name:en": "Ain Pharmaciez", "name:ja": "アイン薬局"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/ウェルパーク": {"name": "ウェルパーク", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11288610", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "ウェルパーク", "brand:ja": "ウェルパーク", "brand:wikidata": "Q11288610", "brand:wikipedia": "ja:ウェルパーク", "healthcare": "pharmacy", "name": "ウェルパーク", "name:en": "Welpark", "name:ja": "ウェルパーク"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/ウエルシア": {"name": "ウエルシア", "icon": "maki-pharmacy", "imageURL": "https://graph.facebook.com/WelciaBHG.SG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11288684", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "ウエルシア", "brand:en": "Welcia", "brand:ja": "ウエルシア", "brand:wikidata": "Q11288684", "brand:wikipedia": "ja:ウエルシアホールディングス", "healthcare": "pharmacy", "name": "ウエルシア", "name:en": "Welcia", "name:ja": "ウエルシア"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/ウエルシア薬局": {"name": "ウエルシア薬局", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11288687", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "ウエルシア薬局", "brand:en": "Welcia Yakkyoku", "brand:ja": "ウエルシア薬局", "brand:wikidata": "Q11288687", "brand:wikipedia": "ja:ウエルシア薬局", "healthcare": "pharmacy", "name": "ウエルシア薬局", "name:en": "Welcia Yakkyoku", "name:ja": "ウエルシア薬局"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/オーエスドラッグ": {"name": "オーエスドラッグ", "icon": "maki-pharmacy", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOS%20Drug%20store%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11407223", "amenity": "pharmacy"}, "addTags": {"alt_name": "OSドラッグ", "amenity": "pharmacy", "brand": "オーエスドラッグ", "brand:en": "OS Drug", "brand:ja": "オーエスドラッグ", "brand:wikidata": "Q11407223", "brand:wikipedia": "ja:協和商事", "healthcare": "pharmacy", "name": "オーエスドラッグ", "name:en": "OS Drug", "name:ja": "オーエスドラッグ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": ["osドラッグ"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/カワチ薬品": {"name": "カワチ薬品", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11295397", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "カワチ薬品", "brand:en": "Cawachi", "brand:ja": "カワチ薬品", "brand:wikidata": "Q11295397", "brand:wikipedia": "ja:カワチ薬品", "healthcare": "pharmacy", "name": "カワチ薬品", "name:en": "Cawachi", "name:ja": "カワチ薬品"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/キリン堂": {"name": "キリン堂", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11297751", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "キリン堂", "brand:en": "Kirindo", "brand:ja": "キリン堂", "brand:wikidata": "Q11297751", "brand:wikipedia": "ja:キリン堂", "healthcare": "pharmacy", "name": "キリン堂", "name:en": "Kirindo", "name:ja": "キリン堂"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/クオール": {"name": "クオール", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88383318", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "クオール", "brand:en": "Qol", "brand:ja": "クオール", "brand:wikidata": "Q88383318", "healthcare": "pharmacy", "name": "クオール", "name:en": "Qol", "name:ja": "クオール"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/クスリのアオキ": {"name": "クスリのアオキ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11298661", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "クスリのアオキ", "brand:en": "Kusuri no Aoki", "brand:ja": "クスリのアオキ", "brand:wikidata": "Q11298661", "brand:wikipedia": "ja:クスリのアオキ", "healthcare": "pharmacy", "name": "クスリのアオキ", "name:en": "Kusuri no Aoki", "name:ja": "クスリのアオキ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/クリエイト": {"name": "クリエイト", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17215731", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "クリエイト", "brand:en": "Create", "brand:ja": "クリエイト", "brand:wikidata": "Q17215731", "brand:wikipedia": "ja:クリエイト", "healthcare": "pharmacy", "name": "クリエイト", "name:en": "Create", "name:ja": "クリエイト"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/クリエイトSD": {"name": "クリエイトSD", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11299163", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "クリエイトSD", "brand:en": "CreateSD", "brand:ja": "クリエイトSD", "brand:wikidata": "Q11299163", "brand:wikipedia": "ja:クリエイトSDホールディングス", "healthcare": "pharmacy", "name": "クリエイトSD", "name:en": "CreateSD", "name:ja": "クリエイトSD"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/コクミン": {"name": "コクミン", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/803158983611559936/LnjULpI0_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11301923", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "コクミン", "brand:en": "Kokumin", "brand:ja": "コクミン", "brand:wikidata": "Q11301923", "brand:wikipedia": "ja:コクミン", "healthcare": "pharmacy", "name": "コクミン", "name:en": "Kokumin", "name:ja": "コクミン", "official_name": "コクミンドラッグ", "official_name:en": "Kokumin Drug", "official_name:ja": "コクミンドラッグ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/ココカラファイン": {"name": "ココカラファイン", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/1223165776175095808/pmOXWN7H_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11301948", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "ココカラファイン", "brand:en": "Cocokara Fine", "brand:ja": "ココカラファイン", "brand:wikidata": "Q11301948", "brand:wikipedia": "ja:ココカラファイン", "healthcare": "pharmacy", "name": "ココカラファイン", "name:en": "Cocokara Fine", "name:ja": "ココカラファイン"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/サツドラ": {"name": "サツドラ", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/1250697507710984192/jQCj4FcY_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11304804", "amenity": "pharmacy"}, "addTags": {"alt_name:en": "Satsudora", "amenity": "pharmacy", "brand": "サツドラ", "brand:en": "Sapporo Drug Store", "brand:ja": "サツドラ", "brand:wikidata": "Q11304804", "healthcare": "pharmacy", "name": "サツドラ", "name:en": "Sapporo Drug Store", "name:ja": "サツドラ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": ["サッポロドラッグストアー"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/サンドラッグ": {"name": "サンドラッグ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11305867", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "サンドラッグ", "brand:en": "Sundrug", "brand:ja": "サンドラッグ", "brand:wikidata": "Q11305867", "brand:wikipedia": "ja:サンドラッグ", "healthcare": "pharmacy", "name": "サンドラッグ", "name:en": "Sundrug", "name:ja": "サンドラッグ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/スギ薬局": {"name": "スギ薬局", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11311460", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "スギ薬局", "brand:en": "Sugi Pharmacy", "brand:ja": "スギ薬局", "brand:wikidata": "Q11311460", "brand:wikipedia": "ja:スギ薬局", "healthcare": "pharmacy", "name": "スギ薬局", "name:en": "Sugi Pharmacy", "name:ja": "スギ薬局"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/セイジョー": {"name": "セイジョー", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11314133", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "セイジョー", "brand:en": "Seijo", "brand:ja": "セイジョー", "brand:wikidata": "Q11314133", "brand:wikipedia": "ja:セイジョー", "healthcare": "pharmacy", "name": "セイジョー", "name:en": "Seijo", "name:ja": "セイジョー"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/ダイコクドラッグ": {"name": "ダイコクドラッグ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11316754", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "ダイコクドラッグ", "brand:en": "Daikoku Drug", "brand:ja": "ダイコクドラッグ", "brand:wikidata": "Q11316754", "brand:wikipedia": "ja:ダイコク", "healthcare": "pharmacy", "name": "ダイコクドラッグ", "name:en": "Daikoku Drug", "name:ja": "ダイコクドラッグ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/ツルハドラッグ": {"name": "ツルハドラッグ", "icon": "maki-pharmacy", "imageURL": "https://pbs.twimg.com/profile_images/1061863510546640898/j9crJ6gs_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11318826", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "ツルハドラッグ", "brand:en": "Tsuruha", "brand:ja": "ツルハドラッグ", "brand:wikidata": "Q11318826", "brand:wikipedia": "ja:ツルハ", "healthcare": "pharmacy", "name": "ツルハドラッグ", "name:en": "Tsuruha", "name:ja": "ツルハドラッグ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/トモズ": {"name": "トモズ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7820097", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "トモズ", "brand:en": "Tomod's", "brand:ja": "トモズ", "brand:wikidata": "Q7820097", "brand:wikipedia": "ja:トモズ", "healthcare": "pharmacy", "name": "トモズ", "name:en": "Tomod's", "name:ja": "トモズ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": ["トモズエキスプレス"], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/ドラッグイレブン": {"name": "ドラッグイレブン", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11323075", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "ドラッグイレブン", "brand:en": "Drug Eleven", "brand:ja": "ドラッグイレブン", "brand:wikidata": "Q11323075", "brand:wikipedia": "ja:ドラッグイレブン", "healthcare": "pharmacy", "name": "ドラッグイレブン", "name:en": "Drug Eleven", "name:ja": "ドラッグイレブン"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/ドラッグセイムス": {"name": "ドラッグセイムス", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11456137", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "ドラッグセイムス", "brand:en": "Seims", "brand:ja": "ドラッグセイムス", "brand:wikidata": "Q11456137", "brand:wikipedia": "ja:富士薬品", "healthcare": "pharmacy", "name": "ドラッグセイムス", "name:en": "Drug Seims", "name:ja": "ドラッグセイムス"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pharmacy/マツモトキヨシ": {"name": "マツモトキヨシ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8014776", "amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "brand": "マツモトキヨシ", "brand:en": "Matsukiyo", "brand:ja": "マツモトキヨシ", "brand:wikidata": "Q8014776", "brand:wikipedia": "ja:マツモトキヨシ", "healthcare": "pharmacy", "name": "マツモトキヨシ", "name:en": "Matsukiyo", "name:ja": "マツモトキヨシ"}, "reference": {"key": "amenity", "value": "pharmacy"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/An Post": {"name": "An Post", "icon": "maki-post", "imageURL": "https://graph.facebook.com/AnPost/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q482490", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "An Post", "brand:wikidata": "Q482490", "brand:wikipedia": "en:An Post", "name": "An Post"}, "countryCodes": ["ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Australia Post": {"name": "Australia Post", "icon": "maki-post", "imageURL": "https://graph.facebook.com/australiapost/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1142936", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Australia Post", "brand:wikidata": "Q1142936", "brand:wikipedia": "en:Australia Post", "name": "Australia Post"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/CTT (Macau)": {"name": "CTT (Macau)", "icon": "maki-post", "imageURL": "https://graph.facebook.com/109452512407680/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q909429", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "CTT", "brand:wikidata": "Q909429", "brand:wikipedia": "en:CTT (Macau)", "name": "CTT"}, "countryCodes": ["mo"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/CTT (Portugal)": {"name": "CTT (Portugal)", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F2017-12-04%20Post%20office%20sign%2C%20Avenida%20Dr.%20Francisco%20S%C3%A1%20Carneiro%2C%20Albufeira.JPG&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1024518", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "CTT", "brand:wikidata": "Q1024518", "brand:wikipedia": "en:CTT Correios de Portugal, S.A.", "name": "CTT"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Canada Post": {"name": "Canada Post", "icon": "maki-post", "imageURL": "https://graph.facebook.com/canadapost/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1032001", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Canada Post", "brand:wikidata": "Q1032001", "brand:wikipedia": "en:Canada Post", "name": "Canada Post"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Correios": {"name": "Correios", "icon": "maki-post", "imageURL": "https://graph.facebook.com/correios/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3375004", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Correios", "brand:wikidata": "Q3375004", "brand:wikipedia": "en:Correios", "name": "Correios"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Correo Argentino": {"name": "Correo Argentino", "icon": "maki-post", "imageURL": "https://graph.facebook.com/CorreoOficialSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4036566", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Correo Argentino", "brand:wikidata": "Q4036566", "brand:wikipedia": "en:Correo Argentino", "name": "Correo Argentino"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Correos de Chile": {"name": "Correos de Chile", "icon": "maki-post", "imageURL": "https://graph.facebook.com/correoschile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5172893", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Correos de Chile", "brand:wikidata": "Q5172893", "brand:wikipedia": "en:Correos de Chile", "name": "Correos de Chile"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Correos de Costa Rica": {"name": "Correos de Costa Rica", "icon": "maki-post", "imageURL": "https://graph.facebook.com/CorreosdeCostaRica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5172894", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Correos de Costa Rica", "brand:wikidata": "Q5172894", "brand:wikipedia": "en:Correos de Costa Rica", "name": "Correos de Costa Rica"}, "countryCodes": ["cr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Correos de México": {"name": "Correos de México", "icon": "maki-post", "imageURL": "https://graph.facebook.com/CorreosdeMexico.Mexpost/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5172898", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Correos de México", "brand:wikidata": "Q5172898", "brand:wikipedia": "en:Correos de México", "name": "Correos de México"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/DHL": {"name": "DHL", "icon": "maki-post", "imageURL": "https://graph.facebook.com/dhl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q489815", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "DHL", "brand:wikidata": "Q489815", "brand:wikipedia": "en:DHL", "name": "DHL"}, "terms": ["dhl paketshop"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/DPD Paketshop": {"name": "DPD Paketshop", "icon": "maki-post", "imageURL": "https://graph.facebook.com/350375105088695/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q541030", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "DPD Paketshop", "brand:wikidata": "Q541030", "brand:wikipedia": "en:DPDgroup", "name": "DPD Paketshop"}, "countryCodes": ["at", "de", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Deutsche Post": {"name": "Deutsche Post", "icon": "maki-post", "imageURL": "https://graph.facebook.com/deutschepost/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q157645", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Deutsche Post", "brand:wikidata": "Q157645", "brand:wikipedia": "en:Deutsche Post", "name": "Deutsche Post"}, "countryCodes": ["de"], "terms": ["deutsche post ag", "deutsche post filiale"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Fancourier": {"name": "Fancourier", "icon": "maki-post", "imageURL": "https://graph.facebook.com/FANCourier/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12727984", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Fancourier", "brand:wikidata": "Q12727984", "brand:wikipedia": "ro:FAN Courier Express", "name": "Fancourier"}, "countryCodes": ["ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/FedEx": {"name": "FedEx", "icon": "maki-post", "imageURL": "https://graph.facebook.com/FedEx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q459477", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "FedEx", "brand:wikidata": "Q459477", "brand:wikipedia": "en:FedEx", "name": "FedEx"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Hermes Paketshop": {"name": "Hermes Paketshop", "icon": "maki-post", "imageURL": "https://graph.facebook.com/Hermesparcels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1613532", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Hermes Paketshop", "brand:wikidata": "Q1613532", "brand:wikipedia": "en:Hermes Group", "name": "Hermes Paketshop"}, "countryCodes": ["de"], "terms": ["hermes"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/LBC": {"name": "LBC", "icon": "maki-post", "imageURL": "https://graph.facebook.com/LBCexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17075584", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "LBC", "brand:wikidata": "Q17075584", "brand:wikipedia": "en:LBC Express", "name": "LBC"}, "countryCodes": ["ph"], "terms": ["lbc express"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/La Poste": {"name": "La Poste", "icon": "maki-post", "imageURL": "https://graph.facebook.com/laposte/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q373724", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "La Poste", "brand:wikidata": "Q373724", "brand:wikipedia": "fr:La Poste (entreprise française)", "name": "La Poste"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/MRW": {"name": "MRW", "icon": "maki-post", "imageURL": "https://graph.facebook.com/mrwespana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23767821", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "MRW", "brand:wikidata": "Q23767821", "brand:wikipedia": "es:MRW", "name": "MRW"}, "countryCodes": ["ad", "es", "gi", "pt", "ve"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Mail Boxes Etc.": {"name": "Mail Boxes Etc.", "icon": "maki-post", "imageURL": "https://graph.facebook.com/mbeitalia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1139182", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Mail Boxes Etc.", "brand:wikidata": "Q1139182", "brand:wikipedia": "en:Mail Boxes Etc.", "name": "Mail Boxes Etc."}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/OCA": {"name": "OCA", "icon": "maki-post", "imageURL": "https://graph.facebook.com/OCACorreoOK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5172887", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "OCA", "brand:wikidata": "Q5172887", "brand:wikipedia": "es:Correo OCA", "name": "OCA"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Oficina de Correos": {"name": "Oficina de Correos", "icon": "maki-post", "imageURL": "https://graph.facebook.com/correos.es/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q776605", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Oficina de Correos", "brand:wikidata": "Q776605", "brand:wikipedia": "es:Correos (España)", "name": "Oficina de Correos"}, "countryCodes": ["es"], "terms": ["correos"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/PHLPost": {"name": "PHLPost", "icon": "maki-post", "imageURL": "https://graph.facebook.com/PHLPost/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1406037", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "PHLPost", "brand:wikidata": "Q1406037", "brand:wikipedia": "en:Philippine Postal Corporation", "name": "PHLPost", "official_name": "Philippine Postal Corporation"}, "countryCodes": ["ph"], "terms": ["phl"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Poczta Polska": {"name": "Poczta Polska", "icon": "maki-post", "imageURL": "https://graph.facebook.com/pocztapolska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q168833", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Poczta Polska", "brand:wikidata": "Q168833", "brand:wikipedia": "pl:Poczta Polska", "name": "Poczta Polska"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Post Office (UK)": {"name": "Post Office (UK)", "icon": "maki-post", "imageURL": "https://pbs.twimg.com/profile_images/1211657020283207685/knzWvwPK_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1783168", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Post Office", "brand:wikidata": "Q1783168", "brand:wikipedia": "en:Post Office Ltd", "name": "Post Office"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/PostalAnnex": {"name": "PostalAnnex", "icon": "maki-post", "imageURL": "https://graph.facebook.com/PostalAnnex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61960357", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "PostalAnnex", "brand:wikidata": "Q61960357", "name": "PostalAnnex"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Poste Italiane": {"name": "Poste Italiane", "icon": "maki-post", "imageURL": "https://graph.facebook.com/PosteItaliane/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q495026", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Poste Italiane", "brand:wikidata": "Q495026", "brand:wikipedia": "en:Poste italiane", "name": "Poste Italiane"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Serpost": {"name": "Serpost", "icon": "maki-post", "imageURL": "https://graph.facebook.com/428188863953059/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19521863", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Serpost", "brand:wikidata": "Q19521863", "brand:wikipedia": "es:Servicios Postales del Perú", "name": "Serpost"}, "countryCodes": ["pe"], "terms": ["servicios postales del perú"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Slovenská pošta": {"name": "Slovenská pošta", "icon": "maki-post", "imageURL": "https://graph.facebook.com/slovenskaposta/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1191849", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Slovenská pošta", "brand:wikidata": "Q1191849", "brand:wikipedia": "en:Slovenská pošta", "name": "Slovenská pošta"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/The UPS Store": {"name": "The UPS Store", "icon": "maki-post", "imageURL": "https://graph.facebook.com/theupsstore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7771029", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "The UPS Store", "brand:wikidata": "Q7771029", "brand:wikipedia": "en:The UPS Store", "name": "The UPS Store", "short_name": "UPS"}, "countryCodes": ["ca", "us"], "terms": ["ups store"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/United States Post Office": {"name": "United States Post Office", "icon": "maki-post", "imageURL": "https://graph.facebook.com/USPS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q668687", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "United States Post Office", "brand:wikidata": "Q668687", "brand:wikipedia": "en:United States Postal Service", "name": "United States Post Office"}, "countryCodes": ["us"], "terms": ["united states postal service", "us post office", "us postal service", "usps", "usps post office"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/ΕΛΤΑ": {"name": "ΕΛΤΑ", "icon": "maki-post", "imageURL": "https://graph.facebook.com/HellenicPostELTA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1275135", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "ΕΛΤΑ", "brand:wikidata": "Q1275135", "brand:wikipedia": "el:Ελληνικά Ταχυδρομεία", "name": "ΕΛΤΑ"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Белпошта": {"name": "Белпошта", "icon": "maki-post", "imageURL": "https://graph.facebook.com/belpost.by/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2662336", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Белпошта", "brand:be": "Белпошта", "brand:en": "Belposhta", "brand:ru": "Белпочта", "brand:wikidata": "Q2662336", "brand:wikipedia": "be:Белпошта", "name": "Белпошта", "name:be": "Белпошта", "name:en": "Belposhta", "name:ru": "Белпочта"}, "countryCodes": ["by"], "terms": ["белпочта"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Казпочта": {"name": "Казпочта", "icon": "maki-post", "imageURL": "https://graph.facebook.com/Kazpost/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q746263", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Казпочта", "brand:wikidata": "Q746263", "brand:wikipedia": "ru:Казпочта", "name": "Казпочта"}, "countryCodes": ["kz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Нова Пошта": {"name": "Нова Пошта", "icon": "maki-post", "imageURL": "https://graph.facebook.com/nova.poshta.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12133863", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Нова Пошта", "brand:wikidata": "Q12133863", "brand:wikipedia": "uk:Нова пошта", "name": "Нова Пошта"}, "countryCodes": ["ua"], "terms": ["нова пошта №1", "нова пошта №2", "нова пошта №3", "нова пошта №4"], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Почта России": {"name": "Почта России", "icon": "maki-post", "imageURL": "https://graph.facebook.com/ruspost/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1502763", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Почта России", "brand:wikidata": "Q1502763", "brand:wikipedia": "ru:Почта России", "name": "Почта России"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/СДЭК": {"name": "СДЭК", "icon": "maki-post", "imageURL": "https://graph.facebook.com/edostavka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28665980", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "СДЭК", "brand:wikidata": "Q28665980", "brand:wikipedia": "ru:СДЭК", "name": "СДЭК"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/Укрпошта": {"name": "Укрпошта", "icon": "maki-post", "imageURL": "https://graph.facebook.com/ukrposhta/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2470783", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "Укрпошта", "brand:wikidata": "Q2470783", "brand:wikipedia": "en:Ukrposhta", "name": "Укрпошта"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/ヤマト運輸": {"name": "ヤマト運輸", "icon": "maki-post", "imageURL": "https://graph.facebook.com/YamatoTransportCoLtd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6584353", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "ヤマト運輸", "brand:en": "Yamato Transport", "brand:ja": "ヤマト運輸", "brand:wikidata": "Q6584353", "brand:wikipedia": "ja:ヤマト運輸", "name": "ヤマト運輸", "name:en": "Yamato Transport", "name:ja": "ヤマト運輸"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/中国邮政": {"name": "中国邮政", "icon": "maki-post", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1066476", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "中国邮政", "brand:en": "China Post", "brand:wikidata": "Q1066476", "brand:wikipedia": "en:China Post", "name": "中国邮政", "name:en": "China Post"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/佐川急便": {"name": "佐川急便", "icon": "maki-post", "imageURL": "https://graph.facebook.com/SAGAWAexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7399082", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "佐川急便", "brand:en": "Sagawa Express", "brand:ja": "佐川急便", "brand:wikidata": "Q7399082", "brand:wikipedia": "ja:佐川急便", "name": "佐川急便", "name:en": "Sagawa Express", "name:ja": "佐川急便"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/post_office/日本郵便": {"name": "日本郵便", "icon": "maki-post", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FJapan%20Post%20Service%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11509260", "amenity": "post_office"}, "addTags": {"amenity": "post_office", "brand": "日本郵便", "brand:en": "Japan Post", "brand:ja": "日本郵便", "brand:wikidata": "Q11509260", "brand:wikipedia": "ja:日本郵便", "name": "日本郵便", "name:en": "Japan Post", "name:ja": "日本郵便", "short_name:en": "JP"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/prep_school/Huntington Learning Center": {"name": "Huntington Learning Center", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/HuntingtonHelps/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5945399", "amenity": "prep_school"}, "addTags": {"amenity": "prep_school", "brand": "Huntington Learning Center", "brand:wikidata": "Q5945399", "brand:wikipedia": "en:Huntington Learning Center", "name": "Huntington Learning Center"}, "countryCodes": ["us"], "terms": ["huntington"], "matchScore": 2, "suggestion": true}, - "amenity/prep_school/KUMON (Japan)": {"name": "KUMON (Japan)", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/kumon/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q142054", "amenity": "prep_school"}, "addTags": {"amenity": "prep_school", "brand": "KUMON", "brand:wikidata": "Q142054", "brand:wikipedia": "ja:日本公文教育研究会", "name": "KUMON", "name:ja": "公文", "name:ja-Hira": "くもん", "name:ja-Latn": "KUMON"}, "countryCodes": ["jp"], "terms": ["くもん", "公文"], "matchScore": 2, "suggestion": true}, - "amenity/prep_school/Kumon (International)": {"name": "Kumon (International)", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/kumon/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q142054", "amenity": "prep_school"}, "addTags": {"amenity": "prep_school", "brand": "Kumon", "brand:wikidata": "Q142054", "brand:wikipedia": "en:Kumon", "name": "Kumon"}, "terms": ["kumon learning center"], "matchScore": 2, "suggestion": true}, - "amenity/prep_school/Mathnasium": {"name": "Mathnasium", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/mathnasium/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6787302", "amenity": "prep_school"}, "addTags": {"amenity": "prep_school", "brand": "Mathnasium", "brand:wikidata": "Q6787302", "brand:wikipedia": "en:Mathnasium", "name": "Mathnasium"}, "countryCodes": ["ca", "us"], "terms": ["mathnasium learning center"], "matchScore": 2, "suggestion": true}, - "amenity/prep_school/Russian School of Mathematics": {"name": "Russian School of Mathematics", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/RussianMath/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7382122", "amenity": "prep_school"}, "addTags": {"amenity": "prep_school", "brand": "Russian School of Mathematics", "brand:wikidata": "Q7382122", "brand:wikipedia": "en:Russian School of Mathematics", "name": "Russian School of Mathematics"}, "countryCodes": ["us"], "terms": ["rsm", "russian school of math"], "matchScore": 2, "suggestion": true}, - "amenity/prep_school/Schülerhilfe": {"name": "Schülerhilfe", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/Schuelerhilfe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2259702", "amenity": "prep_school"}, "addTags": {"amenity": "prep_school", "brand": "Schülerhilfe", "brand:wikidata": "Q2259702", "brand:wikipedia": "de:Schülerhilfe", "name": "Schülerhilfe"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/prep_school/Studienkreis": {"name": "Studienkreis", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/Studienkreis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2358555", "amenity": "prep_school"}, "addTags": {"amenity": "prep_school", "brand": "Studienkreis", "brand:wikidata": "Q2358555", "brand:wikipedia": "de:Studienkreis", "name": "Studienkreis"}, "countryCodes": ["at", "ch", "de", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/prep_school/Sylvan": {"name": "Sylvan", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/SylvanLearning/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7660663", "amenity": "prep_school"}, "addTags": {"alt_name": "Sylvan Learning Center", "amenity": "prep_school", "brand": "Sylvan", "brand:wikidata": "Q7660663", "brand:wikipedia": "en:Sylvan Learning", "name": "Sylvan"}, "countryCodes": ["us"], "terms": ["sylvan learning"], "matchScore": 2, "suggestion": true}, - "amenity/prep_school/栄光ゼミナール": {"name": "栄光ゼミナール", "icon": "temaki-school", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEikoh%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11535632", "amenity": "prep_school"}, "addTags": {"amenity": "prep_school", "brand": "栄光ゼミナール", "brand:ja": "栄光ゼミナール", "brand:ja-Hira": "えいこうゼミナール", "brand:ja-Latn": "Eikō Zemināru", "brand:wikidata": "Q11535632", "brand:wikipedia": "ja:栄光ゼミナール", "name": "栄光ゼミナール", "name:en": "Eikoh Seminar", "name:ja": "栄光ゼミナール", "name:ja-Hira": "えいこうゼミナール", "name:ja-Latn": "Eikō Zemināru"}, "countryCodes": ["jp"], "terms": ["eikoh"], "matchScore": 2, "suggestion": true}, - "amenity/pub/Walkabout": {"name": "Walkabout", "icon": "maki-beer", "imageURL": "https://graph.facebook.com/walkiebirmingham/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7962149", "amenity": "pub"}, "addTags": {"amenity": "pub", "brand": "Walkabout", "brand:wikidata": "Q7962149", "brand:wikipedia": "en:Walkabout (pub chain)", "name": "Walkabout"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pub/つぼ八": {"name": "つぼ八", "icon": "maki-beer", "imageURL": "https://graph.facebook.com/Tsubo8sadosawata/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11272459", "amenity": "pub"}, "addTags": {"amenity": "pub", "brand": "つぼ八", "brand:en": "Tsubohachi", "brand:ja": "つぼ八", "brand:wikidata": "Q11272459", "brand:wikipedia": "ja:つぼ八", "name": "つぼ八", "name:en": "Tsubohachi", "name:ja": "つぼ八"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pub/はなの舞": {"name": "はなの舞", "icon": "maki-beer", "imageURL": "https://graph.facebook.com/Hananomai.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88384850", "amenity": "pub"}, "addTags": {"amenity": "pub", "brand": "はなの舞", "brand:en": "Hananomai", "brand:ja": "はなの舞", "brand:wikidata": "Q88384850", "name": "はなの舞", "name:en": "Hananomai", "name:ja": "はなの舞"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pub/白木屋": {"name": "白木屋", "icon": "maki-beer", "imageURL": "https://graph.facebook.com/shirokiya/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q489746", "amenity": "pub"}, "addTags": {"amenity": "pub", "brand": "白木屋", "brand:en": "Shirokiya", "brand:ja": "白木屋", "brand:wikidata": "Q489746", "brand:wikipedia": "ja:白木屋 (居酒屋)", "name": "白木屋", "name:en": "Shirokiya", "name:ja": "白木屋"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pub/笑笑": {"name": "笑笑", "icon": "maki-beer", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87214327", "amenity": "pub"}, "addTags": {"amenity": "pub", "brand": "笑笑", "brand:en": "Warawara", "brand:ja": "笑笑", "brand:wikidata": "Q87214327", "name": "笑笑", "name:en": "Warawara", "name:ja": "笑笑"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pub/魚民": {"name": "魚民", "icon": "maki-beer", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11673981", "amenity": "pub"}, "addTags": {"amenity": "pub", "brand": "魚民", "brand:en": "Uotami", "brand:ja": "魚民", "brand:wikidata": "Q11673981", "name": "魚民", "name:en": "Uotami", "name:ja": "魚民"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/pub/鳥貴族": {"name": "鳥貴族", "icon": "maki-beer", "imageURL": "https://graph.facebook.com/torikizoku/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11675129", "amenity": "pub"}, "addTags": {"amenity": "pub", "brand": "鳥貴族", "brand:en": "Torikizoku", "brand:ja": "鳥貴族", "brand:wikidata": "Q11675129", "brand:wikipedia": "ja:鳥貴族", "name": "鳥貴族", "name:en": "Torikizoku", "name:ja": "鳥貴族"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/public_bookcase/Little Free Library": {"name": "Little Free Library", "icon": "maki-library", "imageURL": "https://graph.facebook.com/LittleFreeLibrary/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6650101", "amenity": "public_bookcase"}, "addTags": {"amenity": "public_bookcase", "brand": "Little Free Library", "brand:wikidata": "Q6650101", "brand:wikipedia": "en:Little Free Library", "name": "Little Free Library"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/recycling/Planet Aid": {"name": "Planet Aid", "icon": "maki-recycling", "imageURL": "https://graph.facebook.com/Planet.Aid/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7201055", "amenity": "recycling"}, "addTags": {"amenity": "recycling", "brand": "Planet Aid", "brand:wikidata": "Q7201055", "brand:wikipedia": "en:Planet Aid", "name": "Planet Aid", "recycling:clothes": "yes", "recycling:shoes": "yes", "recycling_type": "container"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/recycling/Saint Vincent de Paul": {"name": "Saint Vincent de Paul", "icon": "maki-recycling", "imageURL": "https://graph.facebook.com/186921794657204/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66581837", "amenity": "recycling"}, "addTags": {"amenity": "recycling", "brand": "Saint Vincent de Paul", "brand:wikidata": "Q66581837", "name": "Saint Vincent de Paul", "recycling:clothes": "yes", "recycling:shoes": "yes", "short_name": "SVdP"}, "countryCodes": ["us"], "terms": ["st vincent de paul"], "matchScore": 2, "suggestion": true}, - "amenity/recycling/The Salvation Army": {"name": "The Salvation Army", "icon": "maki-recycling", "imageURL": "https://graph.facebook.com/SalvationArmyUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q188307", "amenity": "recycling"}, "addTags": {"amenity": "recycling", "brand": "The Salvation Army", "brand:wikidata": "Q188307", "brand:wikipedia": "en:The Salvation Army", "name": "The Salvation Army", "recycling:clothes": "yes"}, "countryCodes": ["us"], "terms": ["salvation army"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/100 Montaditos": {"name": "100 Montaditos", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/100MontaditosSpain/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8355805", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "100 Montaditos", "brand:wikidata": "Q8355805", "brand:wikipedia": "en:Cervecería 100 Montaditos", "cuisine": "sandwich", "name": "100 Montaditos"}, "countryCodes": ["es", "it", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/3 Brewers (On)": {"name": "3 Brewers (On)", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/3Brasseursca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3230326", "amenity": "restaurant", "cuisine": "burger;pizza;seafood"}, "addTags": {"amenity": "restaurant", "brand": "3 Brasseurs", "brand:wikidata": "Q3230326", "brand:wikipedia": "fr:Les 3 Brasseurs", "cuisine": "burger;pizza;seafood", "name": "3 Brewers", "name:fr": "3 Brasseurs", "official_name": "Les 3 Brasseurs"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/ASK Italian": {"name": "ASK Italian", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ASKItalian/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4807056", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "ASK Italian", "brand:wikidata": "Q4807056", "brand:wikipedia": "en:ASK Italian", "cuisine": "italian", "name": "ASK Italian"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Amici's East Coast Pizzeria": {"name": "Amici's East Coast Pizzeria", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/AmicisBayArea/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66133409", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Amici", "brand:wikidata": "Q66133409", "cuisine": "pizza", "name": "Amici"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Applebee's": {"name": "Applebee's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Applebeesmundoe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q621532", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Applebee's Neighborhood Grill & Bar", "brand:wikidata": "Q621532", "brand:wikipedia": "en:Applebee's", "cuisine": "american", "name": "Applebee's", "official_name": "Applebee's Neighborhood Grill & Bar"}, "reference": {"key": "cuisine", "value": "american"}, "terms": ["applebees bar and grill", "applebees grill and bar", "applebees neighborhood bar and grill"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Arooga's": {"name": "Arooga's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/aroogas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72963322", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Arooga's", "brand:wikidata": "Q72963322", "cuisine": "american", "name": "Arooga's", "official_name": "Arooga's Grille House and Sports Bar"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Autogrill": {"name": "Autogrill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/AutogrillOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q786790", "amenity": "restaurant", "cuisine": "italian;regional"}, "addTags": {"amenity": "restaurant", "brand": "Autogrill", "brand:wikidata": "Q786790", "brand:wikipedia": "en:Autogrill", "cuisine": "italian;regional", "name": "Autogrill"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["at", "es", "fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/BBB": {"name": "BBB", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/BurgusBurgerBar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64760094", "amenity": "restaurant"}, "addTags": {"alt_name": "Burgus Burger Bar", "alt_name:en": "Burgus Burger Bar", "amenity": "restaurant", "brand": "Burgus Burger Bar", "brand:en": "Burgus Burger Bar", "brand:wikidata": "Q64760094", "cuisine": "burger", "name": "BBB", "name:en": "BBB"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/BJ's": {"name": "BJ's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/BJsRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4835755", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "BJ's", "brand:wikidata": "Q4835755", "brand:wikipedia": "en:BJ's Restaurants", "cuisine": "american", "name": "BJ's", "official_name": "BJ's Restaurant & Brewhouse"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Bella Italia": {"name": "Bella Italia", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bellaitalia.co.uk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4883362", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Bella Italia", "brand:wikidata": "Q4883362", "brand:wikipedia": "en:Bella Italia", "cuisine": "italian", "name": "Bella Italia"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/Benihana": {"name": "Benihana", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/Benihana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4887996", "amenity": "restaurant", "cuisine": "japanese;teppanyaki;steak"}, "addTags": {"amenity": "restaurant", "brand": "Benihana", "brand:wikidata": "Q4887996", "brand:wikipedia": "en:Benihana", "cuisine": "japanese;teppanyaki;steak", "name": "Benihana"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["aw", "br", "ca", "pa", "sv", "us"], "terms": ["benihana of tokyo"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Bertucci's": {"name": "Bertucci's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Bertuccis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4895917", "amenity": "restaurant", "cuisine": "pizza;italian"}, "addTags": {"amenity": "restaurant", "brand": "Bertucci's", "brand:wikidata": "Q4895917", "brand:wikipedia": "en:Bertucci's", "cuisine": "pizza;italian", "name": "Bertucci's"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Big Boy": {"name": "Big Boy", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bigboyrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4386779", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Big Boy", "brand:wikidata": "Q4386779", "brand:wikipedia": "en:Big Boy Restaurants", "cuisine": "burger", "name": "Big Boy", "official_name": "Big Boy Restaurant & Bakery"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Bill's": {"name": "Bill's", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1234884528231124992/PDxR7FCh_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q47012702", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Bill's", "brand:wikidata": "Q47012702", "brand:wikipedia": "en:Bill's", "cuisine": "british", "name": "Bill's"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Black": {"name": "Black", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/blackbarnburger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64760158", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Black Bar Burger", "brand:en": "Black Bar Burger", "brand:he": "בלאק בורגר", "brand:wikidata": "Q64760158", "cuisine": "burger", "name": "Black", "name:en": "Black", "name:he": "בלאק"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/steakhouse/Black Angus": {"name": "Black Angus", "icon": "maki-slaughterhouse", "imageURL": "https://graph.facebook.com/BlackAngusSteakhouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4920269", "amenity": "restaurant", "cuisine": "steakhouse"}, "addTags": {"amenity": "restaurant", "brand": "Black Angus", "brand:wikidata": "Q4920269", "brand:wikipedia": "en:Black Angus Steakhouse", "cuisine": "steakhouse", "name": "Black Angus"}, "reference": {"key": "cuisine", "value": "steak_house"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Black Bear Diner": {"name": "Black Bear Diner", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/BlackBearDiner/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4920343", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Black Bear Diner", "brand:wikidata": "Q4920343", "brand:wikipedia": "en:Black Bear Diner", "cuisine": "american", "name": "Black Bear Diner"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Blaze Pizza": {"name": "Blaze Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/BlazePizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23016666", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Blaze Pizza", "brand:wikidata": "Q23016666", "brand:wikipedia": "en:Blaze Pizza", "cuisine": "pizza", "name": "Blaze Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["bh", "ca", "kw", "sa", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Bob Evans": {"name": "Bob Evans", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bobevans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4932386", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Bob Evans", "brand:wikidata": "Q4932386", "brand:wikipedia": "en:Bob Evans Restaurants", "cuisine": "american", "name": "Bob Evans"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Bonanza Steakhouse": {"name": "Bonanza Steakhouse", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ponbonsteakhouses/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64045992", "amenity": "restaurant", "cuisine": "american;steak;buffet"}, "addTags": {"amenity": "restaurant", "brand": "Bonanza Steakhouse", "brand:wikidata": "Q64045992", "cuisine": "american;steak;buffet", "name": "Bonanza Steakhouse"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": ["bonanza"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/sushi/Bonchon Chicken": {"name": "Bonchon Chicken", "icon": "temaki-temaki", "imageURL": "https://pbs.twimg.com/profile_images/1014893960551174149/cVQR1ZDY_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4941248", "amenity": "restaurant", "cuisine": "chicken;korean;sushi"}, "addTags": {"amenity": "restaurant", "brand": "Bonchon Chicken", "brand:wikidata": "Q4941248", "brand:wikipedia": "en:Bonchon Chicken", "cuisine": "chicken;korean;sushi", "name": "Bonchon Chicken"}, "reference": {"key": "cuisine", "value": "sushi"}, "countryCodes": ["bh", "kh", "kr", "kw", "my", "ph", "sg", "th", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/seafood/Bonefish Grill": {"name": "Bonefish Grill", "icon": "maki-restaurant-seafood", "imageURL": "https://graph.facebook.com/bonefishgrill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4941599", "amenity": "restaurant", "cuisine": "seafood"}, "addTags": {"amenity": "restaurant", "brand": "Bonefish Grill", "brand:wikidata": "Q4941599", "brand:wikipedia": "en:Bonefish Grill", "cuisine": "seafood", "name": "Bonefish Grill"}, "reference": {"key": "cuisine", "value": "seafood"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Boston Pizza": {"name": "Boston Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/BostonPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q894578", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Boston Pizza", "brand:wikidata": "Q894578", "brand:wikipedia": "en:Boston Pizza", "cuisine": "pizza", "name": "Boston Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Bravo": {"name": "Bravo", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bravoitalian/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64055574", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"alt_name": "Bravo Cucina Italiana", "amenity": "restaurant", "brand": "Bravo", "brand:wikidata": "Q64055574", "cuisine": "italian", "name": "Bravo"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Brewers Fayre": {"name": "Brewers Fayre", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1197527556729319427/uj4Q0iJF_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4962678", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Brewers Fayre", "brand:wikidata": "Q4962678", "brand:wikipedia": "en:Brewers Fayre", "cuisine": "british", "name": "Brewers Fayre"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Brio": {"name": "Brio", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/brioitalian/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64055835", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"alt_name": "Brio Tuscan Grille", "amenity": "restaurant", "brand": "Brio", "brand:wikidata": "Q64055835", "cuisine": "italian", "name": "Brio"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/seafood/Bubba Gump Shrimp Company": {"name": "Bubba Gump Shrimp Company", "icon": "maki-restaurant-seafood", "imageURL": "https://graph.facebook.com/bubbagumprestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q50024", "amenity": "restaurant", "cuisine": "seafood"}, "addTags": {"amenity": "restaurant", "brand": "Bubba Gump Shrimp Company", "brand:wikidata": "Q50024", "brand:wikipedia": "en:Bubba Gump Shrimp Company", "cuisine": "seafood", "name": "Bubba Gump Shrimp Company"}, "reference": {"key": "cuisine", "value": "seafood"}, "countryCodes": ["ca", "co", "gb", "hk", "id", "jp", "mp", "mx", "ph", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Buca di Beppo": {"name": "Buca di Beppo", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bucadibeppo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4982340", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Buca di Beppo", "brand:wikidata": "Q4982340", "brand:wikipedia": "en:Buca di Beppo", "cuisine": "italian", "name": "Buca di Beppo"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Bucking Bull": {"name": "Bucking Bull", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/BuckingBullAustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18208286", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Bucking Bull", "brand:wikidata": "Q18208286", "brand:wikipedia": "en:Bucking Bull", "cuisine": "steak_house", "name": "Bucking Bull"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Buffalo Grill": {"name": "Buffalo Grill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/buffalogrill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q944655", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Buffalo Grill", "brand:wikidata": "Q944655", "brand:wikipedia": "en:Buffalo Grill", "cuisine": "steak_house", "name": "Buffalo Grill"}, "countryCodes": ["es", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Buffalo Wild Wings": {"name": "Buffalo Wild Wings", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/BuffaloWildWings/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q509255", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Buffalo Wild Wings", "brand:wikidata": "Q509255", "brand:wikipedia": "en:Buffalo Wild Wings", "cuisine": "wings", "name": "Buffalo Wild Wings"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Buffalo Wings & Rings": {"name": "Buffalo Wings & Rings", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/wingsandrings/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4985900", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Buffalo Wings & Rings", "brand:wikidata": "Q4985900", "brand:wikipedia": "en:Buffalo Wings & Rings", "cuisine": "wings", "name": "Buffalo Wings & Rings", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Byron": {"name": "Byron", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/byronrestaurant/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16828673", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Byron", "brand:wikidata": "Q16828673", "brand:wikipedia": "en:Byron Hamburgers", "cuisine": "burger", "name": "Byron"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/mexican/Cafe Rio": {"name": "Cafe Rio", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/CafeRio/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5017108", "amenity": "restaurant", "cuisine": "mexican"}, "addTags": {"amenity": "restaurant", "brand": "Cafe Rio", "brand:wikidata": "Q5017108", "brand:wikipedia": "en:Cafe Rio", "cuisine": "mexican", "name": "Cafe Rio"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/french/Café Rouge": {"name": "Café Rouge", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1113010856487419904/JzwWNWrF_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5017261", "amenity": "restaurant", "cuisine": "french"}, "addTags": {"amenity": "restaurant", "brand": "Café Rouge", "brand:wikidata": "Q5017261", "brand:wikipedia": "en:Café Rouge", "cuisine": "french", "name": "Café Rouge"}, "reference": {"key": "cuisine", "value": "french"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/California Pizza Kitchen": {"name": "California Pizza Kitchen", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/californiapizzakitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15109854", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "California Pizza Kitchen", "brand:wikidata": "Q15109854", "brand:wikipedia": "en:California Pizza Kitchen", "cuisine": "pizza", "name": "California Pizza Kitchen"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/french/Campanile": {"name": "Campanile", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/campanile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2412064", "amenity": "restaurant", "cuisine": "french"}, "addTags": {"amenity": "restaurant", "brand": "Campanile", "brand:wikidata": "Q2412064", "brand:wikipedia": "fr:Campanile (chaîne d'hôtels)", "cuisine": "french", "name": "Campanile"}, "reference": {"key": "cuisine", "value": "french"}, "countryCodes": ["fr", "gb", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Carluccio's": {"name": "Carluccio's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/carluccios/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25111797", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Carluccio's", "brand:wikidata": "Q25111797", "brand:wikipedia": "en:Carluccio's Ltd", "cuisine": "italian", "name": "Carluccio's"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Carrabba's Italian Grill": {"name": "Carrabba's Italian Grill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Carrabbas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5045999", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Carrabba's Italian Grill", "brand:wikidata": "Q5045999", "brand:wikipedia": "en:Carrabba's Italian Grill", "cuisine": "italian", "name": "Carrabba's Italian Grill"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Cheddar's": {"name": "Cheddar's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/CheddarsScratchKitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5089187", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Cheddar's", "brand:wikidata": "Q5089187", "brand:wikipedia": "en:Cheddar's Scratch Kitchen", "cuisine": "american", "name": "Cheddar's", "official_name": "Cheddar's Scratch Kitchen"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Cheeburger Cheeburger": {"name": "Cheeburger Cheeburger", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/136947372998541/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5089247", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Cheeburger Cheeburger", "brand:wikidata": "Q5089247", "brand:wikipedia": "en:Cheeburger Cheeburger", "cuisine": "burger", "name": "Cheeburger Cheeburger"}, "countryCodes": ["ca", "sa", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/mexican/Chevys": {"name": "Chevys", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/ChevysFreshMex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5094466", "amenity": "restaurant", "cuisine": "mexican"}, "addTags": {"amenity": "restaurant", "brand": "Chevys Fresh Mex", "brand:wikidata": "Q5094466", "brand:wikipedia": "en:Chevys Fresh Mex", "cuisine": "mexican", "name": "Chevys", "official_name": "Chevys Fresh Mex"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Chili's": {"name": "Chili's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Chilis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1072948", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Chili's", "brand:wikidata": "Q1072948", "brand:wikipedia": "en:Chili's", "cuisine": "tex-mex", "name": "Chili's", "official_name": "Chili's Grill & Bar"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Chiquito": {"name": "Chiquito", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/chiquito.restaurant/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5101775", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Chiquito", "brand:wikidata": "Q5101775", "brand:wikipedia": "en:Chiquito (restaurant)", "cuisine": "tex-mex", "name": "Chiquito"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Chuck E. Cheese's": {"name": "Chuck E. Cheese's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/ChuckECheese/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2438391", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Chuck E. Cheese's", "brand:wikidata": "Q2438391", "brand:wikipedia": "en:Chuck E. Cheese's", "cuisine": "pizza", "leisure": "amusement_arcade", "name": "Chuck E. Cheese's"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca", "us"], "terms": ["chuck e cheese"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Chuy's": {"name": "Chuy's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Chuys.Restaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5118415", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Chuy's", "brand:wikidata": "Q5118415", "brand:wikipedia": "en:Chuy's", "cuisine": "tex-mex", "name": "Chuy's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Cici's Pizza": {"name": "Cici's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/Cicis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2972189", "amenity": "restaurant", "cuisine": "pizza;buffet"}, "addTags": {"amenity": "restaurant", "brand": "Cici's Pizza", "brand:wikidata": "Q2972189", "brand:wikipedia": "en:Cicis", "cuisine": "pizza;buffet", "name": "Cici's Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Claim Jumper": {"name": "Claim Jumper", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ClaimJumperRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5125081", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Claim Jumper", "brand:wikidata": "Q5125081", "brand:wikipedia": "en:Claim Jumper", "cuisine": "american", "name": "Claim Jumper"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Coast to Coast": {"name": "Coast to Coast", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/coasttocoastrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22000729", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Coast to Coast", "brand:wikidata": "Q22000729", "brand:wikipedia": "en:Coast to Coast (restaurant)", "cuisine": "american", "name": "Coast to Coast"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Copeland's": {"name": "Copeland's", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1245887210362146817/17A2W1jm_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5168346", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Copeland's", "brand:wikidata": "Q5168346", "brand:wikipedia": "en:Copeland's", "cuisine": "american", "name": "Copeland's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Cora (Quebec)": {"name": "Cora (Quebec)", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/corarestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2996960", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Cora", "brand:wikidata": "Q2996960", "brand:wikipedia": "fr:Cora (chaîne de restaurants)", "cuisine": "breakfast", "name": "Cora"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Cora (non-Quebec)": {"name": "Cora (non-Quebec)", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/corarestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2996960", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Cora", "brand:wikidata": "Q2996960", "brand:wikipedia": "en:Cora (restaurant)", "cuisine": "breakfast", "name": "Cora"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Cosmo": {"name": "Cosmo", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/CosmoRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5174239", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Cosmo", "brand:wikidata": "Q5174239", "brand:wikipedia": "en:Cosmo (restaurant)", "cuisine": "international", "name": "Cosmo"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Country Pride": {"name": "Country Pride", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/CountryPrideRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64051992", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Country Pride", "brand:wikidata": "Q64051992", "cuisine": "american", "name": "Country Pride"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": ["country pride restaurant"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Country Waffles": {"name": "Country Waffles", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q86151490", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Country Waffles", "brand:wikidata": "Q86151490", "cuisine": "breakfast", "name": "Country Waffles"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/french/Courtepaille": {"name": "Courtepaille", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/GrillCourtepaille/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3116688", "amenity": "restaurant", "cuisine": "french"}, "addTags": {"amenity": "restaurant", "brand": "Courtepaille", "brand:wikidata": "Q3116688", "brand:wikipedia": "fr:Grill Courtepaille", "cuisine": "french", "name": "Courtepaille"}, "reference": {"key": "cuisine", "value": "french"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Cracker Barrel": {"name": "Cracker Barrel", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/crackerbarrel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4492609", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Cracker Barrel", "brand:wikidata": "Q4492609", "brand:wikipedia": "en:Cracker Barrel", "cuisine": "american", "name": "Cracker Barrel", "official_name": "Cracker Barrel Old Country Store"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/french/Côte Brasserie": {"name": "Côte Brasserie", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/cotebrasserie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48699908", "amenity": "restaurant", "cuisine": "french"}, "addTags": {"amenity": "restaurant", "brand": "Côte Brasserie", "brand:wikidata": "Q48699908", "brand:wikipedia": "en:Côte", "cuisine": "french", "name": "Côte Brasserie"}, "reference": {"key": "cuisine", "value": "french"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Dave & Buster's": {"name": "Dave & Buster's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/daveandbusters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5228205", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Dave & Buster's", "brand:wikidata": "Q5228205", "brand:wikipedia": "en:Dave & Buster's", "cuisine": "american", "leisure": "amusement_arcade", "name": "Dave & Buster's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Denny's": {"name": "Denny's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/dennys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1189695", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Denny's", "brand:wikidata": "Q1189695", "brand:wikipedia": "en:Denny's", "cuisine": "american", "name": "Denny's"}, "reference": {"key": "cuisine", "value": "american"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Dickey's Barbecue Pit": {"name": "Dickey's Barbecue Pit", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/dickeysbarbecuepit/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19880747", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Dickey's Barbecue Pit", "brand:wikidata": "Q19880747", "brand:wikipedia": "en:Dickey's Barbecue Pit", "cuisine": "barbecue", "name": "Dickey's Barbecue Pit"}, "countryCodes": ["us"], "terms": ["dickeys barbecue"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Din Tai Fung": {"name": "Din Tai Fung", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/dintaifungUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q699142", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Din Tai Fung", "brand:wikidata": "Q699142", "brand:wikipedia": "en:Din Tai Fung", "cuisine": "taiwanese", "name": "Din Tai Fung", "name:zh": "鼎泰丰"}, "countryCodes": ["ae", "au", "gb", "hk", "id", "jp", "kr", "mo", "my", "ph", "sg", "th", "tw", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Donatos Pizza": {"name": "Donatos Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/DonatosPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1240741", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Donatos Pizza", "brand:wikidata": "Q1240741", "brand:wikipedia": "en:Donatos Pizza", "cuisine": "pizza", "name": "Donatos Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": ["donatos"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/East Side Mario's": {"name": "East Side Mario's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/eastsidemarios/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5329375", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "East Side Mario's", "brand:wikidata": "Q5329375", "brand:wikipedia": "en:East Side Mario's", "cuisine": "italian", "name": "East Side Mario's"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Eat'n Park": {"name": "Eat'n Park", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/EatnParkRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5331211", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Eat'n Park", "brand:wikidata": "Q5331211", "brand:wikipedia": "en:Eat'n Park", "cuisine": "american", "name": "Eat'n Park"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Elephant Bar": {"name": "Elephant Bar", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ElephantBar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5359302", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Elephant Bar", "brand:wikidata": "Q5359302", "brand:wikipedia": "en:Elephant Bar", "cuisine": "american", "name": "Elephant Bar"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Famous Dave's": {"name": "Famous Dave's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/famousdaves/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5433448", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Famous Dave's", "brand:wikidata": "Q5433448", "brand:wikipedia": "en:Famous Dave's", "cuisine": "barbecue", "name": "Famous Dave's"}, "countryCodes": ["us"], "terms": ["famous daves bbq"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Fatz": {"name": "Fatz", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5424504", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Fatz", "brand:wikidata": "Q5424504", "brand:wikipedia": "en:Fatz", "cuisine": "american", "name": "Fatz"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/First Watch": {"name": "First Watch", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/FirstWatch/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5454064", "amenity": "restaurant", "cuisine": "american;breakfast"}, "addTags": {"amenity": "restaurant", "brand": "First Watch", "brand:wikidata": "Q5454064", "brand:wikipedia": "en:First Watch (restaurant chain)", "cuisine": "american;breakfast", "name": "First Watch"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/french/Flunch": {"name": "Flunch", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/flunch/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q629326", "amenity": "restaurant", "cuisine": "french"}, "addTags": {"amenity": "restaurant", "brand": "Flunch", "brand:wikidata": "Q629326", "brand:wikipedia": "en:Flunch", "cuisine": "french", "name": "Flunch"}, "reference": {"key": "cuisine", "value": "french"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Foster's Hollywood": {"name": "Foster's Hollywood", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/fostershollywood/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5864366", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Foster's Hollywood", "brand:wikidata": "Q5864366", "brand:wikipedia": "en:Foster's Hollywood", "cuisine": "american", "name": "Foster's Hollywood"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Frankie & Benny's": {"name": "Frankie & Benny's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/frankiebennys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5490892", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Frankie & Benny's", "brand:wikidata": "Q5490892", "brand:wikipedia": "en:Frankie & Benny's", "cuisine": "american", "name": "Frankie & Benny's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Freshii": {"name": "Freshii", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/freshii/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5503051", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Freshii", "brand:wikidata": "Q5503051", "brand:wikipedia": "en:Freshii", "cuisine": "salad", "name": "Freshii"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Friendly's": {"name": "Friendly's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/friendlys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1464513", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Friendly's", "brand:wikidata": "Q1464513", "brand:wikipedia": "en:Friendly's", "cuisine": "american", "name": "Friendly's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Frisch's Big Boy": {"name": "Frisch's Big Boy", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/frischsbigboy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5504660", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Frisch's Big Boy", "brand:wikidata": "Q5504660", "brand:wikipedia": "en:Frisch's", "cuisine": "burger", "name": "Frisch's Big Boy", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Fuddruckers": {"name": "Fuddruckers", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/fuddruckers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5507056", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Fuddruckers", "brand:wikidata": "Q5507056", "brand:wikipedia": "en:Fuddruckers", "cuisine": "burger", "name": "Fuddruckers"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Gatti's Pizza": {"name": "Gatti's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://pbs.twimg.com/profile_images/1034520805923684352/wc5SE5R6_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5527509", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Gatti's Pizza", "brand:wikidata": "Q5527509", "brand:wikipedia": "en:Gatti's Pizza", "cuisine": "pizza", "name": "Gatti's Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Giordano's Pizzeria": {"name": "Giordano's Pizzeria", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/giordanospizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5563393", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Giordano's Pizzeria", "brand:wikidata": "Q5563393", "brand:wikipedia": "en:Giordano's Pizzeria", "cuisine": "pizza", "name": "Giordano's Pizzeria"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Godfather's Pizza": {"name": "Godfather's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/godfatherspizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5576353", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Godfather's Pizza", "brand:wikidata": "Q5576353", "brand:wikipedia": "en:Godfather's Pizza", "cuisine": "pizza", "name": "Godfather's Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Golden Corral": {"name": "Golden Corral", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/goldencorral/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4039560", "amenity": "restaurant", "cuisine": "american;buffet"}, "addTags": {"amenity": "restaurant", "brand": "Golden Corral", "brand:wikidata": "Q4039560", "brand:wikipedia": "en:Golden Corral", "cuisine": "american;buffet", "name": "Golden Corral"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": ["golden corral buffet", "golden corral buffet and grill"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Gourmet Burger Kitchen": {"name": "Gourmet Burger Kitchen", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/gourmetburgerkitchen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5588445", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Gourmet Burger Kitchen", "brand:wikidata": "Q5588445", "brand:wikipedia": "en:Gourmet Burger Kitchen", "cuisine": "burger", "name": "Gourmet Burger Kitchen", "short_name": "GBK"}, "countryCodes": ["gb", "gr", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Grotto Pizza": {"name": "Grotto Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://pbs.twimg.com/profile_images/1189936353976496129/YXleniEP_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20709024", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Grotto Pizza", "brand:wikidata": "Q20709024", "brand:wikipedia": "en:Grotto Pizza", "cuisine": "pizza", "name": "Grotto Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Gusto (United Kingdom)": {"name": "Gusto (United Kingdom)", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1032934760136486914/_P4TfIUL_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66087781", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Gusto", "brand:wikidata": "Q66087781", "cuisine": "italian", "name": "Gusto"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/mexican/Guzman y Gomez": {"name": "Guzman y Gomez", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/guzmanygomez/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23019759", "amenity": "restaurant", "cuisine": "mexican"}, "addTags": {"amenity": "restaurant", "brand": "Guzman y Gomez", "brand:wikidata": "Q23019759", "brand:wikipedia": "en:Guzman y Gomez", "cuisine": "mexican", "name": "Guzman y Gomez"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["au", "jp", "sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Handmade Burger Co.": {"name": "Handmade Burger Co.", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/416588785059565/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56154673", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Handmade Burger Co.", "brand:wikidata": "Q56154673", "brand:wikipedia": "en:Handmade Burger Co", "cuisine": "burger", "name": "Handmade Burger Co."}, "countryCodes": ["gb"], "terms": ["handmade burger company"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Hans im Glück": {"name": "Hans im Glück", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/hansimglueck.burgergrill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22569868", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Hans im Glück", "brand:wikidata": "Q22569868", "brand:wikipedia": "de:Hans im Glück (Restaurantkette)", "cuisine": "burger", "name": "Hans im Glück"}, "countryCodes": ["at", "ch", "de", "sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Happy's Pizza": {"name": "Happy's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/EatHappysPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5652393", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Happy's Pizza", "brand:wikidata": "Q5652393", "brand:wikipedia": "en:Happy's Pizza", "cuisine": "pizza", "name": "Happy's Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Hard Rock Cafe": {"name": "Hard Rock Cafe", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/hardrock/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q918151", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Hard Rock Cafe", "brand:wikidata": "Q918151", "brand:wikipedia": "en:Hard Rock Cafe", "cuisine": "american", "name": "Hard Rock Cafe"}, "reference": {"key": "cuisine", "value": "american"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Harvester": {"name": "Harvester", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/harvesterrestaurant/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5676915", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Harvester", "brand:wikidata": "Q5676915", "brand:wikipedia": "en:Harvester (restaurant)", "cuisine": "american", "name": "Harvester"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Hippopotamus": {"name": "Hippopotamus", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Hippopotamus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3136174", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Hippopotamus", "brand:wikidata": "Q3136174", "brand:wikipedia": "fr:Hippopotamus (restaurant)", "cuisine": "steak_house", "name": "Hippopotamus"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Hog's Australia's Steakhouse": {"name": "Hog's Australia's Steakhouse", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/hogsbreath/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5876920", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Hog's Australia's Steakhouse", "brand:wikidata": "Q5876920", "brand:wikipedia": "en:Hog's Australia's Steakhouse", "cuisine": "steak_house", "name": "Hog's Australia's Steakhouse"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Hooters": {"name": "Hooters", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/hooters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1025921", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Hooters", "brand:wikidata": "Q1025921", "brand:wikipedia": "en:Hooters", "cuisine": "burger", "name": "Hooters"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/House of Blues": {"name": "House of Blues", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/HOBChicago/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q648898", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "House of Blues", "brand:wikidata": "Q648898", "brand:wikipedia": "en:House of Blues", "cuisine": "american", "name": "House of Blues"}, "reference": {"key": "cuisine", "value": "american"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Huddle House": {"name": "Huddle House", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/HuddleHouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5928324", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Huddle House", "brand:wikidata": "Q5928324", "brand:wikipedia": "en:Huddle House", "cuisine": "american", "name": "Huddle House"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Husky House": {"name": "Husky House", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/huskyenergy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q702049", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Husky", "brand:wikidata": "Q702049", "brand:wikipedia": "en:Husky Energy", "cuisine": "diner", "name": "Husky House"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/IHOP": {"name": "IHOP", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/IHOP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1185675", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "IHOP", "brand:wikidata": "Q1185675", "brand:wikipedia": "en:IHOP", "cuisine": "breakfast;pancake", "name": "IHOP"}, "terms": ["international house of pancakes"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/IL Патио": {"name": "IL Патио", "icon": "maki-restaurant", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRosInter.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4397763", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "IL Патио", "brand:wikidata": "Q4397763", "brand:wikipedia": "en:Росинтер", "cuisine": "italian", "name": "IL Патио"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Iron Skillet": {"name": "Iron Skillet", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/IronSkilletRestaurant/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64052855", "amenity": "restaurant", "cuisine": "american;buffet"}, "addTags": {"amenity": "restaurant", "brand": "Iron Skillet", "brand:wikidata": "Q64052855", "cuisine": "american;buffet", "name": "Iron Skillet"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": ["iron skillet restaurant"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Jack Astor's": {"name": "Jack Astor's", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1003974042351792130/-v3NNNEb_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6111066", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Jack Astor's", "brand:wikidata": "Q6111066", "brand:wikipedia": "en:Jack Astor's Bar and Grill", "cuisine": "american", "name": "Jack Astor's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Jason's Deli": {"name": "Jason's Deli", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/JasonsDeli/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16997641", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Jason's Deli", "brand:wikidata": "Q16997641", "brand:wikipedia": "en:Jason's Deli", "cuisine": "sandwich", "name": "Jason's Deli"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Jet's Pizza": {"name": "Jet's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/JetsPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16997713", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Jet's Pizza", "brand:wikidata": "Q16997713", "brand:wikipedia": "en:Jet's Pizza", "cuisine": "pizza", "name": "Jet's Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Jinya Ramen Bar": {"name": "Jinya Ramen Bar", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/916114096742793216/3VVRQT9R_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16997755", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Jinya Ramen Bar", "brand:wikidata": "Q16997755", "brand:wikipedia": "en:Jinya Ramen Bar", "cuisine": "ramen", "name": "Jinya Ramen Bar"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/seafood/Joe's Crab Shack": {"name": "Joe's Crab Shack", "icon": "maki-restaurant-seafood", "imageURL": "https://graph.facebook.com/joescrabshack/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6208210", "amenity": "restaurant", "cuisine": "seafood"}, "addTags": {"amenity": "restaurant", "brand": "Joe's Crab Shack", "brand:wikidata": "Q6208210", "brand:wikipedia": "en:Joe's Crab Shack", "cuisine": "seafood", "name": "Joe's Crab Shack"}, "reference": {"key": "cuisine", "value": "seafood"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Johnny Carino's": {"name": "Johnny Carino's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/carinositalian/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5039637", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Johnny Carino's", "brand:wikidata": "Q5039637", "brand:wikipedia": "en:Carino's Italian", "cuisine": "italian", "name": "Johnny Carino's"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["us"], "terms": ["carinios"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Johnny Rockets": {"name": "Johnny Rockets", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/johnnyrockets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1051593", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Johnny Rockets", "brand:wikidata": "Q1051593", "brand:wikipedia": "en:Johnny Rockets", "cuisine": "burger", "name": "Johnny Rockets"}, "terms": ["johnny rocket"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Kelsey's": {"name": "Kelsey's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/kelseysroadhouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6386459", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Kelsey's", "brand:wikidata": "Q6386459", "brand:wikipedia": "en:Kelseys Original Roadhouse", "cuisine": "american", "name": "Kelsey's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/sushi/Kona Grill": {"name": "Kona Grill", "icon": "temaki-temaki", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKona%20Grill%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6428706", "amenity": "restaurant", "cuisine": "sushi;cocktails"}, "addTags": {"amenity": "restaurant", "brand": "Kona Grill", "brand:wikidata": "Q6428706", "brand:wikipedia": "en:Kona Grill", "cuisine": "sushi;cocktails", "name": "Kona Grill"}, "reference": {"key": "cuisine", "value": "sushi"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/L'Osteria": {"name": "L'Osteria", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/losteria/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17323478", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "L'Osteria", "brand:wikidata": "Q17323478", "brand:wikipedia": "de:L’Osteria", "cuisine": "italian", "name": "L'Osteria"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["at", "ch", "cz", "de", "fr", "gb", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/La Boucherie": {"name": "La Boucherie", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/restaurantlaboucherie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21427479", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "La Boucherie", "brand:wikidata": "Q21427479", "brand:wikipedia": "fr:La Boucherie (restaurant)", "cuisine": "steak_house", "name": "La Boucherie"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/La Cage": {"name": "La Cage", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/lacagebrasseriesportive/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3206980", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "La Cage", "brand:wikidata": "Q3206980", "brand:wikipedia": "fr:La Cage aux Sports", "cuisine": "burger;chicken;sandwich;fish;pasta", "name": "La Cage"}, "countryCodes": ["ca"], "terms": ["la cage aux sports"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/LaRosa's Pizzeria": {"name": "LaRosa's Pizzeria", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/LaRosasPizzeria/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6460833", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "LaRosa's Pizzeria", "brand:wikidata": "Q6460833", "brand:wikipedia": "en:LaRosa's Pizzeria", "cuisine": "pizza", "name": "LaRosa's Pizzeria", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Ledo Pizza": {"name": "Ledo Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/ledopizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6512734", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Ledo Pizza", "brand:wikidata": "Q6512734", "brand:wikipedia": "en:Ledo Pizza", "cuisine": "pizza", "name": "Ledo Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/seafood/Legal Sea Foods": {"name": "Legal Sea Foods", "icon": "maki-restaurant-seafood", "imageURL": "https://graph.facebook.com/LegalSeaFoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6517417", "amenity": "restaurant", "cuisine": "seafood"}, "addTags": {"amenity": "restaurant", "brand": "Legal Sea Foods", "brand:wikidata": "Q6517417", "brand:wikipedia": "en:Legal Sea Foods", "cuisine": "seafood", "name": "Legal Sea Foods"}, "reference": {"key": "cuisine", "value": "seafood"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Les 3 Brasseurs (Qc,Br,Fr)": {"name": "Les 3 Brasseurs (Qc,Br,Fr)", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/3Brasseursca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3230326", "amenity": "restaurant", "cuisine": "burger;pizza;seafood"}, "addTags": {"amenity": "restaurant", "brand": "3 Brasseurs", "brand:wikidata": "Q3230326", "brand:wikipedia": "fr:Les 3 Brasseurs", "cuisine": "burger;pizza;seafood", "name": "3 Brasseurs", "name:en": "3 Brewers", "official_name": "Les 3 Brasseurs"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["br", "ca", "fr"], "terms": ["3 brasseurs"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Logan's Roadhouse": {"name": "Logan's Roadhouse", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Logans.Roadhouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6666872", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Logan's Roadhouse", "brand:wikidata": "Q6666872", "brand:wikipedia": "en:Logan's Roadhouse", "cuisine": "american", "name": "Logan's Roadhouse"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/LongHorn Steakhouse": {"name": "LongHorn Steakhouse", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/longhornsteakhouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3259007", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "LongHorn Steakhouse", "brand:wikidata": "Q3259007", "brand:wikipedia": "en:LongHorn Steakhouse", "cuisine": "steak_house", "name": "LongHorn Steakhouse"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Lou Malnati's Pizzeria": {"name": "Lou Malnati's Pizzeria", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/loumalnatis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6685628", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Lou Malnati's Pizzeria", "brand:wikidata": "Q6685628", "brand:wikipedia": "en:Lou Malnati's Pizzeria", "cuisine": "pizza", "name": "Lou Malnati's Pizzeria"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Loving Hut": {"name": "Loving Hut", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/LovingHutUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3491655", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Loving Hut", "brand:wikidata": "Q3491655", "brand:wikipedia": "en:Loving Hut", "cuisine": "international", "diet:vegan": "only", "diet:vegetarian": "only", "name": "Loving Hut"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Luby's": {"name": "Luby's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Lubys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6695701", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Luby's", "brand:wikidata": "Q6695701", "brand:wikipedia": "en:Luby's", "cuisine": "american", "name": "Luby's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Léon de Bruxelles": {"name": "Léon de Bruxelles", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/leondebruxellesofficiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21041507", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Léon de Bruxelles", "brand:wikidata": "Q21041507", "brand:wikipedia": "en:Léon de Bruxelles", "cuisine": "friture", "name": "Léon de Bruxelles"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/thai/MK Restaurants": {"name": "MK Restaurants", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/mkrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62075359", "amenity": "restaurant", "cuisine": "thai"}, "addTags": {"amenity": "restaurant", "brand": "MK Restaurants", "brand:wikidata": "Q62075359", "cuisine": "thai", "name": "MK Restaurants"}, "reference": {"key": "cuisine", "value": "thai"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/mexican/Mad Mex Fresh Mexican": {"name": "Mad Mex Fresh Mexican", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/madmex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19589766", "amenity": "restaurant", "cuisine": "mexican"}, "addTags": {"amenity": "restaurant", "brand": "Mad Mex Fresh Mexican Grill", "brand:wikidata": "Q19589766", "brand:wikipedia": "en:Mad Mex Fresh Mexican Grill", "cuisine": "mexican", "name": "Mad Mex Fresh Mexican Grill"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Marco's Pizza": {"name": "Marco's Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/MarcosPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6757382", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Marco's Pizza", "brand:wikidata": "Q6757382", "brand:wikipedia": "en:Marco's Pizza", "cuisine": "pizza", "name": "Marco's Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Marie Callender's": {"name": "Marie Callender's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/MarieCallenders/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6762784", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Marie Callender's", "brand:wikidata": "Q6762784", "brand:wikipedia": "en:Marie Callender's", "cuisine": "american", "name": "Marie Callender's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["mx", "us"], "terms": ["marie calendar", "marie calendar's", "marie callendar's"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/asian/Max's Restaurant": {"name": "Max's Restaurant", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/MaxsRestaurantNA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6794477", "amenity": "restaurant", "cuisine": "asian"}, "addTags": {"amenity": "restaurant", "brand": "Max's Restaurant", "brand:wikidata": "Q6794477", "brand:wikipedia": "en:Max's Restaurant", "cuisine": "asian", "name": "Max's Restaurant"}, "reference": {"key": "cuisine", "value": "asian"}, "countryCodes": ["ph"], "terms": ["max's"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/McAlister's Deli": {"name": "McAlister's Deli", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/mcalistersdeli/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17020829", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "McAlister's Deli", "brand:wikidata": "Q17020829", "brand:wikipedia": "en:McAlister's Deli", "cuisine": "sandwich", "name": "McAlister's Deli"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/seafood/McCormick & Schmick's": {"name": "McCormick & Schmick's", "icon": "maki-restaurant-seafood", "imageURL": "https://graph.facebook.com/mccormickandschmicks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6800562", "amenity": "restaurant", "cuisine": "seafood;steak"}, "addTags": {"amenity": "restaurant", "brand": "McCormick & Schmick's", "brand:wikidata": "Q6800562", "brand:wikipedia": "en:McCormick & Schmick's", "cuisine": "seafood;steak", "name": "McCormick & Schmick's"}, "reference": {"key": "cuisine", "value": "seafood"}, "countryCodes": ["us"], "terms": ["mccormick and schmick", "mccormick and schmicks grill"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Mellow Mushroom": {"name": "Mellow Mushroom", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/mellowmushroom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17021360", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Mellow Mushroom", "brand:wikidata": "Q17021360", "brand:wikipedia": "en:Mellow Mushroom", "cuisine": "pizza", "name": "Mellow Mushroom"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Mikes": {"name": "Mikes", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/MikesRestaurant.PageOfficielle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3313615", "amenity": "restaurant", "cuisine": "pizza;pasta;sandwich"}, "addTags": {"amenity": "restaurant", "brand": "Mikes", "brand:wikidata": "Q3313615", "brand:wikipedia": "fr:Mikes", "cuisine": "pizza;pasta;sandwich", "name": "Mikes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Miller & Carter": {"name": "Miller & Carter", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/493698931025403906/BENrWear_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87067401", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Miller & Carter", "brand:wikidata": "Q87067401", "cuisine": "steak", "name": "Miller & Carter"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/french/Mimi's Cafe": {"name": "Mimi's Cafe", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/mimiscafe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17022081", "amenity": "restaurant", "cuisine": "french"}, "addTags": {"amenity": "restaurant", "brand": "Mimi's Cafe", "brand:wikidata": "Q17022081", "brand:wikipedia": "en:Mimi's Cafe", "cuisine": "french", "name": "Mimi's Cafe"}, "reference": {"key": "cuisine", "value": "french"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Montana's": {"name": "Montana's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/montanasBBQ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17022490", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Montana's", "brand:wikidata": "Q17022490", "brand:wikipedia": "en:Montana's BBQ & Bar", "cuisine": "barbecue", "name": "Montana's", "official_name": "Montana's BBQ & Bar"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Morton's The Steakhouse": {"name": "Morton's The Steakhouse", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/mortons/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17022759", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Morton's The Steakhouse", "brand:wikidata": "Q17022759", "brand:wikipedia": "en:Morton's The Steakhouse", "cuisine": "steak_house", "name": "Morton's The Steakhouse"}, "countryCodes": ["us"], "terms": ["mortons"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Moses": {"name": "Moses", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/MosesIsrael/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64760150", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Moses", "brand:en": "Moses", "brand:he": "מוזס", "brand:wikidata": "Q64760150", "cuisine": "burger", "name": "Moses", "name:en": "Moses", "name:he": "מוזס"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Mountain Mike's": {"name": "Mountain Mike's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/mountainmikes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6925120", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"alt_name": "Mountain Mike's Pizza", "amenity": "restaurant", "brand": "Mountain Mike's", "brand:wikidata": "Q6925120", "brand:wikipedia": "en:Mountain Mike's Pizza", "cuisine": "pizza", "name": "Mountain Mike's", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/greek/Mr. Greek": {"name": "Mr. Greek", "icon": "maki-restaurant", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMr.%20Greek%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6928719", "amenity": "restaurant", "cuisine": "greek"}, "addTags": {"amenity": "restaurant", "brand": "Mr. Greek", "brand:wikidata": "Q6928719", "brand:wikipedia": "en:Mr. Greek", "cuisine": "greek", "name": "Mr. Greek"}, "reference": {"key": "cuisine", "value": "greek"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Nando's": {"name": "Nando's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/NandosUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3472954", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Nando's", "brand:wikidata": "Q3472954", "brand:wikipedia": "en:Nando's", "cuisine": "chicken;portuguese", "name": "Nando's"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Noodles & Company": {"name": "Noodles & Company", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/noodlesandcompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7049673", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Noodles & Company", "brand:wikidata": "Q7049673", "brand:wikipedia": "en:Noodles & Company", "cuisine": "pasta", "name": "Noodles & Company"}, "countryCodes": ["us"], "terms": ["noodles and co", "noodles co", "noodles company"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/O'Charley's": {"name": "O'Charley's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ocharleysfans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7071703", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "O'Charley's", "brand:wikidata": "Q7071703", "brand:wikipedia": "en:O'Charley's", "cuisine": "american", "name": "O'Charley's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/seafood/Ocean Basket": {"name": "Ocean Basket", "icon": "maki-restaurant-seafood", "imageURL": "https://graph.facebook.com/daoceanbasket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62075311", "amenity": "restaurant", "cuisine": "seafood"}, "addTags": {"amenity": "restaurant", "brand": "Ocean Basket", "brand:wikidata": "Q62075311", "cuisine": "seafood", "name": "Ocean Basket"}, "reference": {"key": "cuisine", "value": "seafood"}, "countryCodes": ["za"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Old Chicago": {"name": "Old Chicago", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/OldChicago/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64411347", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Old Chicago", "brand:wikidata": "Q64411347", "cuisine": "pizza", "name": "Old Chicago", "official_name": "Old Chicago Pizza & Taproom"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Old Country Buffet": {"name": "Old Country Buffet", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/OldCountryBuffet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q75243208", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Old Country Buffet", "brand:wikidata": "Q75243208", "cuisine": "american", "name": "Old Country Buffet"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Old Wild West": {"name": "Old Wild West", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/OWWofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25402475", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Old Wild West", "brand:wikidata": "Q25402475", "brand:wikipedia": "it:Old Wild West", "cuisine": "american", "name": "Old Wild West"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Olive Garden": {"name": "Olive Garden", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/OliveGarden/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3045312", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Olive Garden", "brand:wikidata": "Q3045312", "brand:wikipedia": "en:Olive Garden", "cuisine": "italian", "name": "Olive Garden"}, "reference": {"key": "cuisine", "value": "italian"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/On The Border": {"name": "On The Border", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/OnTheBorderMexicanGrillandCantina/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7091305", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "On The Border", "brand:wikidata": "Q7091305", "brand:wikipedia": "en:On the Border Mexican Grill & Cantina", "cuisine": "tex-mex", "name": "On The Border", "official_name": "On The Border Mexican Grill & Cantina"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Outback Steakhouse": {"name": "Outback Steakhouse", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/778575984958267392/MGtDYhwg_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1064893", "amenity": "restaurant", "cuisine": "american;steak"}, "addTags": {"amenity": "restaurant", "brand": "Outback Steakhouse", "brand:wikidata": "Q1064893", "brand:wikipedia": "en:Outback Steakhouse", "cuisine": "american;steak", "name": "Outback Steakhouse"}, "reference": {"key": "cuisine", "value": "american"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/asian/P.F. Chang's": {"name": "P.F. Chang's", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/pfchangs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5360181", "amenity": "restaurant", "cuisine": "asian"}, "addTags": {"amenity": "restaurant", "brand": "P.F. Chang's", "brand:wikidata": "Q5360181", "brand:wikipedia": "en:P. F. Chang's China Bistro", "cuisine": "asian", "name": "P.F. Chang's", "official_name": "P.F. Chang's China Bistro"}, "reference": {"key": "cuisine", "value": "asian"}, "countryCodes": ["mx", "us"], "terms": ["pf chang"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Papa Gino's": {"name": "Papa Gino's", "icon": "maki-restaurant-pizza", "imageURL": "https://pbs.twimg.com/profile_images/1225863158331592705/7I53DS40_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7132333", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Papa Gino's", "brand:wikidata": "Q7132333", "brand:wikipedia": "en:Papa Gino's", "cuisine": "pizza", "name": "Papa Gino's"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Pardos Chicken": {"name": "Pardos Chicken", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/pardoschicken/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17624435", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Pardos Chicken", "brand:wikidata": "Q17624435", "brand:wikipedia": "en:Pardos chicken", "cuisine": "peruvian", "name": "Pardos Chicken"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/asian/Pei Wei": {"name": "Pei Wei", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/peiwei/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7160898", "amenity": "restaurant", "cuisine": "asian"}, "addTags": {"amenity": "restaurant", "brand": "Pei Wei", "brand:wikidata": "Q7160898", "brand:wikipedia": "en:Pei Wei Asian Diner", "cuisine": "asian", "name": "Pei Wei"}, "reference": {"key": "cuisine", "value": "asian"}, "countryCodes": ["us"], "terms": ["pei wei asian diner"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Pepper Lunch": {"name": "Pepper Lunch", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1222436486/main_px3b_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1016072", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Pepper Lunch", "brand:wikidata": "Q1016072", "brand:wikipedia": "en:Pepper Lunch", "cuisine": "steak", "name": "Pepper Lunch"}, "terms": ["ペッパーランチ"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Perkins": {"name": "Perkins", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/eatatperkins/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7169056", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Perkins", "brand:wikidata": "Q7169056", "brand:wikipedia": "en:Perkins Restaurant and Bakery", "cuisine": "american", "name": "Perkins", "official_name": "Perkins Restaurant and Bakery"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Peter Pane": {"name": "Peter Pane", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/peter.pane.burgergrill.bar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66084419", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Peter Pane", "brand:wikidata": "Q66084419", "cuisine": "burger", "name": "Peter Pane"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Peter Piper Pizza": {"name": "Peter Piper Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/peterpiperpizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7176401", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Peter Piper Pizza", "brand:wikidata": "Q7176401", "cuisine": "pizza", "name": "Peter Piper Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/vietnamese/Phở 24": {"name": "Phở 24", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/pho24.24giavitinhte/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63863118", "amenity": "restaurant", "cuisine": "vietnamese;noodle"}, "addTags": {"amenity": "restaurant", "brand": "Phở 24", "brand:wikidata": "Q63863118", "cuisine": "vietnamese;noodle", "name": "Phở 24", "name:en": "Pho 24", "name:vi": "Phở 24"}, "reference": {"key": "cuisine", "value": "vietnamese"}, "countryCodes": ["vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/vietnamese/Phở Hòa": {"name": "Phở Hòa", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/phohoanoodlesoup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55629932", "amenity": "restaurant", "cuisine": "vietnamese;noodle"}, "addTags": {"alt_name": "Phở Hoà", "alt_name:en": "Pho Hoa", "alt_name:vi": "Phở Hoà", "amenity": "restaurant", "brand": "Phở Hòa", "brand:wikidata": "Q55629932", "brand:wikipedia": "en:Phở Hòa", "cuisine": "vietnamese;noodle", "name": "Phở Hòa", "name:vi": "Phở Hòa"}, "reference": {"key": "cuisine", "value": "vietnamese"}, "countryCodes": ["ca", "id", "kr", "ms", "ph", "tw", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Pieology Pizzeria": {"name": "Pieology Pizzeria", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pieology/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60746053", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Pieology Pizzeria", "brand:wikidata": "Q60746053", "brand:wikipedia": "en:Pieology", "cuisine": "pizza", "name": "Pieology Pizzeria"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": ["pieology"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Pizza Delight": {"name": "Pizza Delight", "icon": "maki-restaurant-pizza", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3389502", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Pizza Delight", "brand:wikidata": "Q3389502", "brand:wikipedia": "en:Pizza Delight", "cuisine": "pizza", "name": "Pizza Delight"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Pizza Factory": {"name": "Pizza Factory", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzafactoryinc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q39054369", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Pizza Factory", "brand:wikidata": "Q39054369", "brand:wikipedia": "en:Pizza Factory", "cuisine": "pizza", "name": "Pizza Factory"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Pizza Hut": {"name": "Pizza Hut", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzahutus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q191615", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Pizza Hut", "brand:wikidata": "Q191615", "brand:wikipedia": "en:Pizza Hut", "cuisine": "pizza", "name": "Pizza Hut"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Pizza Paï": {"name": "Pizza Paï", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/PizzaPai/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3389501", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Pizza Paï", "brand:wikidata": "Q3389501", "brand:wikipedia": "fr:PizzaPai", "cuisine": "pizza", "name": "Pizza Paï"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Pizza Ranch": {"name": "Pizza Ranch", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/PizzaRanchRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7199978", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Pizza Ranch", "brand:wikidata": "Q7199978", "brand:wikipedia": "en:Pizza Ranch", "cuisine": "pizza", "name": "Pizza Ranch"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/PizzaExpress": {"name": "PizzaExpress", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/pizzaexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q662845", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "PizzaExpress", "brand:wikidata": "Q662845", "brand:wikipedia": "en:PizzaExpress", "cuisine": "pizza", "name": "PizzaExpress"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/french/Poivre Rouge": {"name": "Poivre Rouge", "icon": "maki-restaurant", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Restaumarch%C3%A9.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7316076", "amenity": "restaurant", "cuisine": "french"}, "addTags": {"amenity": "restaurant", "brand": "Poivre Rouge", "brand:wikidata": "Q7316076", "brand:wikipedia": "fr:Poivre Rouge (restauration)", "cuisine": "french", "name": "Poivre Rouge"}, "reference": {"key": "cuisine", "value": "french"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Ponderosa Steakhouse": {"name": "Ponderosa Steakhouse", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ponbonsteakhouses/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64038204", "amenity": "restaurant", "cuisine": "american;steak;buffet"}, "addTags": {"amenity": "restaurant", "brand": "Ponderosa Steakhouse", "brand:wikidata": "Q64038204", "cuisine": "american;steak;buffet", "name": "Ponderosa Steakhouse"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["ae", "eg", "qa", "tw", "us"], "terms": ["ponderosa"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Prezzo": {"name": "Prezzo", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/loveprezzo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7242489", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Prezzo", "brand:wikidata": "Q7242489", "brand:wikipedia": "en:Prezzo (restaurant)", "cuisine": "italian", "name": "Prezzo"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Quaker Steak & Lube": {"name": "Quaker Steak & Lube", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/TheOfficialQSL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7268570", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Quaker Steak & Lube", "brand:wikidata": "Q7268570", "brand:wikipedia": "en:Quaker Steak & Lube", "cuisine": "wings", "name": "Quaker Steak & Lube"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Rainforest Cafe": {"name": "Rainforest Cafe", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/officialrainforestcafe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3391111", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Rainforest Cafe", "brand:wikidata": "Q3391111", "brand:wikipedia": "en:Rainforest Cafe", "cuisine": "american", "name": "Rainforest Cafe"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/seafood/Red Lobster": {"name": "Red Lobster", "icon": "maki-restaurant-seafood", "imageURL": "https://graph.facebook.com/redlobster/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q846301", "amenity": "restaurant", "cuisine": "seafood"}, "addTags": {"amenity": "restaurant", "brand": "Red Lobster", "brand:wikidata": "Q846301", "brand:wikipedia": "en:Red Lobster", "cuisine": "seafood", "name": "Red Lobster"}, "reference": {"key": "cuisine", "value": "seafood"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Red Robin": {"name": "Red Robin", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/RedRobin/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7304886", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Red Robin", "brand:wikidata": "Q7304886", "brand:wikipedia": "en:Red Robin", "cuisine": "burger", "name": "Red Robin", "official_name": "Red Robin Gourmet Burgers and Brews"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Ristorante Del Arte": {"name": "Ristorante Del Arte", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/restaurants.delarte/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89208262", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Ristorante Del Arte", "brand:wikidata": "Q89208262", "cuisine": "italian", "name": "restaurant"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Romano's Macaroni Grill": {"name": "Romano's Macaroni Grill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/RomanosMacaroniGrill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7362714", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Romano's Macaroni Grill", "brand:wikidata": "Q7362714", "brand:wikipedia": "en:Romano's Macaroni Grill", "cuisine": "italian", "name": "Romano's Macaroni Grill"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Round Table Pizza": {"name": "Round Table Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/RoundTablePizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7371139", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Round Table Pizza", "brand:wikidata": "Q7371139", "brand:wikipedia": "en:Round Table Pizza", "cuisine": "pizza", "name": "Round Table Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": ["round table"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Ruby Tuesday": {"name": "Ruby Tuesday", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/rubytuesday/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7376400", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Ruby Tuesday", "brand:wikidata": "Q7376400", "brand:wikipedia": "en:Ruby Tuesday (restaurant)", "cuisine": "american", "name": "Ruby Tuesday"}, "reference": {"key": "cuisine", "value": "american"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Ruth's Chris Steak House": {"name": "Ruth's Chris Steak House", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/RuthsChrisSteakHouseNational/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7382829", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Ruth's Chris Steak House", "brand:wikidata": "Q7382829", "brand:wikipedia": "en:Ruth's Chris Steak House", "cuisine": "american", "name": "Ruth's Chris Steak House"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["ca", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Saltgrass Steak House": {"name": "Saltgrass Steak House", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/saltgrass/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7406113", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Saltgrass Steak House", "brand:wikidata": "Q7406113", "brand:wikipedia": "en:Saltgrass Steak House", "cuisine": "steak_house", "name": "Saltgrass Steak House"}, "countryCodes": ["us"], "terms": ["saltgrass"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/mexican/Sausalitos": {"name": "Sausalitos", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/sausalitos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2227783", "amenity": "restaurant", "cuisine": "mexican"}, "addTags": {"amenity": "restaurant", "brand": "Sausalitos", "brand:wikidata": "Q2227783", "brand:wikipedia": "de:Sausalitos", "cuisine": "mexican", "name": "Sausalitos"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Scores": {"name": "Scores", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/RestaurantScores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3476059", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Scores", "brand:wikidata": "Q3476059", "brand:wikipedia": "fr:Scores", "cuisine": "chicken;barbecue", "name": "Scores"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Shakey's": {"name": "Shakey's", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/shakeyspizzaparlorusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6134929", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Shakey's", "brand:wikidata": "Q6134929", "brand:wikipedia": "en:Shakey's Pizza", "cuisine": "pizza", "name": "Shakey's"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Shari's": {"name": "Shari's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SharisPies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7489612", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Shari's", "brand:wikidata": "Q7489612", "brand:wikipedia": "en:Shari's Cafe & Pies", "cuisine": "american", "name": "Shari's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Shingle Inn": {"name": "Shingle Inn", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/683845754704670721/6OMM2ZND_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7497463", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Shingle Inn", "brand:wikidata": "Q7497463", "brand:wikipedia": "en:Shingle Inn", "cuisine": "bakery", "name": "Shingle Inn"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Shoney's": {"name": "Shoney's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/shoneys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7500392", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Shoney's", "brand:wikidata": "Q7500392", "brand:wikipedia": "en:Shoney's", "cuisine": "american", "name": "Shoney's"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Sizzler": {"name": "Sizzler", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/sizzler/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1848822", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Sizzler", "brand:wikidata": "Q1848822", "brand:wikipedia": "en:Sizzler", "cuisine": "steak_house", "name": "Sizzler"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Skyline Chili": {"name": "Skyline Chili", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SkylineChili/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q151224", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Skyline Chili", "brand:wikidata": "Q151224", "brand:wikipedia": "en:Skyline Chili", "cuisine": "chili", "name": "Skyline Chili", "takeaway": "yes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Smitty's": {"name": "Smitty's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SmittysRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7545728", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Smitty's", "brand:wikidata": "Q7545728", "brand:wikipedia": "en:Smitty's", "cuisine": "pancake", "name": "Smitty's"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Snappy Tomato Pizza": {"name": "Snappy Tomato Pizza", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/SnappyTomatoPizza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7547352", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Snappy Tomato Pizza", "brand:wikidata": "Q7547352", "brand:wikipedia": "en:Snappy Tomato Pizza", "cuisine": "pizza", "name": "Snappy Tomato Pizza", "takeaway": "yes"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Sonny's BBQ": {"name": "Sonny's BBQ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/sonnysbbq/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7561989", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Sonny's BBQ", "brand:wikidata": "Q7561989", "brand:wikipedia": "en:Sonny's BBQ", "cuisine": "bbq", "name": "Sonny's BBQ"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Spudbar": {"name": "Spudbar", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SpudbarHQ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19589778", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Spudbar", "brand:wikidata": "Q19589778", "brand:wikipedia": "en:Spudbar", "cuisine": "baked_potato", "name": "Spudbar"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Spur": {"name": "Spur", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SpurSteakRanches/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7581546", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Spur", "brand:wikidata": "Q7581546", "brand:wikipedia": "en:Spur Steak Ranches", "cuisine": "steak_house", "name": "Spur"}, "countryCodes": ["za"], "terms": ["spur steak ranches"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/St-Hubert": {"name": "St-Hubert", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/sthubert/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3495225", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "St-Hubert", "brand:wikidata": "Q3495225", "brand:wikipedia": "fr:St-Hubert (restaurant)", "cuisine": "chicken;barbecue", "name": "St-Hubert"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/St. Louis Bar & Grill": {"name": "St. Louis Bar & Grill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/stlouisbarandgrill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65567668", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "St. Louis Bar & Grill", "brand:wikidata": "Q65567668", "cuisine": "chicken", "name": "St. Louis Bar & Grill"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Stoney River": {"name": "Stoney River", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1050121272938643465/QjAWyNTq_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7619422", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Stoney River", "brand:wikidata": "Q7619422", "brand:wikipedia": "en:Stoney River Legendary Steaks", "cuisine": "steak_house", "name": "Stoney River"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Sunset Grill": {"name": "Sunset Grill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SunsetGrillBreakfast/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62112489", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Sunset Grill", "brand:wikidata": "Q62112489", "brand:wikipedia": "en:Sunset Grill (Canadian restaurant chain)", "cuisine": "american", "name": "Sunset Grill"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Swiss Chalet": {"name": "Swiss Chalet", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/SwissChalet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2372909", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Swiss Chalet", "brand:wikidata": "Q2372909", "brand:wikipedia": "en:Swiss Chalet", "cuisine": "chicken", "name": "Swiss Chalet"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/TGI Friday's": {"name": "TGI Friday's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/TGIFridays/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1524184", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "TGI Friday's", "brand:wikidata": "Q1524184", "brand:wikipedia": "en:TGI Fridays", "cuisine": "american", "name": "TGI Friday's"}, "reference": {"key": "cuisine", "value": "american"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Ted's Montana Grill": {"name": "Ted's Montana Grill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/tedsmontanagrill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16953170", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Ted's Montana Grill", "brand:wikidata": "Q16953170", "brand:wikipedia": "en:Ted's Montana Grill", "cuisine": "american", "name": "Ted's Montana Grill"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Texas Roadhouse": {"name": "Texas Roadhouse", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/texasroadhouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7707945", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Texas Roadhouse", "brand:wikidata": "Q7707945", "brand:wikipedia": "en:Texas Roadhouse", "cuisine": "steak_house", "name": "Texas Roadhouse"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/The Cheesecake Factory": {"name": "The Cheesecake Factory", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/thecheesecakefactory/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1045842", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"alt_name": "Cheesecake Factory", "amenity": "restaurant", "brand": "The Cheesecake Factory", "brand:wikidata": "Q1045842", "brand:wikipedia": "en:The Cheesecake Factory", "cuisine": "american", "name": "The Cheesecake Factory"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/The Counter": {"name": "The Counter", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/969352718669160449/M6JdmT69_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7727763", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "The Counter", "brand:wikidata": "Q7727763", "brand:wikipedia": "en:The Counter", "cuisine": "burger", "name": "The Counter"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/The Keg": {"name": "The Keg", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/thekegsteakhouseandbar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7744066", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "The Keg", "brand:wikidata": "Q7744066", "brand:wikipedia": "en:The Keg", "cuisine": "steak_house", "name": "The Keg"}, "countryCodes": ["ca", "us"], "terms": ["keg"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/The Melting Pot": {"name": "The Melting Pot", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/themeltingpotrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7750948", "amenity": "restaurant"}, "addTags": {"alt_name": "Melting Pot", "amenity": "restaurant", "brand": "The Melting Pot", "brand:wikidata": "Q7750948", "brand:wikipedia": "en:The Melting Pot (restaurant)", "cuisine": "fondue", "name": "The Melting Pot"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/The Original Pancake House": {"name": "The Original Pancake House", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ophbaltimore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7755384", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "The Original Pancake House", "brand:wikidata": "Q7755384", "brand:wikipedia": "en:The Original Pancake House", "cuisine": "breakfast;pancake", "name": "The Original Pancake House"}, "countryCodes": ["jp", "kr", "us"], "terms": ["original pancake house"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Toby Carvery": {"name": "Toby Carvery", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1243496932510781447/UCN842qE_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7811777", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Toby Carvery", "brand:wikidata": "Q7811777", "brand:wikipedia": "en:Toby Carvery", "cuisine": "british", "name": "Toby Carvery"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/mexican/Toks": {"name": "Toks", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/ToksMx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48835586", "amenity": "restaurant", "cuisine": "mexican"}, "addTags": {"amenity": "restaurant", "brand": "Toks", "brand:wikidata": "Q48835586", "brand:wikipedia": "en:Toks", "cuisine": "mexican", "name": "Toks"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Tony Roma's": {"name": "Tony Roma's", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/TonyRomas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2213883", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Tony Roma's", "brand:wikidata": "Q2213883", "brand:wikipedia": "en:Tony Roma's", "cuisine": "barbecue", "name": "Tony Roma's"}, "terms": ["tony roma"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Topper's Pizza (Canada)": {"name": "Topper's Pizza (Canada)", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/topperscanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7825105", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Topper's Pizza", "brand:wikidata": "Q7825105", "brand:wikipedia": "en:Topper's Pizza (Canadian restaurant)", "cuisine": "pizza", "name": "Topper's Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Toppers Pizza (USA)": {"name": "Toppers Pizza (USA)", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/ToppersRocks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7825113", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Toppers Pizza", "brand:wikidata": "Q7825113", "brand:wikipedia": "en:Toppers Pizza (American restaurant)", "cuisine": "pizza", "name": "Toppers Pizza"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Unos": {"name": "Unos", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/UnoPizzeriaandGrill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7897209", "amenity": "restaurant", "cuisine": "pizza"}, "addTags": {"amenity": "restaurant", "brand": "Unos", "brand:wikidata": "Q7897209", "brand:wikipedia": "en:Uno Pizzeria & Grill", "cuisine": "pizza", "name": "Unos"}, "reference": {"key": "cuisine", "value": "pizza"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Vapiano": {"name": "Vapiano", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Vapiano/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q506252", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Vapiano", "brand:wikidata": "Q506252", "brand:wikipedia": "en:Vapiano", "cuisine": "italian", "name": "Vapiano"}, "reference": {"key": "cuisine", "value": "italian"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Village Inn": {"name": "Village Inn", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/villageinnrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7930659", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Village Inn", "brand:wikidata": "Q7930659", "brand:wikipedia": "en:Village Inn", "cuisine": "american", "name": "Village Inn"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Vips (Asia)": {"name": "Vips (Asia)", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ivips/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12599540", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Vips", "brand:wikidata": "Q12599540", "brand:wikipedia": "ko:빕스", "cuisine": "salad;steak_house", "name": "Vips"}, "countryCodes": ["cn", "kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/mexican/Vips (Mexico)": {"name": "Vips (Mexico)", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/VIPSMX/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48783378", "amenity": "restaurant", "cuisine": "mexican"}, "addTags": {"amenity": "restaurant", "brand": "Vips", "brand:wikidata": "Q48783378", "brand:wikipedia": "es:Vips", "cuisine": "mexican", "name": "Vips"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Vips (Spain)": {"name": "Vips (Spain)", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/vips/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66087862", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Vips", "brand:wikidata": "Q66087862", "cuisine": "international", "name": "Vips"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Waffle House": {"name": "Waffle House", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/WaffleHouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1701206", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"amenity": "restaurant", "brand": "Waffle House", "brand:wikidata": "Q1701206", "brand:wikipedia": "en:Waffle House", "cuisine": "american", "name": "Waffle House", "opening_hours": "24/7"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/asian/Wagamama": {"name": "Wagamama", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/wagamama.spain/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q503715", "amenity": "restaurant", "cuisine": "asian"}, "addTags": {"amenity": "restaurant", "brand": "Wagamama", "brand:wikidata": "Q503715", "brand:wikipedia": "en:Wagamama", "cuisine": "asian", "name": "Wagamama"}, "reference": {"key": "cuisine", "value": "asian"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/Wasabi": {"name": "Wasabi", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/WasabiUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23891278", "amenity": "restaurant", "cuisine": "japanese"}, "addTags": {"amenity": "restaurant", "brand": "Wasabi", "brand:wikidata": "Q23891278", "brand:wikipedia": "en:Wasabi (restaurant)", "cuisine": "japanese", "name": "Wasabi"}, "reference": {"key": "cuisine", "value": "japanese"}, "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Western Sizzlin'": {"name": "Western Sizzlin'", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/WesternSizzlin/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7988295", "amenity": "restaurant", "cuisine": "american;steak"}, "addTags": {"amenity": "restaurant", "brand": "Western Sizzlin'", "brand:wikidata": "Q7988295", "brand:wikipedia": "en:Western Sizzlin'", "cuisine": "american;steak", "name": "Western Sizzlin'"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": ["western sizzling"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/White Spot": {"name": "White Spot", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/whitespot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7995414", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "White Spot", "brand:wikidata": "Q7995414", "brand:wikipedia": "en:White Spot", "cuisine": "burger", "name": "White Spot"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Wild Wing": {"name": "Wild Wing", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/WildWingRestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8000869", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Wild Wing", "brand:wikidata": "Q8000869", "brand:wikipedia": "en:Wild Wing Restaurants", "cuisine": "chicken", "name": "Wild Wing"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/pizza/Wildwood": {"name": "Wildwood", "icon": "maki-restaurant-pizza", "imageURL": "https://graph.facebook.com/wildwoodfood/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q85300869", "amenity": "restaurant", "cuisine": "grill;pasta;pizza"}, "addTags": {"amenity": "restaurant", "brand": "Wildwood", "brand:wikidata": "Q85300869", "cuisine": "grill;pasta;pizza", "name": "Wildwood"}, "reference": {"key": "cuisine", "value": "pizza"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/sushi/YO! Sushi": {"name": "YO! Sushi", "icon": "temaki-temaki", "imageURL": "https://graph.facebook.com/YOSushi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3105441", "amenity": "restaurant", "cuisine": "sushi"}, "addTags": {"amenity": "restaurant", "brand": "YO! Sushi", "brand:wikidata": "Q3105441", "brand:wikipedia": "en:YO! Sushi", "cuisine": "sushi", "name": "YO! Sushi"}, "reference": {"key": "cuisine", "value": "sushi"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/american/Yard House": {"name": "Yard House", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/yardhouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21189156", "amenity": "restaurant", "cuisine": "american"}, "addTags": {"alcohol": "yes", "amenity": "restaurant", "brand": "Yard House", "brand:wikidata": "Q21189156", "brand:wikipedia": "en:Yard House", "cuisine": "american", "name": "Yard House"}, "reference": {"key": "cuisine", "value": "american"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/mexican/Zambrero": {"name": "Zambrero", "icon": "fas-pepper-hot", "imageURL": "https://graph.facebook.com/zambrero/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18636431", "amenity": "restaurant", "cuisine": "mexican"}, "addTags": {"amenity": "restaurant", "brand": "Zambrero", "brand:wikidata": "Q18636431", "brand:wikipedia": "en:Zambrero", "cuisine": "mexican", "name": "Zambrero"}, "reference": {"key": "cuisine", "value": "mexican"}, "countryCodes": ["au", "ie", "nl", "th", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/Zizzi": {"name": "Zizzi", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/wearezizzi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8072944", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "Zizzi", "brand:wikidata": "Q8072944", "brand:wikipedia": "en:Zizzi", "cuisine": "italian", "name": "Zizzi"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/bd's Mongolian Grill": {"name": "bd's Mongolian Grill", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bdsMongolianGrillVerifiedPage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q69890408", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "bd's Mongolian Grill", "brand:wikidata": "Q69890408", "cuisine": "mongolian_bbq", "name": "bd's Mongolian Grill"}, "countryCodes": ["mn", "us"], "terms": ["bd mongolian grill"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/dean&david": {"name": "dean&david", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/deananddavid/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66132404", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "dean&david", "brand:wikidata": "Q66132404", "cuisine": "salad;sandwich", "name": "dean&david"}, "countryCodes": ["at", "ch", "de", "lu", "qa"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/Евразия (Russia)": {"name": "Евразия (Russia)", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/evrasiakiev/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66087936", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "Евразия", "brand:wikidata": "Q66087936", "cuisine": "international", "name": "Евразия"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/Евразия (Ukraine)": {"name": "Евразия (Ukraine)", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/EvrasiaKiev/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66088028", "amenity": "restaurant", "cuisine": "western;japanese"}, "addTags": {"amenity": "restaurant", "brand": "Євразія", "brand:ru": "Евразия", "brand:ua": "Євразія", "brand:wikidata": "Q66088028", "cuisine": "western;japanese", "name": "Євразія", "name:ru": "Евразия", "name:ua": "Євразія"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["ua"], "terms": ["євразія"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/sushi/Планета Суши": {"name": "Планета Суши", "icon": "temaki-temaki", "imageURL": "https://graph.facebook.com/sushiplanet.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62739250", "amenity": "restaurant", "cuisine": "sushi"}, "addTags": {"amenity": "restaurant", "brand": "Планета Суши", "brand:wikidata": "Q62739250", "cuisine": "sushi", "name": "Планета Суши", "name:en": "Planet Sushi"}, "reference": {"key": "cuisine", "value": "sushi"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/Тануки": {"name": "Тануки", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/tanuki.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62758690", "amenity": "restaurant", "cuisine": "japanese"}, "addTags": {"amenity": "restaurant", "brand": "Тануки", "brand:wikidata": "Q62758690", "cuisine": "japanese", "name": "Тануки", "name:en": "Tanuki", "name:ru": "Тануки"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["kz", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/Якитория": {"name": "Якитория", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/yakitoriyacafe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66088063", "amenity": "restaurant", "cuisine": "japanese;international"}, "addTags": {"amenity": "restaurant", "brand": "Якитория", "brand:wikidata": "Q66088063", "cuisine": "japanese;international", "name": "Якитория"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/בורגר סאלון": {"name": "בורגר סאלון", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/BurgerSaloon/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64760057", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "בורגר סאלון", "brand:en": "Burger Saloon", "brand:he": "בורגר סאלון", "brand:wikidata": "Q64760057", "cuisine": "burger", "name": "בורגר סאלון", "name:en": "Burger Saloon", "name:he": "בורגר סאלון"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/あさくま": {"name": "あさくま", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ASAKUMA.JP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11257174", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "あさくま", "brand:en": "Asakuma", "brand:ja": "あさくま", "brand:wikidata": "Q11257174", "brand:wikipedia": "ja:あさくま", "cuisine": "steak_house", "name": "あさくま", "name:en": "Asakuma", "name:ja": "あさくま"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/いきなり!ステーキ": {"name": "いきなり!ステーキ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ikinari.steak/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21652405", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "いきなり!ステーキ", "brand:en": "Ikinari Steak", "brand:ja": "いきなり!ステーキ", "brand:wikidata": "Q21652405", "brand:wikipedia": "ja:いきなり!ステーキ", "cuisine": "steak_house", "name": "いきなり!ステーキ", "name:en": "Ikinari Steak", "name:ja": "いきなり!ステーキ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/しゃぶ葉": {"name": "しゃぶ葉", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/1040032799674097664/nydBpFO0_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87724264", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "しゃぶ葉", "brand:ja": "しゃぶ葉", "brand:wikidata": "Q87724264", "cuisine": "buffet", "name": "しゃぶ葉", "name:en": "Syabuyo", "name:ja": "しゃぶ葉"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/とんでん": {"name": "とんでん", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/tonden.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11273585", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "とんでん", "brand:en": "Tonden", "brand:ja": "とんでん", "brand:wikidata": "Q11273585", "brand:wikipedia": "jp:とんでん", "name": "とんでん", "name:en": "Tonden", "name:ja": "とんでん"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/はなまるうどん": {"name": "はなまるうどん", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/hanamaruudon.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11275674", "amenity": "restaurant", "cuisine": "japanese;udon"}, "addTags": {"amenity": "restaurant", "brand": "はなまるうどん", "brand:en": "Hanamarūdon", "brand:ja": "はなまるうどん", "brand:wikidata": "Q11275674", "brand:wikipedia": "ja:はなまるうどん", "cuisine": "japanese;udon", "name": "はなまるうどん", "name:en": "Hanamarūdon", "name:ja": "はなまるうどん"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/びっくりドンキー": {"name": "びっくりドンキー", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/372270522955811/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11276815", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "びっくりドンキー", "brand:en": "Bikkuri Donkey", "brand:ja": "びっくりドンキー", "brand:wikidata": "Q11276815", "brand:wikipedia": "ja:びっくりドンキー", "cuisine": "burger", "name": "びっくりドンキー", "name:en": "Bikkuri Donkey", "name:ja": "びっくりドンキー"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/やよい軒": {"name": "やよい軒", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/yayoiphilippines/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11280577", "amenity": "restaurant", "cuisine": "japanese"}, "addTags": {"amenity": "restaurant", "brand": "やよい軒", "brand:en": "Yayoiken", "brand:ja": "やよい軒", "brand:wikidata": "Q11280577", "brand:wikipedia": "ja:やよい軒", "cuisine": "japanese", "name": "やよい軒", "name:en": "Yayoiken", "name:ja": "やよい軒"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/カプリチョーザ": {"name": "カプリチョーザ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/capricciosa.restaurant/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11294660", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "カプリチョーザ", "brand:en": "Capricciosa", "brand:ja": "カプリチョーザ", "brand:wikidata": "Q11294660", "brand:wikipedia": "ja:カプリチョーザ", "cuisine": "italian", "name": "カプリチョーザ", "name:en": "Capricciosa", "name:ja": "カプリチョーザ"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/ガスト": {"name": "ガスト", "icon": "maki-restaurant-noodle", "imageURL": "https://pbs.twimg.com/profile_images/1231208678855831552/9xM19ZXv_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87724117", "amenity": "restaurant", "cuisine": "western;japanese"}, "addTags": {"amenity": "restaurant", "brand": "ガスト", "brand:en": "Gusto", "brand:ja": "ガスト", "brand:wikidata": "Q87724117", "cuisine": "western;japanese", "name": "ガスト", "name:en": "Gusto", "name:ja": "ガスト"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/ココス": {"name": "ココス", "icon": "maki-restaurant-noodle", "imageURL": "https://pbs.twimg.com/profile_images/875584429069959169/5l38DoS7_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11301951", "amenity": "restaurant", "cuisine": "western;japanese"}, "addTags": {"amenity": "restaurant", "brand": "ココス", "brand:en": "Coco's", "brand:ja": "ココス", "brand:wikidata": "Q11301951", "brand:wikipedia": "ja:ココスジャパン", "cuisine": "western;japanese", "name": "ココス", "name:en": "Coco's", "name:ja": "ココス"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/サイゼリヤ": {"name": "サイゼリヤ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/Saizeriya4Fun/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q886564", "amenity": "restaurant", "cuisine": "italian"}, "addTags": {"amenity": "restaurant", "brand": "サイゼリヤ", "brand:en": "Saizeriya", "brand:ja": "サイゼリヤ", "brand:wikidata": "Q886564", "brand:wikipedia": "en:Saizeriya", "cuisine": "italian", "name": "サイゼリヤ", "name:en": "Saizeriya", "name:ja": "サイゼリヤ"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/ジョイフル": {"name": "ジョイフル", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/116763348378560/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11310517", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "ジョイフル", "brand:en": "Joyfull", "brand:ja": "ジョイフル", "brand:wikidata": "Q11310517", "brand:wikipedia": "ja:ジョイフル", "cuisine": "western", "name": "ジョイフル", "name:en": "Joyfull", "name:ja": "ジョイフル"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/italian/ジョナサン": {"name": "ジョナサン", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/jonathans.skylark/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11310628", "amenity": "restaurant", "cuisine": "italian;japanese"}, "addTags": {"amenity": "restaurant", "brand": "ジョナサン", "brand:en": "Jonathan's", "brand:ja": "ジョナサン", "brand:wikidata": "Q11310628", "brand:wikipedia": "ja:ジョナサン (ファミリーレストラン)", "cuisine": "italian;japanese", "name": "ジョナサン", "name:en": "Jonathan's", "name:ja": "ジョナサン"}, "reference": {"key": "cuisine", "value": "italian"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/ジョリーパスタ": {"name": "ジョリーパスタ", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10852718", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "ジョリーパスタ", "brand:en": "Jolly-Pasta", "brand:ja": "ジョリーパスタ", "brand:wikidata": "Q10852718", "brand:wikipedia": "ja:ジョリーパスタ", "cuisine": "pasta", "name": "ジョリーパスタ", "name:en": "Jolly-Pasta", "name:ja": "ジョリーパスタ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/ステーキガスト": {"name": "ステーキガスト", "icon": "maki-restaurant", "imageURL": "https://pbs.twimg.com/profile_images/882903341038161921/2hoP7sIY_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11253593", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "ステーキガスト", "brand:en": "Skylark", "brand:ja": "ステーキガスト", "brand:wikidata": "Q11253593", "brand:wikipedia": "ja:すかいらーく", "cuisine": "steak", "name": "ステーキガスト", "name:en": "Skylark", "name:ja": "ステーキガスト"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/デニーズ": {"name": "デニーズ", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/dennys.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11320661", "amenity": "restaurant", "cuisine": "western;japanese"}, "addTags": {"amenity": "restaurant", "brand": "デニーズ", "brand:en": "Denny's", "brand:ja": "デニーズ", "brand:wikidata": "Q11320661", "brand:wikipedia": "ja:デニーズ (日本)", "cuisine": "western;japanese", "name": "デニーズ", "name:en": "Denny's", "name:ja": "デニーズ"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/chinese/バーミヤン": {"name": "バーミヤン", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/113010145424150/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11328598", "amenity": "restaurant", "cuisine": "chinese"}, "addTags": {"amenity": "restaurant", "brand": "バーミヤン", "brand:en": "Bamiyan", "brand:ja": "バーミヤン", "brand:wikidata": "Q11328598", "brand:wikipedia": "ja:バーミヤン (レストランチェーン)", "cuisine": "chinese", "name": "バーミヤン", "name:en": "Bamiyan", "name:ja": "バーミヤン"}, "reference": {"key": "cuisine", "value": "chinese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/ビッグボーイ": {"name": "ビッグボーイ", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/bigboyrestaurants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4386779", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "ビッグボーイ", "brand:en": "Big Boy Restaurants", "brand:ja": "ビッグボーイ", "brand:wikidata": "Q4386779", "brand:wikipedia": "en:Big Boy Restaurants", "cuisine": "burger", "name": "ビッグボーイ", "name:en": "Big Boy Restaurants", "name:ja": "ビッグボーイ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/リンガーハット": {"name": "リンガーハット", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/ringerhut/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7334856", "amenity": "restaurant", "cuisine": "japanese"}, "addTags": {"amenity": "restaurant", "brand": "リンガーハット", "brand:en": "Ringer Hut", "brand:ja": "リンガーハット", "brand:wikidata": "Q7334856", "brand:wikipedia": "en:Ringer Hut", "cuisine": "japanese", "name": "リンガーハット", "name:en": "Ringer Hut", "name:ja": "リンガーハット"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/ロイヤルホスト": {"name": "ロイヤルホスト", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/577770399068313/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11120884", "amenity": "restaurant", "cuisine": "japanese;italian;french"}, "addTags": {"amenity": "restaurant", "brand": "ロイヤルホスト", "brand:en": "Royal Host", "brand:ja": "ロイヤルホスト", "brand:wikidata": "Q11120884", "brand:wikipedia": "ja:ロイヤルホスト", "cuisine": "japanese;italian;french", "name": "ロイヤルホスト", "name:en": "Royal Host", "name:ja": "ロイヤルホスト"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/noodle/一風堂": {"name": "一風堂", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/eakramen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88318612", "amenity": "restaurant", "cuisine": "noodle"}, "addTags": {"amenity": "restaurant", "brand": "町田商店", "brand:en": "Machida Shouten", "brand:jp": "町田商店", "brand:wikidata": "Q88318612", "cuisine": "noodle", "name": "町田商店", "name:en": "Machida Shouten", "name:jp": "町田商店"}, "reference": {"key": "cuisine", "value": "noodle"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/noodle/丸亀製麺": {"name": "丸亀製麺", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/marugame/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10877253", "amenity": "restaurant", "cuisine": "noodle"}, "addTags": {"amenity": "restaurant", "brand": "丸亀製麺", "brand:en": "Marugame Seimen", "brand:ja": "丸亀製麺", "brand:wikidata": "Q10877253", "brand:wikipedia": "ja:丸亀製麺", "cuisine": "noodle", "name": "丸亀製麺", "name:en": "Marugame Seimen", "name:ja": "丸亀製麺"}, "reference": {"key": "cuisine", "value": "noodle"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/sushi/元気寿司": {"name": "元気寿司", "icon": "temaki-temaki", "imageURL": "https://pbs.twimg.com/profile_images/995176993808269312/wgdlRl7m_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5533323", "amenity": "restaurant", "cuisine": "sushi"}, "addTags": {"amenity": "restaurant", "brand": "元気寿司", "brand:en": "Genki Sushi", "brand:ja": "元気寿司", "brand:wikidata": "Q5533323", "brand:wikipedia": "ja:元気寿司", "cuisine": "sushi", "name": "元気寿司", "name:en": "Genki Sushi", "name:ja": "元気寿司"}, "reference": {"key": "cuisine", "value": "sushi"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/chinese/八方雲集": {"name": "八方雲集", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/8wayTW/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28417381", "amenity": "restaurant", "cuisine": "chinese"}, "addTags": {"amenity": "restaurant", "brand": "八方雲集", "brand:en": "Eight Way", "brand:wikidata": "Q28417381", "brand:wikipedia": "zh:八方雲集", "brand:zh": "八方雲集", "cuisine": "chinese", "name": "八方雲集", "name:en": "Eight Way", "name:zh": "八方雲集"}, "reference": {"key": "cuisine", "value": "chinese"}, "countryCodes": ["cn", "tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/和食さと": {"name": "和食さと", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/satorsgroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11304897", "amenity": "restaurant", "cuisine": "japanese"}, "addTags": {"amenity": "restaurant", "brand": "和食さと", "brand:en": "Washoku Sato", "brand:ja": "和食さと", "brand:wikidata": "Q11304897", "brand:wikipedia": "ja:SRSホールディングス", "cuisine": "japanese", "name": "和食さと", "name:en": "Washoku Sato", "name:ja": "和食さと"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": ["さと"], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/夢庵": {"name": "夢庵", "icon": "maki-restaurant-noodle", "imageURL": "https://pbs.twimg.com/profile_images/882903341038161921/2hoP7sIY_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11253593", "amenity": "restaurant", "cuisine": "japanese"}, "addTags": {"amenity": "restaurant", "brand": "夢庵", "brand:en": "Yumean", "brand:ja": "夢庵", "brand:wikidata": "Q11253593", "brand:wikipedia": "ja:すかいらーく", "cuisine": "japanese", "name": "夢庵", "name:en": "Yumean", "name:ja": "夢庵"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/大戸屋": {"name": "大戸屋", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/ootoya/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11435522", "amenity": "restaurant", "cuisine": "japanese"}, "addTags": {"amenity": "restaurant", "brand": "大戸屋", "brand:en": "Ootoya", "brand:ja": "大戸屋", "brand:wikidata": "Q11435522", "brand:wikipedia": "ja:大戸屋ホールディングス", "cuisine": "japanese", "name": "大戸屋", "name:en": "Ootoya", "name:ja": "大戸屋"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/大阪王将": {"name": "大阪王将", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/osakaohsho/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48743717", "amenity": "restaurant", "cuisine": "japanese;chinese"}, "addTags": {"amenity": "restaurant", "brand": "大阪王将", "brand:en": "Osaka Ohsho", "brand:ja": "大阪王将", "brand:wikidata": "Q48743717", "brand:wikipedia": "ja:大阪王将", "cuisine": "japanese;chinese", "name": "大阪王将", "name:en": "Osaka Ohsho", "name:ja": "大阪王将"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/天下一品": {"name": "天下一品", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/157798570902833/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11442172", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "天下一品", "brand:en": "Tenkaippin", "brand:wikidata": "Q11442172", "brand:wikipedia": "en:Tenkaippin", "cuisine": "ramen", "name": "天下一品", "name:en": "Tenkaippin"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/安楽亭": {"name": "安楽亭", "icon": "maki-restaurant", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11450866", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "安楽亭", "brand:en": "Anrakutei", "brand:wikidata": "Q11450866", "brand:wikipedia": "ja:安楽亭", "cuisine": "barbecue", "name": "安楽亭", "name:en": "Anrakutei"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/木曽路": {"name": "木曽路", "icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11518589", "amenity": "restaurant", "cuisine": "japanese"}, "addTags": {"amenity": "restaurant", "brand": "木曽路", "brand:en": "Kisoji", "brand:jp": "木曽路", "brand:wikidata": "Q11518589", "brand:wikipedia": "ja:木曽路 (企業)", "cuisine": "japanese", "name": "木曽路", "name:en": "Kisoji", "name:jp": "木曽路"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/chinese/海底捞火锅": {"name": "海底捞火锅", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/HaiDiLaoHotPot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5638920", "amenity": "restaurant", "cuisine": "chinese"}, "addTags": {"amenity": "restaurant", "brand": "海底捞火锅", "brand:en": "Hai Di Lao Hot Pot", "brand:wikidata": "Q5638920", "brand:wikipedia": "zh:海底捞", "cuisine": "chinese", "name": "海底捞火锅", "name:en": "Hai Di Lao Hot Pot"}, "reference": {"key": "cuisine", "value": "chinese"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/牛角": {"name": "牛角", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/GyuKakuJBBQ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11349387", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "牛角", "brand:en": "Gyū-Kaku", "brand:wikidata": "Q11349387", "brand:wikipedia": "en:Gyu-Kaku", "cuisine": "barbecue", "name": "牛角", "name:en": "Gyū-Kaku"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/japanese/華屋与兵衛": {"name": "華屋与兵衛", "icon": "maki-restaurant-noodle", "imageURL": "https://pbs.twimg.com/profile_images/1199220209174773760/c_VfagtA_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11620063", "amenity": "restaurant", "cuisine": "japanese"}, "addTags": {"amenity": "restaurant", "brand": "華屋与兵衛", "brand:en": "Hanaya Yohei", "brand:ja": "華屋与兵衛", "brand:wikidata": "Q11620063", "brand:wikipedia": "ja:華屋与兵衛 (レストラン)", "cuisine": "japanese", "name": "華屋与兵衛", "name:en": "Hanaya Yohei", "name:ja": "華屋与兵衛"}, "reference": {"key": "cuisine", "value": "japanese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/chinese/餃子の王将": {"name": "餃子の王将", "icon": "maki-restaurant-noodle", "imageURL": "https://graph.facebook.com/ohshosaiyo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11666805", "amenity": "restaurant", "cuisine": "chinese;gyoza"}, "addTags": {"amenity": "restaurant", "brand": "餃子の王将", "brand:en": "Gyoza no Ohsho", "brand:ja": "餃子の王将", "brand:wikidata": "Q11666805", "brand:wikipedia": "en:Gyoza no Ohsho", "cuisine": "chinese;gyoza", "name": "餃子の王将", "name:en": "Gyoza no Ohsho", "name:ja": "餃子の王将"}, "reference": {"key": "cuisine", "value": "chinese"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/restaurant/빕스": {"name": "빕스", "icon": "maki-restaurant", "imageURL": "https://graph.facebook.com/ivips/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12599540", "amenity": "restaurant"}, "addTags": {"amenity": "restaurant", "brand": "빕스", "brand:en": "Vips", "brand:ko": "빕스", "brand:wikidata": "Q12599540", "brand:wikipedia": "ko:빕스", "cuisine": "salad;steak_house", "name": "빕스", "name:en": "Vips", "name:ko": "빕스"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/school/Imagine Schools": {"name": "Imagine Schools", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/imaginecharters/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q6002737", "amenity": "school"}, "addTags": {"amenity": "school", "brand": "Imagine Schools", "brand:wikidata": "Q6002737", "brand:wikipedia": "en:Imagine Schools", "name": "Imagine Schools", "operator:type": "private_non_profit"}, "countryCodes": ["us"], "terms": ["imagine", "imagine school"], "matchScore": 2, "suggestion": true}, - "amenity/school/KIPP": {"name": "KIPP", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/KIPPFoundation/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q6423304", "amenity": "school"}, "addTags": {"amenity": "school", "brand": "KIPP", "brand:wikidata": "Q6423304", "brand:wikipedia": "en:KIPP (organization)", "name": "KIPP", "official_name": "Knowledge Is Power Program", "operator:type": "private_non_profit"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/school/Success Academy": {"name": "Success Academy", "icon": "temaki-school", "imageURL": "https://graph.facebook.com/SuccessAcademies/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q14707388", "amenity": "school"}, "addTags": {"amenity": "school", "brand": "Success Academy", "brand:wikidata": "Q14707388", "brand:wikipedia": "en:Success Academy Charter Schools", "name": "Success Academy", "operator:type": "private_non_profit"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/social_centre/American Legion Hall": {"name": "American Legion Hall", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/americanlegionhq/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q468865", "amenity": "social_centre"}, "addTags": {"amenity": "social_centre", "brand": "American Legion", "brand:wikidata": "Q468865", "brand:wikipedia": "en:American Legion", "name": "American Legion Hall", "social_centre:for": "veterans"}, "countryCodes": ["us"], "terms": ["american legion"], "matchScore": 2, "suggestion": true}, - "amenity/social_centre/Eagles Lodge": {"name": "Eagles Lodge", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/foegrandaerie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5493810", "amenity": "social_centre"}, "addTags": {"alt_name": "Aeries Lodge", "amenity": "social_centre", "brand": "Fraternal Order of Eagles", "brand:wikidata": "Q5493810", "brand:wikipedia": "en:Fraternal Order of Eagles", "name": "Eagles Lodge", "official_name": "Fraternal Order of Eagles", "short_name": "FOE"}, "countryCodes": ["us"], "terms": ["aeries", "eagles"], "matchScore": 2, "suggestion": true}, - "amenity/social_centre/Elks Lodge": {"name": "Elks Lodge", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/bpoeusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2895789", "amenity": "social_centre"}, "addTags": {"amenity": "social_centre", "brand": "Benevolent and Protective Order of Elks", "brand:wikidata": "Q2895789", "brand:wikipedia": "en:Benevolent and Protective Order of Elks", "name": "Elks Lodge", "official_name": "Benevolent and Protective Order of Elks", "short_name": "BPOE"}, "countryCodes": ["us"], "terms": ["elks"], "matchScore": 2, "suggestion": true}, - "amenity/social_centre/Lions Clubs International": {"name": "Lions Clubs International", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/lionsclubs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q270029", "amenity": "social_centre"}, "addTags": {"amenity": "social_centre", "brand": "Lions Clubs International", "brand:wikidata": "Q270029", "brand:wikipedia": "en:Lions Clubs International", "name": "Lions Clubs International"}, "terms": ["lions club", "lions club international", "lions clubs"], "matchScore": 2, "suggestion": true}, - "amenity/social_centre/Moose Lodge": {"name": "Moose Lodge", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/heardofmoose/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6908585", "amenity": "social_centre"}, "addTags": {"amenity": "social_centre", "brand": "Loyal Order of Moose", "brand:wikidata": "Q6908585", "brand:wikipedia": "en:Loyal Order of Moose", "name": "Moose Lodge", "official_name": "Loyal Order of Moose"}, "countryCodes": ["bm", "ca", "us"], "terms": ["moose"], "matchScore": 2, "suggestion": true}, - "amenity/social_centre/Odd Fellows Hall": {"name": "Odd Fellows Hall", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/IOOFSGL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1425508", "amenity": "social_centre"}, "addTags": {"amenity": "social_centre", "brand": "Independent Order of Odd Fellows", "brand:wikidata": "Q1425508", "brand:wikipedia": "en:Independent Order of Odd Fellows", "name": "Odd Fellows Hall", "official_name": "Independent Order of Odd Fellows", "short_name": "IOOF"}, "terms": ["odd fellow", "odd fellows"], "matchScore": 2, "suggestion": true}, - "amenity/social_centre/Orioles Nest": {"name": "Orioles Nest", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/146663135430661/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5493805", "amenity": "social_centre"}, "addTags": {"amenity": "social_centre", "brand": "Fraternal Order Orioles", "brand:wikidata": "Q5493805", "brand:wikipedia": "en:Fraternal Order Orioles", "name": "Orioles Nest", "official_name": "Fraternal Order Orioles", "short_name": "FOO"}, "countryCodes": ["us"], "terms": ["fraternal order of orioles", "oriole nest", "orioles"], "matchScore": 2, "suggestion": true}, - "amenity/social_centre/Royal Canadian Legion Hall": {"name": "Royal Canadian Legion Hall", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/CanadianLegion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3270231", "amenity": "social_centre"}, "addTags": {"amenity": "social_centre", "brand": "Royal Canadian Legion", "brand:wikidata": "Q3270231", "brand:wikipedia": "en:Royal Canadian Legion", "name": "Royal Canadian Legion Hall", "short_name": "RCL"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/social_centre/VFW Post": {"name": "VFW Post", "icon": "fas-handshake", "imageURL": "https://graph.facebook.com/VFWFans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3556413", "amenity": "social_centre"}, "addTags": {"amenity": "social_centre", "brand": "Veterans of Foreign Wars of the United States", "brand:wikidata": "Q3556413", "brand:wikipedia": "en:Veterans of Foreign Wars", "name": "VFW Post", "name:en": "VFW Post", "official_name": "Veterans of Foreign Wars of the United States", "short_name": "VFW", "social_centre:for": "veterans"}, "countryCodes": ["de", "jp", "kr", "ph", "th", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/social_facility/Boys & Girls Club": {"name": "Boys & Girls Club", "icon": "temaki-social_facility", "imageURL": "https://graph.facebook.com/bgca.clubs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2923055", "amenity": "social_facility"}, "addTags": {"amenity": "social_facility", "brand": "Boys & Girls Club", "brand:wikidata": "Q2923055", "brand:wikipedia": "en:Boys & Girls Clubs of America", "name": "Boys & Girls Club", "social_facility": "outreach", "social_facility:for": "children"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/social_facility/ONCE": {"name": "ONCE", "icon": "temaki-social_facility", "imageURL": "https://graph.facebook.com/ONCE.org/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1750397", "amenity": "social_facility"}, "addTags": {"amenity": "social_facility", "brand": "ONCE", "brand:wikidata": "Q1750397", "brand:wikipedia": "es:Organización Nacional de Ciegos Españoles", "name": "ONCE", "official_name": "Organización Nacional de Ciegos Españoles", "social_facility": "outreach", "social_facility:for": "blind"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/social_facility/Vet Center": {"name": "Vet Center", "icon": "temaki-social_facility", "imageURL": "https://graph.facebook.com/VeteransHealth/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6580225", "amenity": "social_facility"}, "addTags": {"amenity": "social_facility", "brand": "VA", "brand:wikidata": "Q6580225", "brand:wikipedia": "en:Veterans Health Administration", "healthcare": "counselling", "healthcare:counselling": "psychiatry", "healthcare:for": "veterans", "name": "Vet Center", "social_facility": "healthcare;outreach", "social_facility:for": "veterans"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/university/DeVry University": {"name": "DeVry University", "icon": "maki-college", "imageURL": "https://graph.facebook.com/DEVRYUNIVERSITY/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q3298441", "amenity": "university"}, "addTags": {"amenity": "university", "brand": "DeVry University", "brand:wikidata": "Q3298441", "brand:wikipedia": "en:DeVry University", "name": "DeVry University", "short_name": "DeVry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/university/Strayer University": {"name": "Strayer University", "icon": "maki-college", "imageURL": "https://graph.facebook.com/StrayerUniversity/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q7622587", "amenity": "university"}, "addTags": {"amenity": "university", "brand": "Strayer University", "brand:wikidata": "Q7622587", "brand:wikipedia": "en:Strayer University", "name": "Strayer University", "short_name": "Strayer"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/university/University of Phoenix": {"name": "University of Phoenix", "icon": "maki-college", "imageURL": "https://graph.facebook.com/universityofphoenix/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q1889100", "amenity": "university"}, "addTags": {"amenity": "university", "brand": "University of Phoenix", "brand:wikidata": "Q1889100", "brand:wikipedia": "en:University of Phoenix", "name": "University of Phoenix", "short_name": "UOPX"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/Autosur": {"name": "Autosur", "icon": "maki-car", "imageURL": "https://graph.facebook.com/autosurfrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64224807", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "Autosur", "brand:wikidata": "Q64224807", "name": "Autosur"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/Autovision": {"name": "Autovision", "icon": "maki-car", "imageURL": "https://graph.facebook.com/AutovisionFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64224842", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "Autovision", "brand:wikidata": "Q64224842", "name": "Autovision"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/Dekra": {"name": "Dekra", "icon": "maki-car", "imageURL": "https://graph.facebook.com/DEKRA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q383711", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "Dekra", "brand:wikidata": "Q383711", "brand:wikipedia": "en:Dekra", "name": "Dekra", "official_name": "Dekra Automotive"}, "countryCodes": ["de", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/Sécuritest": {"name": "Sécuritest", "icon": "maki-car", "imageURL": "https://graph.facebook.com/218871841874062/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64224992", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "Sécuritest", "brand:wikidata": "Q64224992", "name": "Sécuritest"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/TÜV Hanse": {"name": "TÜV Hanse", "icon": "maki-car", "imageURL": "https://graph.facebook.com/tuevhanse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2463537", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "TÜV Hanse", "brand:wikidata": "Q2463537", "brand:wikipedia": "de:TÜV Hanse", "name": "TÜV Hanse", "short_name": "TÜV"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/TÜV Hessen": {"name": "TÜV Hessen", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Tuev.Hessen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2463542", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "TÜV Hessen", "brand:wikidata": "Q2463542", "brand:wikipedia": "de:TÜV Hessen", "name": "TÜV Hessen", "short_name": "TÜV"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/TÜV Nord": {"name": "TÜV Nord", "icon": "maki-car", "imageURL": "https://graph.facebook.com/tuevnordde/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2463547", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "TÜV Nord", "brand:wikidata": "Q2463547", "brand:wikipedia": "de:TÜV Nord", "name": "TÜV Nord", "short_name": "TÜV"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/TÜV Rheinland": {"name": "TÜV Rheinland", "icon": "maki-car", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTUEV-Rheinland-Logo2.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q632391", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "TÜV Rheinland", "brand:wikidata": "Q632391", "brand:wikipedia": "de:TÜV Rheinland", "name": "TÜV Rheinland", "short_name": "TÜV"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/TÜV Saarland": {"name": "TÜV Saarland", "icon": "maki-car", "imageURL": "https://graph.facebook.com/TUEVSeminare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q996314", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "TÜV Saarland", "brand:wikidata": "Q996314", "brand:wikipedia": "de:TÜV Saarland", "name": "TÜV Saarland", "short_name": "TÜV"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/TÜV Süd": {"name": "TÜV Süd", "icon": "maki-car", "imageURL": "https://graph.facebook.com/123967834361715/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q880718", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "TÜV Süd", "brand:wikidata": "Q880718", "brand:wikipedia": "de:TÜV Süd", "name": "TÜV Süd", "short_name": "TÜV"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vehicle_inspection/TÜV Thüringen": {"name": "TÜV Thüringen", "icon": "maki-car", "imageURL": "https://graph.facebook.com/tuevthueringen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2463551", "amenity": "vehicle_inspection"}, "addTags": {"amenity": "vehicle_inspection", "brand": "TÜV Thüringen", "brand:wikidata": "Q2463551", "brand:wikipedia": "de:TÜV Thüringen", "name": "TÜV Thüringen", "short_name": "TÜV"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/parcel_pickup/Amazon Locker": {"name": "Amazon Locker", "icon": "temaki-vending_lockers", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAmazon%20locker%20logotype.png&width=100", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q16974764", "amenity": "vending_machine", "vending": "parcel_pickup"}, "addTags": {"amenity": "vending_machine", "brand": "Amazon Locker", "brand:wikidata": "Q16974764", "brand:wikipedia": "en:Amazon Locker", "name": "Amazon Locker", "vending": "parcel_pickup"}, "reference": {"key": "vending", "value": "parcel_pickup"}, "countryCodes": ["de", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/parcel_pickup/Amazonロッカー": {"name": "Amazonロッカー", "icon": "temaki-vending_lockers", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAmazon%20locker%20logotype.png&width=100", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q16974764", "amenity": "vending_machine", "vending": "parcel_pickup"}, "addTags": {"alt_name": "アマゾン・ロッカー", "amenity": "vending_machine", "brand": "Amazonロッカー", "brand:en": "Amazon Locker", "brand:ja": "Amazonロッカー", "brand:wikidata": "Q16974764", "brand:wikipedia": "ja:Amazonロッカー", "name": "Amazonロッカー", "name:en": "Amazon Locker", "name:ja": "Amazonロッカー", "vending": "parcel_pickup"}, "reference": {"key": "vending", "value": "parcel_pickup"}, "countryCodes": ["jp"], "terms": ["アマゾン・ロッカー"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/AmeriGas": {"name": "AmeriGas", "icon": "temaki-vending_machine", "imageURL": "https://graph.facebook.com/AmeriGas/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q23130318", "amenity": "vending_machine"}, "addTags": {"amenity": "vending_machine", "brand": "AmeriGas", "brand:wikidata": "Q23130318", "fuel:lpg": "yes", "name": "AmeriGas", "vending": "gas"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/public_transport_tickets/Automat ŚKUP": {"name": "Automat ŚKUP", "icon": "temaki-vending_tickets", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q24945427", "amenity": "vending_machine", "vending": "public_transport_tickets"}, "addTags": {"amenity": "vending_machine", "brand": "Automat ŚKUP", "brand:wikidata": "Q24945427", "brand:wikipedia": "pl:Śląska Karta Usług Publicznych", "name": "Automat ŚKUP", "vending": "public_transport_tickets"}, "reference": {"key": "vending", "value": "public_transport_tickets"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/public_transport_tickets/BKK-automata": {"name": "BKK-automata", "icon": "temaki-vending_tickets", "imageURL": "https://graph.facebook.com/bkkbudapest/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q608917", "amenity": "vending_machine", "vending": "public_transport_tickets"}, "addTags": {"amenity": "vending_machine", "brand": "BKK-automata", "brand:wikidata": "Q608917", "brand:wikipedia": "hu:Budapesti Közlekedési Központ", "name": "BKK-automata", "vending": "public_transport_tickets"}, "reference": {"key": "vending", "value": "public_transport_tickets"}, "countryCodes": ["hu"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/electronics/Best Buy Express": {"name": "Best Buy Express", "icon": "temaki-vending_machine", "imageURL": "https://graph.facebook.com/bestbuy/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q533415", "amenity": "vending_machine", "vending": "electronics"}, "addTags": {"amenity": "vending_machine", "brand": "Best Buy Express", "brand:wikidata": "Q533415", "name": "Best Buy Express", "vending": "electronics"}, "reference": {"key": "vending", "value": "electronics"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/Blue Rhino": {"name": "Blue Rhino", "icon": "temaki-vending_machine", "imageURL": "https://graph.facebook.com/BlueRhino/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q65681213", "amenity": "vending_machine"}, "addTags": {"amenity": "vending_machine", "brand": "Blue Rhino", "brand:wikidata": "Q65681213", "fuel:lpg": "yes", "name": "Blue Rhino", "vending": "gas"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/CVS Pharmacy": {"name": "CVS Pharmacy", "icon": "temaki-vending_machine", "imageURL": "https://graph.facebook.com/CVS/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q2078880", "amenity": "vending_machine"}, "addTags": {"amenity": "vending_machine", "brand": "CVS Pharmacy", "brand:wikidata": "Q2078880", "brand:wikipedia": "en:CVS Pharmacy", "name": "CVS Pharmacy", "short_name": "CVS", "vending": "chemist"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/parcel_pickup_dropoff/DHL Packstation": {"name": "DHL Packstation", "icon": "temaki-vending_lockers", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q1766703", "amenity": "vending_machine", "vending": "parcel_pickup;parcel_mail_in"}, "addTags": {"amenity": "vending_machine", "brand": "Packstation", "brand:wikidata": "Q1766703", "brand:wikipedia": "en:Packstation", "name": "DHL Packstation", "vending": "parcel_pickup;parcel_mail_in"}, "reference": {"key": "vending", "value": "parcel_pickup;parcel_mail_in"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/DHL Paketbox": {"name": "DHL Paketbox", "icon": "temaki-vending_machine", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q2046604", "amenity": "vending_machine"}, "addTags": {"amenity": "vending_machine", "brand": "Paketbox", "brand:wikidata": "Q2046604", "brand:wikipedia": "de:Paketbox", "name": "DHL Paketbox", "vending": "parcel_mail_in"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/excrement_bags/Dog-Station": {"name": "Dog-Station", "icon": "temaki-vending_pet_waste", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q63720061", "amenity": "vending_machine", "vending": "excrement_bags"}, "addTags": {"amenity": "vending_machine", "brand": "Dog-Station", "brand:wikidata": "Q63720061", "name": "Dog-Station", "vending": "excrement_bags"}, "reference": {"key": "vending", "value": "excrement_bags"}, "countryCodes": ["at", "de", "dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/ice_cubes/Home City Ice": {"name": "Home City Ice", "icon": "temaki-vending_ice", "imageURL": "https://graph.facebook.com/HomeCityIceJobs/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q5888287", "amenity": "vending_machine", "vending": "ice_cubes"}, "addTags": {"amenity": "vending_machine", "brand": "Home City Ice", "brand:wikidata": "Q5888287", "name": "Home City Ice", "vending": "ice_cubes"}, "reference": {"key": "vending", "value": "ice_cubes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/cigarettes/JT": {"name": "JT", "icon": "temaki-vending_cigarettes", "imageURL": "https://pbs.twimg.com/profile_images/601769729485864961/sO8VLHX-_bigger.png", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q898568", "amenity": "vending_machine", "vending": "cigarettes"}, "addTags": {"amenity": "vending_machine", "brand": "JT", "brand:wikidata": "Q898568", "brand:wikipedia": "ja:日本たばこ産業", "name": "JT", "official_name": "日本たばこ産業", "official_name:en": "Japan Tobacco", "vending": "cigarettes"}, "reference": {"key": "vending", "value": "cigarettes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/public_transport_tickets/KKM": {"name": "KKM", "icon": "temaki-vending_tickets", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q57515549", "amenity": "vending_machine", "vending": "public_transport_tickets"}, "addTags": {"amenity": "vending_machine", "brand": "KKM", "brand:wikidata": "Q57515549", "name": "KKM", "vending": "public_transport_tickets"}, "reference": {"key": "vending", "value": "public_transport_tickets"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/parcel_pickup/Ozon Box": {"name": "Ozon Box", "icon": "temaki-vending_lockers", "imageURL": "https://graph.facebook.com/ozon.ru/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q2365235", "amenity": "vending_machine", "vending": "parcel_pickup"}, "addTags": {"amenity": "vending_machine", "brand": "Ozon Box", "brand:wikidata": "Q2365235", "brand:wikipedia": "ru:Ozon.ru", "name": "Ozon Box", "vending": "parcel_pickup"}, "reference": {"key": "vending", "value": "parcel_pickup"}, "countryCodes": ["ru"], "terms": ["постамат ozon box"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/parcel_pickup/PUDOステーション": {"name": "PUDOステーション", "icon": "temaki-vending_lockers", "imageURL": "https://pbs.twimg.com/profile_images/788879051364573184/M1lHJhaS_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q86738066", "amenity": "vending_machine", "vending": "parcel_pickup"}, "addTags": {"alt_name": "プドー・ステーション", "amenity": "vending_machine", "brand": "プドー", "brand:en": "PUDO", "brand:ja": "プドー", "brand:wikidata": "Q86738066", "brand:wikipedia": "ja:Packcity Japan", "name": "PUDOステーション", "name:en": "PUDO Station", "name:ja": "PUDOステーション", "vending": "parcel_pickup"}, "reference": {"key": "vending", "value": "parcel_pickup"}, "countryCodes": ["jp"], "terms": ["プドー・ステーション"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/parcel_pickup_dropoff/Paczkomat InPost": {"name": "Paczkomat InPost", "icon": "temaki-vending_lockers", "imageURL": "https://graph.facebook.com/paczkomaty/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q3182097", "amenity": "vending_machine", "vending": "parcel_pickup;parcel_mail_in"}, "addTags": {"amenity": "vending_machine", "brand": "InPost", "brand:wikidata": "Q3182097", "brand:wikipedia": "pl:InPost", "name": "Paczkomat InPost", "vending": "parcel_pickup;parcel_mail_in"}, "reference": {"key": "vending", "value": "parcel_pickup;parcel_mail_in"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/parking_tickets/ParkPlus (Calgary)": {"name": "ParkPlus (Calgary)", "icon": "temaki-vending_tickets", "imageURL": "https://graph.facebook.com/CalgaryParkingAuthority/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q63719595", "amenity": "vending_machine", "vending": "parking_tickets"}, "addTags": {"amenity": "vending_machine", "brand": "ParkPlus", "brand:wikidata": "Q63719595", "name": "ParkPlus", "vending": "parking_tickets"}, "reference": {"key": "vending", "value": "parking_tickets"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/Redbox": {"name": "Redbox", "icon": "temaki-vending_machine", "imageURL": "https://graph.facebook.com/redbox/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q7305489", "amenity": "vending_machine"}, "addTags": {"amenity": "vending_machine", "brand": "Redbox", "brand:wikidata": "Q7305489", "brand:wikipedia": "en:Redbox", "name": "Redbox", "vending": "movies"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/ice_cubes/Reddy Ice": {"name": "Reddy Ice", "icon": "temaki-vending_ice", "imageURL": "https://graph.facebook.com/RealReddyIce/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q7305666", "amenity": "vending_machine", "vending": "ice_cubes"}, "addTags": {"amenity": "vending_machine", "brand": "Reddy Ice", "brand:wikidata": "Q7305666", "brand:wikipedia": "en:Reddy Ice", "name": "Reddy Ice", "vending": "ice_cubes"}, "reference": {"key": "vending", "value": "ice_cubes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/excrement_bags/Robidog": {"name": "Robidog", "icon": "temaki-vending_pet_waste", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q2159689", "amenity": "vending_machine", "vending": "excrement_bags"}, "addTags": {"amenity": "vending_machine", "brand": "Robidog", "brand:wikidata": "Q2159689", "brand:wikipedia": "de:Robidog", "name": "Robidog", "vending": "excrement_bags"}, "reference": {"key": "vending", "value": "excrement_bags"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/parcel_pickup_dropoff/Smartpost": {"name": "Smartpost", "icon": "temaki-vending_lockers", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q7543889", "amenity": "vending_machine", "vending": "parcel_pickup;parcel_mail_in"}, "addTags": {"amenity": "vending_machine", "brand": "Smartpost", "brand:wikidata": "Q7543889", "brand:wikipedia": "fi:SmartPOST", "name": "Smartpost", "vending": "parcel_pickup;parcel_mail_in"}, "reference": {"key": "vending", "value": "parcel_pickup;parcel_mail_in"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/cigarettes/Tobaccoland": {"name": "Tobaccoland", "icon": "temaki-vending_cigarettes", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q1439872", "amenity": "vending_machine", "vending": "cigarettes"}, "addTags": {"amenity": "vending_machine", "brand": "Tobaccoland", "brand:wikidata": "Q1439872", "brand:wikipedia": "de:Tobaccoland Automatengesellschaft", "name": "Tobaccoland", "vending": "cigarettes"}, "reference": {"key": "vending", "value": "cigarettes"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/coffee/UCC": {"name": "UCC", "icon": "temaki-vending_hot_drink", "imageURL": "https://graph.facebook.com/UccUeshimaCoffee/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q1185060", "amenity": "vending_machine", "vending": "coffee"}, "addTags": {"amenity": "vending_machine", "brand": "UCC", "brand:wikidata": "Q1185060", "brand:wikipedia": "ja:UCC上島珈琲", "name": "UCC", "official_name": "上島珈琲", "official_name:en": "Ueshima Coffee", "official_name:ja": "上島珈琲", "vending": "coffee"}, "reference": {"key": "vending", "value": "coffee"}, "countryCodes": ["jp"], "terms": ["ucc上島珈琲"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/drinks/い・ろ・は・す": {"name": "い・ろ・は・す", "icon": "temaki-vending_cold_drink", "imageURL": "https://pbs.twimg.com/profile_images/1098945872665006081/r_jFL17c_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q11260234", "amenity": "vending_machine", "vending": "drinks"}, "addTags": {"alt_name:en": "ILOHAS", "amenity": "vending_machine", "brand": "い・ろ・は・す", "brand:en": "I Lohas", "brand:ja": "い・ろ・は・す", "brand:wikidata": "Q11260234", "brand:wikipedia": "ja:い・ろ・は・す", "drink:water": "yes", "name": "い・ろ・は・す", "name:en": "I Lohas", "name:ja": "い・ろ・は・す", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "countryCodes": ["jp"], "terms": ["i・lohas"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/food/だし道楽": {"name": "だし道楽", "icon": "temaki-vending_machine", "imageURL": "https://pbs.twimg.com/profile_images/1301628839/_______11.03.05__bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q60989429", "amenity": "vending_machine", "vending": "food"}, "addTags": {"amenity": "vending_machine", "brand": "だし道楽", "brand:en": "Dashi Douraku", "brand:ja": "だし道楽", "brand:wikidata": "Q60989429", "brand:wikipedia": "ja:だし道楽", "drink:brewery": "yes", "name": "だし道楽", "name:en": "Dashi Douraku", "name:ja": "だし道楽", "vending": "food"}, "reference": {"key": "vending", "value": "food"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/parcel_pickup/はこぽす": {"name": "はこぽす", "icon": "temaki-vending_lockers", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q11509261", "amenity": "vending_machine", "vending": "parcel_pickup"}, "addTags": {"amenity": "vending_machine", "brand": "はこぽす", "brand:en": "Hakopost", "brand:ja": "はこぽす", "brand:wikidata": "Q11509261", "brand:wikipedia": "ja:日本郵便輸送", "name": "はこぽす", "name:en": "Hakopost", "name:ja": "はこぽす", "vending": "parcel_pickup"}, "reference": {"key": "vending", "value": "parcel_pickup"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/アキュア": {"name": "アキュア", "icon": "temaki-vending_machine", "imageURL": "https://pbs.twimg.com/profile_images/936410984486285314/99cOuXnb_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q11226260", "amenity": "vending_machine"}, "addTags": {"amenity": "vending_machine", "brand": "アキュア", "brand:en": "Acure", "brand:ja": "アキュア", "brand:wikidata": "Q11226260", "brand:wikipedia": "ja:JR東日本ウォータービジネス", "name": "アキュア", "name:en": "Acure", "name:ja": "アキュア"}, "countryCodes": ["jp"], "terms": ["acureの自販機"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/drinks/アサヒビール": {"name": "アサヒビール", "icon": "temaki-vending_cold_drink", "imageURL": "https://pbs.twimg.com/profile_images/973936797158752257/bPRcecBW_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q720479", "amenity": "vending_machine", "vending": "drinks"}, "addTags": {"alt_name:en": "Asahi Beer", "amenity": "vending_machine", "brand": "アサヒビール", "brand:en": "Asahi Breweries", "brand:ja": "アサヒビール", "brand:wikidata": "Q720479", "brand:wikipedia": "ja:アサヒビール", "drink:brewery": "yes", "name": "アサヒビール", "name:en": "Asahi Breweries", "name:ja": "アサヒビール", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/coffee/アペックス": {"name": "アペックス", "icon": "temaki-vending_hot_drink", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAPEX%20Corporation%20logo.svg&width=100", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q11284782", "amenity": "vending_machine", "vending": "coffee"}, "addTags": {"amenity": "vending_machine", "brand": "アペックス", "brand:en": "Apex", "brand:ja": "アペックス", "brand:wikidata": "Q11284782", "brand:wikipedia": "ja:アペックス (企業)", "name": "アペックス", "name:en": "Apex", "name:ja": "アペックス", "vending": "coffee"}, "reference": {"key": "vending", "value": "coffee"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/food/カップヌードル": {"name": "カップヌードル", "icon": "temaki-vending_machine", "imageURL": "https://pbs.twimg.com/profile_images/604091541892694016/KKAI5OpD_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q1143401", "amenity": "vending_machine", "vending": "food"}, "addTags": {"amenity": "vending_machine", "brand": "カップヌードル", "brand:en": "Cup Noodle", "brand:ja": "カップヌードル", "brand:wikidata": "Q1143401", "brand:wikipedia": "ja:カップヌードル", "name": "カップヌードル", "name:en": "Cup Noodle", "name:ja": "カップヌードル", "vending": "food"}, "reference": {"key": "vending", "value": "food"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/drinks/カルピス": {"name": "カルピス", "icon": "temaki-vending_cold_drink", "imageURL": "https://graph.facebook.com/calpis.jp/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q1027454", "amenity": "vending_machine", "vending": "drinks"}, "addTags": {"alt_name:en": "Calpico", "amenity": "vending_machine", "brand": "カルピス", "brand:en": "Calpis", "brand:ja": "カルピス", "brand:wikidata": "Q1027454", "brand:wikipedia": "ja:カルピス", "name": "カルピス", "name:en": "Calpis", "name:ja": "カルピス", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/drinks/キリンビバレッジ": {"name": "キリンビバレッジ", "icon": "temaki-vending_cold_drink", "imageURL": "https://pbs.twimg.com/profile_images/1196231561202429952/QNGBtBIT_bigger.png", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q1833953", "amenity": "vending_machine", "vending": "drinks"}, "addTags": {"alt_name": "キリンBV", "amenity": "vending_machine", "brand": "キリンビバレッジ", "brand:en": "Kirin Beverage", "brand:ja": "キリンビバレッジ", "brand:wikidata": "Q1833953", "brand:wikipedia": "ja:キリンビバレッジ", "drink:tea": "yes", "name": "キリンビバレッジ", "name:en": "Kirin Beverage", "name:ja": "キリンビバレッジ", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "countryCodes": ["jp"], "terms": ["キリンbv"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/drinks/キリンビール": {"name": "キリンビール", "icon": "temaki-vending_cold_drink", "imageURL": "https://pbs.twimg.com/profile_images/1018867579438358528/FJP545uf_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q13403399", "amenity": "vending_machine", "vending": "drinks"}, "addTags": {"alt_name:en": "Kirin Beer", "amenity": "vending_machine", "brand": "キリンビール", "brand:en": "Kirin Brewery", "brand:ja": "キリンビール", "brand:wikidata": "Q13403399", "brand:wikipedia": "ja:麒麟麦酒", "drink:brewery": "yes", "name": "キリンビール", "name:en": "Kirin Brewery", "name:ja": "キリンビール", "official_name": "麒麟麦酒", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/drinks/コカ・コーラ": {"name": "コカ・コーラ", "icon": "temaki-vending_cold_drink", "imageURL": "https://graph.facebook.com/CocaColaUnitedStates/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q2813", "amenity": "vending_machine", "vending": "drinks"}, "addTags": {"amenity": "vending_machine", "brand": "コカ・コーラ", "brand:en": "Coca-Cola", "brand:ja": "コカ・コーラ", "brand:wikidata": "Q2813", "brand:wikipedia": "ja:コカ・コーラ", "drink:cola": "yes", "name": "コカ・コーラ", "name:en": "Coca-Cola", "name:ja": "コカ・コーラ", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/drinks/サントリー": {"name": "サントリー", "icon": "temaki-vending_cold_drink", "imageURL": "https://pbs.twimg.com/profile_images/1231356354360512512/T8myLk6B_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q1345267", "amenity": "vending_machine", "vending": "drinks"}, "addTags": {"amenity": "vending_machine", "brand": "サントリー", "brand:en": "Suntory", "brand:ja": "サントリー", "brand:wikidata": "Q1345267", "brand:wikipedia": "ja:サントリー", "name": "サントリー", "name:en": "Suntory", "name:ja": "サントリー", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/coffee/ジョージア": {"name": "ジョージア", "icon": "temaki-vending_hot_drink", "imageURL": "https://pbs.twimg.com/profile_images/378800000398142432/4ac2b7d1085d6e1446521a0a497c14a1_bigger.png", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q5547323", "amenity": "vending_machine", "vending": "coffee"}, "addTags": {"amenity": "vending_machine", "brand": "ジョージア", "brand:en": "Georgia", "brand:ja": "ジョージア", "brand:wikidata": "Q5547323", "brand:wikipedia": "ja:ジョージア (缶コーヒー)", "name": "ジョージア", "name:en": "Georgia", "name:ja": "ジョージア", "vending": "coffee"}, "reference": {"key": "vending", "value": "coffee"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/ice_cream/セブンティーンアイス": {"name": "セブンティーンアイス", "icon": "temaki-vending_ice_cream", "imageURL": "https://pbs.twimg.com/profile_images/979573400946360321/cksIFGZn_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q11314427", "amenity": "vending_machine", "vending": "ice_cream"}, "addTags": {"amenity": "vending_machine", "brand": "セブンティーンアイス", "brand:en": "Seventeen Ice", "brand:ja": "セブンティーンアイス", "brand:wikidata": "Q11314427", "brand:wikipedia": "ja:セブンティーンアイス", "name": "セブンティーンアイス", "name:en": "Seventeen Ice", "name:ja": "セブンティーンアイス", "vending": "ice_cream"}, "reference": {"key": "vending", "value": "ice_cream"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/drinks/ダイドードリンコ": {"name": "ダイドードリンコ", "icon": "temaki-vending_cold_drink", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDyDo%20DRINCO%20logo.svg&width=100", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q11316814", "amenity": "vending_machine", "vending": "drinks"}, "addTags": {"amenity": "vending_machine", "brand": "ダイドー", "brand:en": "DyDo", "brand:ja": "ダイドー", "brand:wikidata": "Q11316814", "brand:wikipedia": "ja:ダイドードリンコ", "drink:soft_drink": "yes", "name": "ダイドードリンコ", "name:en": "DyDo Drinco", "name:ja": "ダイドードリンコ", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "countryCodes": ["jp"], "terms": ["dydoドリンコ", "ダイドー"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/drinks/チェリオ": {"name": "チェリオ", "icon": "temaki-vending_cold_drink", "imageURL": "https://pbs.twimg.com/profile_images/1241958420204228611/k2rp6A06_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q5089350", "amenity": "vending_machine", "vending": "drinks"}, "addTags": {"amenity": "vending_machine", "brand": "チェリオ", "brand:en": "Cheerio", "brand:ja": "チェリオ", "brand:wikidata": "Q5089350", "brand:wikipedia": "ja:チェリオ", "drink:soft_drink": "yes", "name": "チェリオ", "name:en": "Cheerio", "name:ja": "チェリオ", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/food/ドール": {"name": "ドール", "icon": "temaki-vending_machine", "imageURL": "https://graph.facebook.com/Dole/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q492747", "amenity": "vending_machine", "vending": "food"}, "addTags": {"amenity": "vending_machine", "brand": "ドール", "brand:en": "Dole", "brand:ja": "ドール", "brand:wikidata": "Q492747", "brand:wikipedia": "ja:ドール・フード・カンパニー", "name": "ドール", "name:en": "Dole", "name:ja": "ドール", "vending": "food"}, "reference": {"key": "vending", "value": "food"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/food/ニチレイフーズ": {"name": "ニチレイフーズ", "icon": "temaki-vending_machine", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNICHIREI%20Logo.svg&width=100", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q4921527", "amenity": "vending_machine", "vending": "food"}, "addTags": {"alt_name:en": "Nichirei 24 Hour Hot Menu Casual Frozen Foods", "amenity": "vending_machine", "brand": "ニチレイフーズ", "brand:en": "Nichirei Foods", "brand:ja": "ニチレイフーズ", "brand:wikidata": "Q4921527", "brand:wikipedia": "ja:ニチレイ", "name": "ニチレイフーズ", "name:en": "Nichirei Foods", "name:ja": "ニチレイフーズ", "vending": "food"}, "reference": {"key": "vending", "value": "food"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/ポッカサッポロ": {"name": "ポッカサッポロ", "icon": "temaki-vending_machine", "imageURL": "https://pbs.twimg.com/profile_images/1231348008400248832/ocgMAmg2_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q7208665", "amenity": "vending_machine"}, "addTags": {"amenity": "vending_machine", "brand": "ポッカサッポロ", "brand:en": "Pokka Sapporo", "brand:ja": "ポッカサッポロ", "brand:wikidata": "Q7208665", "brand:wikipedia": "ja:ポッカサッポロフード&ビバレッジ", "name": "ポッカサッポロ", "name:en": "Pokka Sapporo", "name:ja": "ポッカサッポロ", "vending": "water;food"}, "countryCodes": ["jp"], "terms": ["pokka sapporo"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/メトロの缶詰": {"name": "メトロの缶詰", "icon": "temaki-vending_machine", "imageURL": "https://pbs.twimg.com/profile_images/679938852216152065/W2kOEeg7_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q11343895", "amenity": "vending_machine"}, "addTags": {"alt_name:en": "Metocan Shop", "amenity": "vending_machine", "brand": "メトロの缶詰", "brand:en": "Metro Commerce", "brand:ja": "メトロの缶詰", "brand:wikidata": "Q11343895", "brand:wikipedia": "ja:メトロコマース", "name": "メトロの缶詰", "name:en": "Metro Commerce", "name:ja": "メトロの缶詰", "vending": "gift"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/ヤクルト": {"name": "ヤクルト", "icon": "temaki-vending_machine", "imageURL": "https://pbs.twimg.com/profile_images/1096332520969318400/X0iPDq5Q_bigger.png", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q16172223", "amenity": "vending_machine"}, "addTags": {"amenity": "vending_machine", "brand": "ヤクルト", "brand:en": "Yakult", "brand:ja": "ヤクルト", "brand:wikidata": "Q16172223", "brand:wikipedia": "ja:ヤクルト本社", "drink:milk": "yes", "name": "ヤクルト", "name:en": "Yakult", "name:ja": "ヤクルト", "vending": "milk"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/ice_cream/ロッテアイス": {"name": "ロッテアイス", "icon": "temaki-vending_ice_cream", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLotte%20logo.svg&width=100", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q24886018", "amenity": "vending_machine", "vending": "ice_cream"}, "addTags": {"amenity": "vending_machine", "brand": "ロッテアイス", "brand:en": "Lotte Ice Cream", "brand:ja": "ロッテアイス", "brand:wikidata": "Q24886018", "brand:wikipedia": "ja:ロッテアイス", "name": "ロッテアイス", "name:en": "Lotte Ice Cream", "name:ja": "ロッテアイス", "vending": "ice_cream"}, "reference": {"key": "vending", "value": "ice_cream"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/drinks/伊藤園": {"name": "伊藤園", "icon": "temaki-vending_cold_drink", "imageURL": "https://pbs.twimg.com/profile_images/690048455843024900/UkLiXQJu_bigger.jpg", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q3079325", "amenity": "vending_machine", "vending": "drinks"}, "addTags": {"alt_name:en": "ITOEN", "amenity": "vending_machine", "brand": "伊藤園", "brand:en": "Ito En", "brand:ja": "伊藤園", "brand:wikidata": "Q3079325", "brand:wikipedia": "ja:伊藤園", "drink:tea": "yes", "name": "伊藤園", "name:en": "Ito En", "name:ja": "伊藤園", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "countryCodes": ["jp"], "terms": ["ito en"], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/food/大塚食品": {"name": "大塚食品", "icon": "temaki-vending_machine", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FOtsuka%20Holdings%20logo.svg&width=100", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q11434124", "amenity": "vending_machine", "vending": "food"}, "addTags": {"amenity": "vending_machine", "brand": "大塚", "brand:en": "Otsuka", "brand:ja": "大塚", "brand:wikidata": "Q11434124", "brand:wikipedia": "ja:大塚食品", "name": "大塚食品", "name:en": "Otsuka Foods", "name:ja": "大塚食品", "vending": "food"}, "reference": {"key": "vending", "value": "food"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/vending_machine/food/明治": {"name": "明治", "icon": "temaki-vending_machine", "imageURL": "https://graph.facebook.com/MeijiCoLtd/picture?type=large", "geometry": ["point", "vertex"], "tags": {"brand:wikidata": "Q11512281", "amenity": "vending_machine", "vending": "food"}, "addTags": {"amenity": "vending_machine", "brand": "明治", "brand:en": "Meiji", "brand:ja": "明治", "brand:wikidata": "Q11512281", "brand:wikipedia": "ja:明治 (企業)", "name": "明治", "name:en": "Meiji", "name:ja": "明治", "vending": "food"}, "reference": {"key": "vending", "value": "food"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/veterinary/Banfield Pet Hospital": {"name": "Banfield Pet Hospital", "icon": "temaki-veterinary_care", "imageURL": "https://graph.facebook.com/BanfieldPetHospital/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882416", "amenity": "veterinary"}, "addTags": {"amenity": "veterinary", "brand": "Banfield Pet Hospital", "brand:wikidata": "Q2882416", "brand:wikipedia": "en:Banfield Pet Hospital", "name": "Banfield Pet Hospital"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "amenity/veterinary/VCA Animal Hospital": {"name": "VCA Animal Hospital", "icon": "temaki-veterinary_care", "imageURL": "https://graph.facebook.com/VCAAnimalHospitals/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7906620", "amenity": "veterinary"}, "addTags": {"amenity": "veterinary", "brand": "VCA Animal Hospital", "brand:wikidata": "Q7906620", "brand:wikipedia": "en:VCA Animal Hospitals", "name": "VCA Animal Hospital"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "craft/cleaning/Molly Maid": {"name": "Molly Maid", "icon": "temaki-vacuum", "imageURL": "https://graph.facebook.com/MollyMaid/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6896624", "craft": "cleaning"}, "addTags": {"brand": "Molly Maid", "brand:wikidata": "Q6896624", "brand:wikipedia": "en:Molly Maid", "craft": "cleaning", "name": "Molly Maid"}, "countryCodes": ["ca", "gb", "jp", "pt", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "craft/plumber/Mr. Rooter": {"name": "Mr. Rooter", "icon": "temaki-plumber", "imageURL": "https://pbs.twimg.com/profile_images/746187320223633408/_TPED5cc_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6929145", "craft": "plumber"}, "addTags": {"alt_name": "Mister Rooter", "brand": "Mr. Rooter", "brand:wikidata": "Q6929145", "brand:wikipedia": "en:Mr. Rooter", "craft": "plumber", "name": "Mr. Rooter", "official_name": "Mr. Rooter Plumbing"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "craft/signmaker/Fastsigns": {"name": "Fastsigns", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/FASTSIGNS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5437127", "craft": "signmaker"}, "addTags": {"brand": "Fastsigns", "brand:wikidata": "Q5437127", "brand:wikipedia": "en:Fastsigns", "craft": "signmaker", "name": "Fastsigns"}, "countryCodes": ["ae", "ca", "cl", "gb", "ky", "mx", "sa", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "craft/window_construction/K par K": {"name": "K par K", "icon": "temaki-window", "imageURL": "https://graph.facebook.com/KparKFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3191596", "craft": "window_construction"}, "addTags": {"brand": "K par K", "brand:wikidata": "Q3191596", "brand:wikipedia": "fr:K par K", "craft": "window_construction", "name": "K par K"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "healthcare/audiologist/Imperial Hearing": {"name": "Imperial Hearing", "icon": "maki-hospital", "imageURL": "https://graph.facebook.com/imperialhearingltdgl50/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q86997819", "healthcare": "audiologist"}, "addTags": {"brand": "Imperial Hearing", "brand:wikidata": "Q86997819", "healthcare": "audiologist", "name": "Imperial Hearing"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "healthcare/blood_donation/American Red Cross": {"name": "American Red Cross", "icon": "maki-blood-bank", "imageURL": "https://graph.facebook.com/redcross/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q470110", "healthcare": "blood_donation"}, "addTags": {"brand": "American Red Cross", "brand:wikidata": "Q470110", "brand:wikipedia": "en:The American National Red Cross", "donation:compensation": "no", "healthcare": "blood_donation", "name": "American Red Cross", "official_name": "The American National Red Cross", "short_name": "Red Cross"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "healthcare/blood_donation/Australian Red Cross Blood Service": {"name": "Australian Red Cross Blood Service", "icon": "maki-blood-bank", "imageURL": "https://graph.facebook.com/lifebloodau/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4824602", "healthcare": "blood_donation"}, "addTags": {"brand": "Australian Red Cross Blood Service", "brand:wikidata": "Q4824602", "brand:wikipedia": "en:Australian Red Cross Blood Service", "donation:compensation": "no", "healthcare": "blood_donation", "name": "Australian Red Cross Blood Service", "short_name": "Blood Service"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "healthcare/blood_donation/San Diego Blood Bank": {"name": "San Diego Blood Bank", "icon": "maki-blood-bank", "imageURL": "https://graph.facebook.com/sdbloodbank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87770169", "healthcare": "blood_donation"}, "addTags": {"brand": "San Diego Blood Bank", "brand:wikidata": "Q87770169", "healthcare": "blood_donation", "name": "San Diego Blood Bank", "short_name": "SDBB"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "healthcare/blood_donation/Thai Red Cross Society": {"name": "Thai Red Cross Society", "icon": "maki-blood-bank", "imageURL": "https://graph.facebook.com/ThaiRedCross/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4922087", "healthcare": "blood_donation"}, "addTags": {"brand": "Thai Red Cross Society", "brand:wikidata": "Q4922087", "brand:wikipedia": "en:Thai Red Cross Society", "donation:compensation": "no", "healthcare": "blood_donation", "name": "Thai Red Cross Society", "short_name": "Thai Red Cross"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "healthcare/counselling/Jenny Craig": {"name": "Jenny Craig", "icon": "fas-comments", "imageURL": "https://graph.facebook.com/jennycraig/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6179221", "healthcare": "counselling"}, "addTags": {"brand": "Jenny Craig", "brand:wikidata": "Q6179221", "brand:wikipedia": "en:Jenny Craig, Inc.", "healthcare": "counselling", "healthcare:counselling": "dietitian", "healthcare:speciality": "weight_loss", "name": "Jenny Craig"}, "countryCodes": ["au", "ca", "nz", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "healthcare/counselling/WW Studio": {"name": "WW Studio", "icon": "fas-comments", "imageURL": "https://graph.facebook.com/WW/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1929466", "healthcare": "counselling"}, "addTags": {"alt_name": "Weight Watchers", "brand": "WW Studio", "brand:wikidata": "Q1929466", "brand:wikipedia": "en:WW International", "healthcare": "counselling", "healthcare:counselling": "dietitian", "healthcare:speciality": "weight_loss", "name": "WW Studio"}, "terms": ["ww"], "matchScore": 2, "suggestion": true}, - "landuse/residential/Avalon": {"name": "Avalon", "icon": "maki-residential-community", "imageURL": "https://pbs.twimg.com/profile_images/859879308940193792/us4WbKaN_bigger.jpg", "geometry": ["area"], "tags": {"brand:wikidata": "Q64665938", "landuse": "residential"}, "addTags": {"brand": "Avalon", "brand:wikidata": "Q64665938", "landuse": "residential", "name": "Avalon", "residential": "apartments"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/adult_gaming_centre/ガイア": {"name": "ガイア", "icon": "temaki-casino", "imageURL": "https://graph.facebook.com/Gaia.amusement/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11295831", "leisure": "adult_gaming_centre"}, "addTags": {"brand": "ガイア", "brand:en": "GAIA", "brand:ja": "ガイア", "brand:wikidata": "Q11295831", "brand:wikipedia": "ja:ガイア (パチンコ)", "gambling": "pachinko", "leisure": "adult_gaming_centre", "name": "ガイア", "name:en": "GAIA", "name:ja": "ガイア"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/adult_gaming_centre/ダイナム": {"name": "ダイナム", "icon": "temaki-casino", "imageURL": "https://pbs.twimg.com/profile_images/957749330424709120/Lnm45Dp7_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10846977", "leisure": "adult_gaming_centre"}, "addTags": {"brand": "ダイナム", "brand:en": "Dynam", "brand:ja": "ダイナム", "brand:wikidata": "Q10846977", "brand:wikipedia": "ja:ダイナム", "gambling": "pachinko", "leisure": "adult_gaming_centre", "name": "ダイナム", "name:en": "Dynam", "name:ja": "ダイナム"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/adult_gaming_centre/マルハン": {"name": "マルハン", "icon": "temaki-casino", "imageURL": "https://graph.facebook.com/maruhan.fan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1905948", "leisure": "adult_gaming_centre"}, "addTags": {"brand": "マルハン", "brand:en": "Maruhan", "brand:ja": "マルハン", "brand:wikidata": "Q1905948", "brand:wikipedia": "ja:マルハン", "gambling": "pachinko", "leisure": "adult_gaming_centre", "name": "マルハン", "name:en": "Maruhan", "name:ja": "マルハン"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/amusement_arcade/アドアーズ": {"name": "アドアーズ", "icon": "maki-gaming", "imageURL": "https://pbs.twimg.com/profile_images/875637206055960576/Hjryy4Le_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q54843532", "leisure": "amusement_arcade"}, "addTags": {"brand": "アドアーズ", "brand:en": "Adores", "brand:ja": "アドアーズ", "brand:wikidata": "Q54843532", "brand:wikipedia": "ja:アドアーズ", "leisure": "amusement_arcade", "name": "アドアーズ", "name:en": "Adores", "name:ja": "アドアーズ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/amusement_arcade/アピナ": {"name": "アピナ", "icon": "maki-gaming", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55385192", "leisure": "amusement_arcade"}, "addTags": {"brand": "アピナ", "brand:en": "Apina", "brand:ja": "アピナ", "brand:wikidata": "Q55385192", "brand:wikipedia": "ja:共和コーポレーション", "leisure": "amusement_arcade", "name": "アピナ", "name:en": "Apina", "name:ja": "アピナ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/amusement_arcade/クラブセガ": {"name": "クラブセガ", "icon": "maki-gaming", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSega%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7446141", "leisure": "amusement_arcade"}, "addTags": {"alt_name": "セガワールド", "alt_name:en": "Sega World", "brand": "クラブセガ", "brand:en": "Club Sega", "brand:ja": "クラブセガ", "brand:wikidata": "Q7446141", "brand:wikipedia": "ja:セガ エンタテインメント", "leisure": "amusement_arcade", "name": "クラブセガ", "name:en": "Club Sega", "name:ja": "クラブセガ"}, "countryCodes": ["jp"], "terms": ["クラブsega", "セガ", "セガワールド"], "matchScore": 2, "suggestion": true}, - "leisure/amusement_arcade/タイトーステーション": {"name": "タイトーステーション", "icon": "maki-gaming", "imageURL": "https://graph.facebook.com/TAITO.Eng/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1054844", "leisure": "amusement_arcade"}, "addTags": {"brand": "タイトーステーション", "brand:en": "Taito Station", "brand:ja": "タイトーステーション", "brand:wikidata": "Q1054844", "brand:wikipedia": "ja:タイトー", "leisure": "amusement_arcade", "name": "タイトーステーション", "name:en": "Taito Station", "name:ja": "タイトーステーション"}, "countryCodes": ["jp"], "terms": ["タイトー"], "matchScore": 2, "suggestion": true}, - "leisure/amusement_arcade/ナムコ": {"name": "ナムコ", "icon": "maki-gaming", "imageURL": "https://pbs.twimg.com/profile_images/1078705639306579969/4Ago6TmH_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q309996", "leisure": "amusement_arcade"}, "addTags": {"brand": "ナムコ", "brand:en": "NAMCO", "brand:ja": "ナムコ", "brand:wikidata": "Q309996", "brand:wikipedia": "ja:バンダイナムコアミューズメント", "leisure": "amusement_arcade", "name": "ナムコ", "name:en": "NAMCO", "name:ja": "ナムコ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/bowling_alley/Hollywood Bowl": {"name": "Hollywood Bowl", "icon": "temaki-bowling", "imageURL": "https://graph.facebook.com/hollywoodbowluk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q80971952", "leisure": "bowling_alley"}, "addTags": {"brand": "Hollywood Bowl", "brand:wikidata": "Q80971952", "brand:wikipedia": "en:Hollywood Bowl Group", "leisure": "bowling_alley", "name": "Hollywood Bowl"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/bowling_alley/Strike Bowling Bar": {"name": "Strike Bowling Bar", "icon": "temaki-bowling", "imageURL": "https://graph.facebook.com/strikebowling/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7623769", "leisure": "bowling_alley"}, "addTags": {"brand": "Strike Bowling Bar", "brand:wikidata": "Q7623769", "brand:wikipedia": "en:Strike Bowling Bar", "leisure": "bowling_alley", "name": "Strike Bowling Bar"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/bowling_alley/ラウンドワン": {"name": "ラウンドワン", "icon": "temaki-bowling", "imageURL": "https://graph.facebook.com/Round1.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11346634", "leisure": "bowling_alley"}, "addTags": {"brand": "ラウンドワン", "brand:en": "ROUND1", "brand:ja": "ラウンドワン", "brand:wikidata": "Q11346634", "brand:wikipedia": "ja:ラウンドワン", "leisure": "bowling_alley", "name": "ラウンドワン", "name:en": "ROUND1", "name:ja": "ラウンドワン"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/dog_park/Kamp K9": {"name": "Kamp K9", "icon": "maki-dog-park", "imageURL": "https://graph.facebook.com/KOAKampgrounds/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q16988635", "leisure": "dog_park"}, "addTags": {"brand": "KOA", "brand:wikidata": "Q16988635", "brand:wikipedia": "en:Kampgrounds of America", "leisure": "dog_park", "name": "Kamp K9"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/escape_game/Escapology": {"name": "Escapology", "icon": "fas-puzzle-piece", "imageURL": "https://graph.facebook.com/EscapologySanDiego/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64137163", "leisure": "escape_game"}, "addTags": {"brand": "Escapology", "brand:wikidata": "Q64137163", "leisure": "escape_game", "name": "Escapology"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/24 Hour Fitness": {"name": "24 Hour Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/24HourFitness/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4631849", "leisure": "fitness_centre"}, "addTags": {"brand": "24 Hour Fitness", "brand:wikidata": "Q4631849", "brand:wikipedia": "en:24 Hour Fitness", "leisure": "fitness_centre", "name": "24 Hour Fitness"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Anytime Fitness": {"name": "Anytime Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/anytimefitness/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4778364", "leisure": "fitness_centre"}, "addTags": {"brand": "Anytime Fitness", "brand:wikidata": "Q4778364", "brand:wikipedia": "en:Anytime Fitness", "leisure": "fitness_centre", "name": "Anytime Fitness"}, "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Basic-Fit": {"name": "Basic-Fit", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/BasicFitEspana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q40165577", "leisure": "fitness_centre"}, "addTags": {"brand": "Basic-Fit", "brand:wikidata": "Q40165577", "brand:wikipedia": "nl:Basic-Fit", "leisure": "fitness_centre", "name": "Basic-Fit"}, "countryCodes": ["be", "es", "fr", "lu", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Blink Fitness": {"name": "Blink Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/BlinkFitness/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65621568", "leisure": "fitness_centre"}, "addTags": {"brand": "Blink Fitness", "brand:wikidata": "Q65621568", "leisure": "fitness_centre", "name": "Blink Fitness"}, "countryCodes": ["us"], "terms": ["blink"], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Clever fit": {"name": "Clever fit", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/cleverfit/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27909675", "leisure": "fitness_centre"}, "addTags": {"brand": "Clever fit", "brand:wikidata": "Q27909675", "brand:wikipedia": "de:Clever fit", "leisure": "fitness_centre", "name": "Clever fit"}, "countryCodes": ["at", "ch", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/CorePower Yoga": {"name": "CorePower Yoga", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/CorePowerYoga/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21015663", "leisure": "fitness_centre"}, "addTags": {"brand": "CorePower Yoga", "brand:wikidata": "Q21015663", "brand:wikipedia": "en:CorePower Yoga", "leisure": "fitness_centre", "name": "CorePower Yoga", "sport": "yoga"}, "countryCodes": ["us"], "terms": ["corepower"], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Crunch Fitness": {"name": "Crunch Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/CRUNCH/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5190093", "leisure": "fitness_centre"}, "addTags": {"brand": "Crunch Fitness", "brand:wikidata": "Q5190093", "brand:wikipedia": "en:Crunch Fitness", "leisure": "fitness_centre", "name": "Crunch Fitness"}, "countryCodes": ["au", "ca", "us"], "terms": ["crunch"], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Curves": {"name": "Curves", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/Curves/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5196080", "leisure": "fitness_centre"}, "addTags": {"brand": "Curves", "brand:wikidata": "Q5196080", "brand:wikipedia": "en:Curves International", "leisure": "fitness_centre", "name": "Curves"}, "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/F45 Training": {"name": "F45 Training", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/F45FunctionalTraining/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64390973", "leisure": "fitness_centre"}, "addTags": {"brand": "F45 Training", "brand:wikidata": "Q64390973", "leisure": "fitness_centre", "name": "F45 Training"}, "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Fit4Less (Canada)": {"name": "Fit4Less (Canada)", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/fit4lesscanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64821050", "leisure": "fitness_centre"}, "addTags": {"brand": "Fit4Less", "brand:wikidata": "Q64821050", "leisure": "fitness_centre", "name": "Fit4Less"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Fit4less (UK)": {"name": "Fit4less (UK)", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/Fit4lessUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64821053", "leisure": "fitness_centre"}, "addTags": {"brand": "Fit4less", "brand:wikidata": "Q64821053", "leisure": "fitness_centre", "name": "Fit4less"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Fitness First": {"name": "Fitness First", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/FitnessFirstGER/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q127120", "leisure": "fitness_centre"}, "addTags": {"brand": "Fitness First", "brand:wikidata": "Q127120", "brand:wikipedia": "en:Fitness First", "leisure": "fitness_centre", "name": "Fitness First"}, "countryCodes": ["ae", "au", "de", "gb", "ph", "th"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Fitness24Seven": {"name": "Fitness24Seven", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/Fitness24SevenSweden/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61112447", "leisure": "fitness_centre"}, "addTags": {"brand": "Fitness24Seven", "brand:wikidata": "Q61112447", "brand:wikipedia": "sv:Fitness24Seven", "leisure": "fitness_centre", "name": "Fitness24Seven"}, "countryCodes": ["fi", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Gold's Gym": {"name": "Gold's Gym", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/goldsgym/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1536234", "leisure": "fitness_centre"}, "addTags": {"brand": "Gold's Gym", "brand:wikidata": "Q1536234", "brand:wikipedia": "en:Gold's Gym", "leisure": "fitness_centre", "name": "Gold's Gym"}, "countryCodes": ["ae", "in", "ph", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/GoodLife Fitness": {"name": "GoodLife Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/goodlifefitness/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3110654", "leisure": "fitness_centre"}, "addTags": {"brand": "GoodLife Fitness", "brand:wikidata": "Q3110654", "brand:wikipedia": "en:GoodLife Fitness", "leisure": "fitness_centre", "name": "GoodLife Fitness"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Jazzercise": {"name": "Jazzercise", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/Jazzerciseinc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6168434", "leisure": "fitness_centre"}, "addTags": {"brand": "Jazzercise", "brand:wikidata": "Q6168434", "brand:wikipedia": "en:Jazzercise", "leisure": "fitness_centre", "name": "Jazzercise"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/LA Fitness": {"name": "LA Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/LAFitness/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6457180", "leisure": "fitness_centre"}, "addTags": {"brand": "LA Fitness", "brand:wikidata": "Q6457180", "brand:wikipedia": "en:LA Fitness", "leisure": "fitness_centre", "name": "LA Fitness"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Life Time": {"name": "Life Time", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/LifeTime.Life/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6545004", "leisure": "fitness_centre"}, "addTags": {"brand": "Life Time", "brand:wikidata": "Q6545004", "brand:wikipedia": "en:Life Time Fitness", "leisure": "fitness_centre", "name": "Life Time"}, "countryCodes": ["ca", "us"], "terms": ["life time athletic", "life time fitness"], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/McFit": {"name": "McFit", "icon": "fas-dumbbell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRSG%20Group%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q871302", "leisure": "fitness_centre"}, "addTags": {"brand": "McFit", "brand:wikidata": "Q871302", "brand:wikipedia": "en:McFit", "leisure": "fitness_centre", "name": "McFit"}, "countryCodes": ["at", "de", "es", "it", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Orangetheory Fitness": {"name": "Orangetheory Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/OrangeTheoryFitness/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25005163", "leisure": "fitness_centre"}, "addTags": {"brand": "Orangetheory Fitness", "brand:wikidata": "Q25005163", "brand:wikipedia": "en:Orangetheory Fitness", "leisure": "fitness_centre", "name": "Orangetheory Fitness"}, "countryCodes": ["ca", "es", "us"], "terms": ["orangetheory"], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Planet Fitness": {"name": "Planet Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/planetfitness/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7201095", "leisure": "fitness_centre"}, "addTags": {"brand": "Planet Fitness", "brand:wikidata": "Q7201095", "brand:wikipedia": "en:Planet Fitness", "leisure": "fitness_centre", "name": "Planet Fitness"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Pure Barre": {"name": "Pure Barre", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/PureBarre/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q86707084", "leisure": "fitness_centre"}, "addTags": {"brand": "Pure Barre", "brand:wikidata": "Q86707084", "leisure": "fitness_centre", "name": "Pure Barre"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/PureGym": {"name": "PureGym", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/puregym/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18345898", "leisure": "fitness_centre"}, "addTags": {"brand": "PureGym", "brand:wikidata": "Q18345898", "brand:wikipedia": "en:PureGym", "leisure": "fitness_centre", "name": "PureGym"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Retro Fitness": {"name": "Retro Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/RetroFitness/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994955", "leisure": "fitness_centre"}, "addTags": {"brand": "Retro Fitness", "brand:wikidata": "Q61994955", "leisure": "fitness_centre", "name": "Retro Fitness"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Smart Fit": {"name": "Smart Fit", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/SmartFit.Oficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30930959", "leisure": "fitness_centre"}, "addTags": {"brand": "Smart Fit", "brand:wikidata": "Q30930959", "brand:wikipedia": "pt:Smart Fit", "leisure": "fitness_centre", "name": "Smart Fit"}, "countryCodes": ["br", "cl", "co", "do", "mx", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Snap Fitness": {"name": "Snap Fitness", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/SnapFitness247/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7547254", "leisure": "fitness_centre"}, "addTags": {"brand": "Snap Fitness", "brand:wikidata": "Q7547254", "brand:wikipedia": "en:Snap Fitness", "leisure": "fitness_centre", "name": "Snap Fitness"}, "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/SoulCycle": {"name": "SoulCycle", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/SoulCycleInc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17084730", "leisure": "fitness_centre"}, "addTags": {"brand": "SoulCycle", "brand:wikidata": "Q17084730", "brand:wikipedia": "en:SoulCycle", "leisure": "fitness_centre", "name": "SoulCycle", "sport": "cycling"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/The Gym": {"name": "The Gym", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/thegymgroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48815022", "leisure": "fitness_centre"}, "addTags": {"brand": "The Gym", "brand:wikidata": "Q48815022", "brand:wikipedia": "en:The Gym Group", "leisure": "fitness_centre", "name": "The Gym"}, "countryCodes": ["gb"], "terms": ["the gym group"], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Virgin Active": {"name": "Virgin Active", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/VirginActiveSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4013942", "leisure": "fitness_centre"}, "addTags": {"brand": "Virgin Active", "brand:wikidata": "Q4013942", "brand:wikipedia": "en:Virgin Active", "leisure": "fitness_centre", "name": "Virgin Active"}, "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/Xercise4Less": {"name": "Xercise4Less", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/Xercise4Less/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q79244612", "leisure": "fitness_centre"}, "addTags": {"brand": "Xercise4Less", "brand:wikidata": "Q79244612", "leisure": "fitness_centre", "name": "Xercise4Less"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/エニタイムフィットネス": {"name": "エニタイムフィットネス", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/anytimefitness/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4778364", "leisure": "fitness_centre"}, "addTags": {"alt_name:en": "Fast Fitness", "brand": "エニタイムフィットネス", "brand:en": "Anytime Fitness", "brand:ja": "エニタイムフィットネス", "brand:wikidata": "Q4778364", "brand:wikipedia": "ja:エニタイムフィットネス", "leisure": "fitness_centre", "name": "エニタイムフィットネス", "name:en": "Anytime Fitness", "name:ja": "エニタイムフィットネス"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/カーブス": {"name": "カーブス", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/Curves/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5196080", "leisure": "fitness_centre"}, "addTags": {"brand": "カーブス", "brand:en": "Curves", "brand:ja": "カーブス", "brand:wikidata": "Q5196080", "brand:wikipedia": "ja:カーブス", "leisure": "fitness_centre", "name": "カーブス", "name:en": "Curves", "name:ja": "カーブス"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/コナミスポーツクラブ": {"name": "コナミスポーツクラブ", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/sportsclub.konami/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11302286", "leisure": "fitness_centre"}, "addTags": {"brand": "コナミスポーツクラブ", "brand:en": "Konami Sports Club", "brand:ja": "コナミスポーツクラブ", "brand:wikidata": "Q11302286", "brand:wikipedia": "ja:コナミスポーツ (企業)", "leisure": "fitness_centre", "name": "コナミスポーツクラブ", "name:en": "Konami Sports Club", "name:ja": "コナミスポーツクラブ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/ジョイフィット": {"name": "ジョイフィット", "icon": "fas-dumbbell", "imageURL": "https://graph.facebook.com/enjoy.joyfit/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11310515", "leisure": "fitness_centre"}, "addTags": {"brand": "ジョイフィット", "brand:en": "JOYFIT", "brand:ja": "ジョイフィット", "brand:wikidata": "Q11310515", "brand:wikipedia": "ja:ジョイフィット", "leisure": "fitness_centre", "name": "ジョイフィット", "name:en": "JOYFIT", "name:ja": "ジョイフィット"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/fitness_centre/ティップネス": {"name": "ティップネス", "icon": "fas-dumbbell", "imageURL": "https://pbs.twimg.com/profile_images/875646398636503040/Uln2y1z4_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11318940", "leisure": "fitness_centre"}, "addTags": {"brand": "ティップネス", "brand:en": "Tipness", "brand:ja": "ティップネス", "brand:wikidata": "Q11318940", "brand:wikipedia": "ja:ティップネス", "leisure": "fitness_centre", "name": "ティップネス", "name:en": "Tipness", "name:ja": "ティップネス"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/playground/McDonald's PlayPlace": {"name": "McDonald's PlayPlace", "icon": "maki-playground", "imageURL": "https://graph.facebook.com/mcdonalds/picture?type=large", "geometry": ["area", "point"], "tags": {"brand:wikidata": "Q38076", "leisure": "playground"}, "addTags": {"access": "customers", "brand": "McDonald's", "brand:wikidata": "Q38076", "brand:wikipedia": "en:McDonald's", "leisure": "playground", "name": "McDonald's PlayPlace"}, "terms": ["mcdonald's"], "matchScore": 2, "suggestion": true}, - "leisure/sports_centre/YMCA": {"name": "YMCA", "icon": "maki-pitch", "imageURL": "https://graph.facebook.com/YMCA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q157169", "leisure": "sports_centre"}, "addTags": {"brand": "YMCA", "brand:wikidata": "Q157169", "brand:wikipedia": "en:YMCA", "leisure": "sports_centre", "name": "YMCA"}, "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/sports_centre/iFLY": {"name": "iFLY", "icon": "maki-pitch", "imageURL": "https://graph.facebook.com/iFLYUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64767105", "leisure": "sports_centre"}, "addTags": {"brand": "iFLY", "brand:wikidata": "Q64767105", "leisure": "sports_centre", "name": "iFLY", "sport": "indoor_skydiving"}, "terms": [], "matchScore": 2, "suggestion": true}, - "leisure/trampoline_park/Flip Out": {"name": "Flip Out", "icon": "fas-chevron-circle-up", "imageURL": "https://graph.facebook.com/FlipOutUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87271194", "leisure": "trampoline_park"}, "addTags": {"brand": "Flip Out", "brand:wikidata": "Q87271194", "leisure": "trampoline_park", "name": "Flip Out"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/bail_bond_agent/Aladdin Bail Bonds": {"name": "Aladdin Bail Bonds", "icon": "maki-bank", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAladdin%20Bail%20Bonds%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64166257", "office": "bail_bond_agent"}, "addTags": {"brand": "Aladdin Bail Bonds", "brand:wikidata": "Q64166257", "brand:wikipedia": "en:Aladdin Bail Bonds", "name": "Aladdin Bail Bonds", "office": "bail_bond_agent", "opening_hours": "24/7"}, "countryCodes": ["us"], "terms": ["aladdin", "aladin bail bonds", "alladin bail bonds"], "matchScore": 2, "suggestion": true}, - "office/consulting/Deloitte": {"name": "Deloitte", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/DeloitteUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q491748", "office": "consulting"}, "addTags": {"brand": "Deloitte", "brand:wikidata": "Q491748", "brand:wikipedia": "en:Deloitte", "name": "Deloitte", "office": "consulting"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/consulting/EY": {"name": "EY", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/EY/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q489097", "office": "consulting"}, "addTags": {"brand": "EY", "brand:wikidata": "Q489097", "brand:wikipedia": "en:Ernst & Young", "name": "EY", "office": "consulting", "official_name": "Ernst & Young"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/consulting/Indra": {"name": "Indra", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/indracompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1661823", "office": "consulting"}, "addTags": {"brand": "Indra", "brand:wikidata": "Q1661823", "brand:wikipedia": "es:Indra Sistemas", "name": "Indra", "office": "consulting", "official_name": "Indra Sistemas, S.A."}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/consulting/KPMG": {"name": "KPMG", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/KPMG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q493751", "office": "consulting"}, "addTags": {"brand": "KPMG", "brand:wikidata": "Q493751", "brand:wikipedia": "en:KPMG", "name": "KPMG", "office": "consulting"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/consulting/PwC": {"name": "PwC", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/lifeatpwc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q488048", "office": "consulting"}, "addTags": {"brand": "PwC", "brand:wikidata": "Q488048", "brand:wikipedia": "en:PricewaterhouseCoopers", "name": "PwC", "office": "consulting", "official_name": "PricewaterhouseCoopers"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/coworking/Awfis": {"name": "Awfis", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/myawfis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60747757", "office": "coworking"}, "addTags": {"brand": "Awfis", "brand:wikidata": "Q60747757", "brand:wikipedia": "en:Awfis", "fee": "yes", "name": "Awfis", "office": "coworking"}, "reference": {"key": "amenity", "value": "coworking_space"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/coworking/Spaces": {"name": "Spaces", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/spacesworks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87629680", "office": "coworking"}, "addTags": {"brand": "Spaces", "brand:wikidata": "Q87629680", "name": "Spaces", "office": "coworking"}, "reference": {"key": "amenity", "value": "coworking_space"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/coworking/Ucommune (China)": {"name": "Ucommune (China)", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/ucommunes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60785187", "office": "coworking"}, "addTags": {"brand": "优客工场", "brand:en": "Ucommune", "brand:wikidata": "Q60785187", "brand:wikipedia": "en:Ucommune", "brand:zh": "优客工场", "brand:zh-Hans": "优客工场", "fee": "yes", "name": "优客工场", "name:en": "Ucommune", "name:zh": "优客工场", "name:zh-Hans": "优客工场", "office": "coworking"}, "reference": {"key": "amenity", "value": "coworking_space"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/coworking/Ucommune (Hong Kong)": {"name": "Ucommune (Hong Kong)", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/ucommunes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60785187", "office": "coworking"}, "addTags": {"brand": "優客工場 Ucommune", "brand:en": "Ucommune", "brand:wikidata": "Q60785187", "brand:wikipedia": "en:Ucommune", "brand:zh": "優客工場", "brand:zh-Hans": "优客工场", "brand:zh-Hant": "優客工場", "fee": "yes", "name": "優客工場 Ucommune", "name:en": "Ucommune", "name:zh": "優客工場", "name:zh-Hans": "优客工场", "name:zh-Hant": "優客工場", "office": "coworking"}, "reference": {"key": "amenity", "value": "coworking_space"}, "countryCodes": ["hk"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/coworking/Ucommune (Singapore)": {"name": "Ucommune (Singapore)", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/ucommunes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60785187", "office": "coworking"}, "addTags": {"brand": "Ucommune", "brand:en": "Ucommune", "brand:wikidata": "Q60785187", "brand:wikipedia": "en:Ucommune", "brand:zh": "优客工场", "brand:zh-Hans": "优客工场", "fee": "yes", "name": "Ucommune", "name:en": "Ucommune", "name:zh": "优客工场", "name:zh-Hans": "优客工场", "office": "coworking"}, "reference": {"key": "amenity", "value": "coworking_space"}, "countryCodes": ["sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/coworking/Ucommune (Taiwan)": {"name": "Ucommune (Taiwan)", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/ucommunes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60785187", "office": "coworking"}, "addTags": {"brand": "優客工場", "brand:en": "Ucommune", "brand:wikidata": "Q60785187", "brand:wikipedia": "en:Ucommune", "brand:zh": "優客工場", "brand:zh-Hans": "优客工场", "brand:zh-Hant": "優客工場", "fee": "yes", "name": "優客工場", "name:en": "Ucommune", "name:zh": "優客工場", "name:zh-Hans": "优客工场", "name:zh-Hant": "優客工場", "office": "coworking"}, "reference": {"key": "amenity", "value": "coworking_space"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/coworking/WeWork": {"name": "WeWork", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/wework/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19995004", "office": "coworking"}, "addTags": {"brand": "WeWork", "brand:wikidata": "Q19995004", "brand:wikipedia": "en:WeWork", "fee": "yes", "name": "WeWork", "office": "coworking"}, "reference": {"key": "amenity", "value": "coworking_space"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/Adecco": {"name": "Adecco", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/adeccogroupDE/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q353494", "office": "employment_agency"}, "addTags": {"brand": "Adecco", "brand:wikidata": "Q353494", "brand:wikipedia": "en:The Adecco Group", "name": "Adecco", "office": "employment_agency"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/Agentur für Arbeit": {"name": "Agentur für Arbeit", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/160267817333843/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1478016", "office": "employment_agency"}, "addTags": {"brand": "Agentur für Arbeit", "brand:wikidata": "Q1478016", "brand:wikipedia": "de:Bundesagentur für Arbeit", "name": "Agentur für Arbeit", "office": "employment_agency"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/Cordant People": {"name": "Cordant People", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/CordantPeople/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q85311605", "office": "employment_agency"}, "addTags": {"brand": "Cordant People", "brand:wikidata": "Q85311605", "name": "Cordant People", "office": "employment_agency"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/Driver Hire": {"name": "Driver Hire", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/DriverHireUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89404688", "office": "employment_agency"}, "addTags": {"brand": "Driver Hire", "brand:wikidata": "Q89404688", "name": "Driver Hire", "office": "employment_agency"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/Jobcentre Plus": {"name": "Jobcentre Plus", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/174667546602258/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6206793", "office": "employment_agency"}, "addTags": {"brand": "Jobcentre Plus", "brand:wikidata": "Q6206793", "brand:wikipedia": "en:Jobcentre Plus", "name": "Jobcentre Plus", "office": "employment_agency"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/Manpower": {"name": "Manpower", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/ManpowerGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1472539", "office": "employment_agency"}, "addTags": {"brand": "Manpower", "brand:wikidata": "Q1472539", "brand:wikipedia": "en:ManpowerGroup", "name": "Manpower", "office": "employment_agency"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/Office Angels": {"name": "Office Angels", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/OArecruitment/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89403503", "office": "employment_agency"}, "addTags": {"brand": "Office Angels", "brand:wikidata": "Q89403503", "name": "Office Angels", "office": "employment_agency"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/Pôle Emploi": {"name": "Pôle Emploi", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/poleemploi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8901192", "office": "employment_agency"}, "addTags": {"brand": "Pôle Emploi", "brand:wikidata": "Q8901192", "brand:wikipedia": "en:Pôle emploi", "name": "Pôle Emploi", "office": "employment_agency"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/Randstad": {"name": "Randstad", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/Randstad/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q267840", "office": "employment_agency"}, "addTags": {"brand": "Randstad", "brand:wikidata": "Q267840", "brand:wikipedia": "en:Randstad Holding", "name": "Randstad", "office": "employment_agency"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/ハローワーク": {"name": "ハローワーク", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/wakaharo.tokyo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5016578", "office": "employment_agency"}, "addTags": {"brand": "ハローワーク", "brand:en": "Hello Work", "brand:ja": "ハローワーク", "brand:wikidata": "Q5016578", "brand:wikipedia": "ja:公共職業安定所", "name": "ハローワーク", "name:en": "Hello Work", "name:ja": "ハローワーク", "office": "employment_agency", "official_name": "公共職業安定所", "official_name:en": "Public Employment Security Office"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/employment_agency/パソナ": {"name": "パソナ", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/pasona/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7142290", "office": "employment_agency"}, "addTags": {"brand": "パソナ", "brand:en": "Pasona", "brand:ja": "パソナ", "brand:wikidata": "Q7142290", "brand:wikipedia": "ja:パソナ", "name": "パソナ", "name:en": "Pasona", "name:ja": "パソナ", "office": "employment_agency"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/energy_supplier/Endesa": {"name": "Endesa", "icon": "temaki-briefcase_bolt", "imageURL": "https://graph.facebook.com/Endesa.es/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1275336", "office": "energy_supplier"}, "addTags": {"brand": "Endesa", "brand:wikidata": "Q1275336", "brand:wikipedia": "es:Endesa", "name": "Endesa", "office": "energy_supplier"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/energy_supplier/Iberdrola": {"name": "Iberdrola", "icon": "temaki-briefcase_bolt", "imageURL": "https://graph.facebook.com/Iberdrola/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1437502", "office": "energy_supplier"}, "addTags": {"brand": "Iberdrola", "brand:wikidata": "Q1437502", "brand:wikipedia": "es:Iberdrola", "name": "Iberdrola", "office": "energy_supplier"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/energy_supplier/Naturgy": {"name": "Naturgy", "icon": "temaki-briefcase_bolt", "imageURL": "https://graph.facebook.com/Naturgy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q474690", "office": "energy_supplier"}, "addTags": {"brand": "Naturgy", "brand:wikidata": "Q474690", "brand:wikipedia": "es:Naturgy", "name": "Naturgy", "office": "energy_supplier"}, "countryCodes": ["ar", "au", "be", "br", "cl", "cn", "cr", "de", "do", "dz", "eg", "es", "fr", "gb", "ie", "in", "jm", "jo", "jp", "lu", "ma", "mx", "nl", "om", "pa", "pe", "pk", "pr", "pt", "sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Allen & Harris": {"name": "Allen & Harris", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/allenandharrisestateagents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81856601", "office": "estate_agent"}, "addTags": {"brand": "Allen & Harris", "brand:wikidata": "Q81856601", "name": "Allen & Harris", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Bagshaws Residential": {"name": "Bagshaws Residential", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/BagshawsResidentialEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81859084", "office": "estate_agent"}, "addTags": {"brand": "Bagshaws Residential", "brand:wikidata": "Q81859084", "name": "Bagshaws Residential", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Bairstow Eves": {"name": "Bairstow Eves", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/BairstowEvesEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81074787", "office": "estate_agent"}, "addTags": {"brand": "Bairstow Eves", "brand:wikidata": "Q81074787", "name": "Bairstow Eves", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Barnard Marcus": {"name": "Barnard Marcus", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/BarnardMarcusEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81860444", "office": "estate_agent"}, "addTags": {"brand": "Barnard Marcus", "brand:wikidata": "Q81860444", "name": "Barnard Marcus", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Bradleys": {"name": "Bradleys", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/BradleysGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q83738286", "office": "estate_agent"}, "addTags": {"brand": "Bradleys", "brand:wikidata": "Q83738286", "name": "Bradleys", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Brown & Merry": {"name": "Brown & Merry", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/BrownAndMerryEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81859714", "office": "estate_agent"}, "addTags": {"brand": "Brown & Merry", "brand:wikidata": "Q81859714", "name": "Brown & Merry", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Century 21": {"name": "Century 21", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/century21/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1054480", "office": "estate_agent"}, "addTags": {"brand": "Century 21", "brand:wikidata": "Q1054480", "brand:wikipedia": "en:Century 21 (real estate)", "name": "Century 21", "office": "estate_agent"}, "terms": ["century 21 real estate"], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Coldwell Banker": {"name": "Coldwell Banker", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/coldwellbanker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q738853", "office": "estate_agent"}, "addTags": {"brand": "Coldwell Banker", "brand:wikidata": "Q738853", "brand:wikipedia": "en:Coldwell Banker", "name": "Coldwell Banker", "office": "estate_agent"}, "terms": ["coldwell banker real estate"], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Connells": {"name": "Connells", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/298744224054963/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5161738", "office": "estate_agent"}, "addTags": {"brand": "Connells", "brand:wikidata": "Q5161738", "brand:wikipedia": "en:Connells Group", "name": "Connells", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Engel & Völkers": {"name": "Engel & Völkers", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/engelvoelkershq/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1341765", "office": "estate_agent"}, "addTags": {"brand": "Engel & Völkers", "brand:wikidata": "Q1341765", "brand:wikipedia": "en:Engel & Völkers", "name": "Engel & Völkers", "office": "estate_agent"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Foncia": {"name": "Foncia", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/Foncia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1435638", "office": "estate_agent"}, "addTags": {"brand": "Foncia", "brand:wikidata": "Q1435638", "brand:wikipedia": "fr:Foncia", "name": "Foncia", "office": "estate_agent"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Fox & Sons": {"name": "Fox & Sons", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/FoxAndSonsEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81855298", "office": "estate_agent"}, "addTags": {"brand": "Fox & Sons", "brand:wikidata": "Q81855298", "name": "Fox & Sons", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Foxtons": {"name": "Foxtons", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/FoxtonsEstateAgent/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5477251", "office": "estate_agent"}, "addTags": {"brand": "Foxtons", "brand:wikidata": "Q5477251", "brand:wikipedia": "en:Foxtons", "name": "Foxtons", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Greenslade Taylor Hunt": {"name": "Greenslade Taylor Hunt", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/GTHGreensladeTaylorHunt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81052826", "office": "estate_agent"}, "addTags": {"brand": "Greenslade Taylor Hunt", "brand:wikidata": "Q81052826", "name": "Greenslade Taylor Hunt", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": ["gth"], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Guy Hoquet": {"name": "Guy Hoquet", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/GuyHoquetImmobilier/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25383970", "office": "estate_agent"}, "addTags": {"brand": "Guy Hoquet", "brand:wikidata": "Q25383970", "brand:wikipedia": "fr:Guy Hoquet l'immobilier", "name": "Guy Hoquet", "office": "estate_agent"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Haart": {"name": "Haart", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/haart.estate.agents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q75006731", "office": "estate_agent"}, "addTags": {"brand": "Haart", "brand:wikidata": "Q75006731", "brand:wikipedia": "en: Spicerhaart", "name": "Haart", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Hamptons International": {"name": "Hamptons International", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/HamptonsInt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5646350", "office": "estate_agent"}, "addTags": {"brand": "Hamptons International", "brand:wikidata": "Q5646350", "brand:wikipedia": "en:Hamptons International", "name": "Hamptons International", "office": "estate_agent", "short_name": "Hamptons"}, "countryCodes": ["gb"], "terms": ["hamptons international lettings", "hamptons international sales"], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Harcourts": {"name": "Harcourts", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/HarcourtsNewZealand/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5655056", "office": "estate_agent"}, "addTags": {"brand": "Harcourts", "brand:wikidata": "Q5655056", "brand:wikipedia": "en:Harcourts International", "name": "Harcourts", "office": "estate_agent"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/John L. Scott": {"name": "John L. Scott", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/johnlscott/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6243687", "office": "estate_agent"}, "addTags": {"brand": "John L. Scott", "brand:wikidata": "Q6243687", "brand:wikipedia": "en:John L. Scott", "name": "John L. Scott", "office": "estate_agent"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Jones & Chapman": {"name": "Jones & Chapman", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/JonesAndChapmanEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81858007", "office": "estate_agent"}, "addTags": {"brand": "Jones & Chapman", "brand:wikidata": "Q81858007", "name": "Jones & Chapman", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Knight Frank": {"name": "Knight Frank", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/KnightFrankLLP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3197998", "office": "estate_agent"}, "addTags": {"brand": "Knight Frank", "brand:wikidata": "Q3197998", "brand:wikipedia": "en:Knight Frank", "name": "Knight Frank", "office": "estate_agent"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Laforêt": {"name": "Laforêt", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/Laforetfrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56310946", "office": "estate_agent"}, "addTags": {"brand": "Laforêt", "brand:wikidata": "Q56310946", "brand:wikipedia": "fr:Laforêt (immobilier)", "name": "Laforêt", "office": "estate_agent"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Manners & Harrison": {"name": "Manners & Harrison", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/MannersAndHarrisonEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81857241", "office": "estate_agent"}, "addTags": {"brand": "Manners & Harrison", "brand:wikidata": "Q81857241", "name": "Manners & Harrison", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Martin & Co": {"name": "Martin & Co", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/martincouk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81066918", "office": "estate_agent"}, "addTags": {"brand": "Martin & Co", "brand:wikidata": "Q81066918", "name": "Martin & Co", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Mayfair Town & Country": {"name": "Mayfair Town & Country", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/MayfairTownCountry/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90269289", "office": "estate_agent"}, "addTags": {"brand": "Mayfair Town & Country", "brand:wikidata": "Q90269289", "name": "Mayfair Town & Country", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Orpi": {"name": "Orpi", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/OrpiFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3356080", "office": "estate_agent"}, "addTags": {"brand": "Orpi", "brand:wikidata": "Q3356080", "brand:wikipedia": "fr:Organisation régionale des professionnels de l'immobilier", "name": "Orpi", "office": "estate_agent"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Palmer Snell": {"name": "Palmer Snell", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/PalmerSnellEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81068923", "office": "estate_agent"}, "addTags": {"brand": "Palmer Snell", "brand:wikidata": "Q81068923", "name": "Palmer Snell", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/REMAX": {"name": "RE/MAX", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/remax/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q965845", "office": "estate_agent"}, "addTags": {"brand": "RE/MAX", "brand:wikidata": "Q965845", "brand:wikipedia": "en:RE/MAX", "name": "RE/MAX", "office": "estate_agent"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Ray White": {"name": "Ray White", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/raywhitegroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81077729", "office": "estate_agent"}, "addTags": {"brand": "Ray White", "brand:wikidata": "Q81077729", "name": "Ray White", "office": "estate_agent"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Roger Platt": {"name": "Roger Platt", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/RogerPlattEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81859999", "office": "estate_agent"}, "addTags": {"brand": "Roger Platt", "brand:wikidata": "Q81859999", "name": "Roger Platt", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Royal LePage": {"name": "Royal LePage", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/royallepage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7374385", "office": "estate_agent"}, "addTags": {"brand": "Royal LePage", "brand:wikidata": "Q7374385", "brand:wikipedia": "en:Royal LePage", "name": "Royal LePage", "office": "estate_agent"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Shipways": {"name": "Shipways", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/ShipwaysEstateAgent/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81859397", "office": "estate_agent"}, "addTags": {"brand": "Shipways", "brand:wikidata": "Q81859397", "name": "Shipways", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Square Habitat": {"name": "Square Habitat", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/541219055971624/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64027038", "office": "estate_agent"}, "addTags": {"brand": "Square Habitat", "brand:wikidata": "Q64027038", "brand:wikipedia": "fr:Square Habitat", "name": "Square Habitat", "office": "estate_agent"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Stags": {"name": "Stags", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/StagsProperty/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q91028631", "office": "estate_agent"}, "addTags": {"brand": "Stags", "brand:wikidata": "Q91028631", "name": "Stags", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Stirling Ackroyd": {"name": "Stirling Ackroyd", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/StirlingAckroyd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81062228", "office": "estate_agent"}, "addTags": {"brand": "Stirling Ackroyd", "brand:wikidata": "Q81062228", "name": "Stirling Ackroyd", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Swetenhams": {"name": "Swetenhams", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/SwetenhamsEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81858340", "office": "estate_agent"}, "addTags": {"brand": "Swetenhams", "brand:wikidata": "Q81858340", "name": "Swetenhams", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Symonds & Sampson": {"name": "Symonds & Sampson", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/SymondsandSampson/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90262955", "office": "estate_agent"}, "addTags": {"brand": "Symonds & Sampson", "brand:wikidata": "Q90262955", "name": "Symonds & Sampson", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Tecnocasa": {"name": "Tecnocasa", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/GruppoTecnocasa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2399658", "office": "estate_agent"}, "addTags": {"brand": "Tecnocasa", "brand:wikidata": "Q2399658", "brand:wikipedia": "de:Tecnocasa", "name": "Tecnocasa", "office": "estate_agent"}, "countryCodes": ["es", "it", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Townends": {"name": "Townends", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/Townends/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81061275", "office": "estate_agent"}, "addTags": {"brand": "Townends", "brand:wikidata": "Q81061275", "name": "Townends", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Webbers": {"name": "Webbers", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/WebbersEstateAgentsHQ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81068176", "office": "estate_agent"}, "addTags": {"brand": "Webbers", "brand:wikidata": "Q81068176", "name": "Webbers", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/William H. Brown": {"name": "William H. Brown", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/WilliamHBrownEstateAgents/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81787271", "office": "estate_agent"}, "addTags": {"brand": "William H. Brown", "brand:wikidata": "Q81787271", "name": "William H. Brown", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/Your Move": {"name": "Your Move", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/yourmoveuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81078416", "office": "estate_agent"}, "addTags": {"brand": "Your Move", "brand:wikidata": "Q81078416", "name": "Your Move", "office": "estate_agent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/アパマンショップ": {"name": "アパマンショップ", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/apamanshopcom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11284512", "office": "estate_agent"}, "addTags": {"brand": "アパマンショップ", "brand:en": "Apaman Shop", "brand:ja": "アパマンショップ", "brand:wikidata": "Q11284512", "brand:wikipedia": "ja:Apaman Network", "name": "アパマンショップ", "name:en": "Apaman Shop", "name:ja": "アパマンショップ", "office": "estate_agent"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/エイブル": {"name": "エイブル", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/able.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11289620", "office": "estate_agent"}, "addTags": {"brand": "エイブル", "brand:en": "Able", "brand:ja": "エイブル", "brand:wikidata": "Q11289620", "brand:wikipedia": "ja:エイブル", "name": "エイブル", "name:en": "Able", "name:ja": "エイブル", "office": "estate_agent"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/タウンハウジング": {"name": "タウンハウジング", "icon": "temaki-real_estate_agency", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11315877", "office": "estate_agent"}, "addTags": {"brand": "タウンハウジング", "brand:en": "Townhousing", "brand:ja": "タウンハウジング", "brand:wikidata": "Q11315877", "brand:wikipedia": "ja:タウンハウジング", "name": "タウンハウジング", "name:en": "Townhousing", "name:ja": "タウンハウジング", "office": "estate_agent"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/ピタットハウス": {"name": "ピタットハウス", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/pitatofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11331484", "office": "estate_agent"}, "addTags": {"brand": "ピタットハウス", "brand:en": "Pitat House", "brand:ja": "ピタットハウス", "brand:wikidata": "Q11331484", "brand:wikipedia": "ja:ピタットハウスネットワーク", "name": "ピタットハウス", "name:en": "Pitat House", "name:ja": "ピタットハウス", "office": "estate_agent"}, "countryCodes": ["jp"], "terms": ["ピタットハウスネットワーク"], "matchScore": 2, "suggestion": true}, - "office/estate_agent/三菱UFJ不動産販売": {"name": "三菱UFJ不動産販売", "icon": "temaki-real_estate_agency", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMitsubishi-UFJ-Financial-Group-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11357004", "office": "estate_agent"}, "addTags": {"brand": "三菱UFJ不動産販売", "brand:en": "Mitsubishi UFJ Real Estate Services", "brand:ja": "三菱UFJ不動産販売", "brand:wikidata": "Q11357004", "brand:wikipedia": "ja:三菱UFJ不動産販売", "name": "三菱UFJ不動産販売", "name:en": "Mitsubishi UFJ Real Estate Services", "name:ja": "三菱UFJ不動産販売", "office": "estate_agent"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/信義房屋": {"name": "信義房屋", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/sinyifans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10888034", "office": "estate_agent"}, "addTags": {"brand": "信義房屋", "brand:en": "Sinyi Realty", "brand:wikidata": "Q10888034", "brand:wikipedia": "zh:信義房屋", "brand:zh": "信義房屋", "name": "信義房屋", "name:en": "Sinyi Realty", "name:zh": "信義房屋", "office": "estate_agent"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/estate_agent/永慶房屋": {"name": "永慶房屋", "icon": "temaki-real_estate_agency", "imageURL": "https://graph.facebook.com/yungching.tw/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11132113", "office": "estate_agent"}, "addTags": {"brand": "永慶房屋", "brand:en": "Yung Ching", "brand:wikidata": "Q11132113", "brand:wikipedia": "zh:永慶房屋", "brand:zh": "永慶房屋", "name": "永慶房屋", "name:en": "Yung Ching", "name:zh": "永慶房屋", "office": "estate_agent"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/financial_advisor/Edward Jones": {"name": "Edward Jones", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/edwardjones/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5343830", "office": "financial_advisor"}, "addTags": {"alt_name": "Edward Jones Investments", "brand": "Edward Jones", "brand:wikidata": "Q5343830", "brand:wikipedia": "en:Edward Jones Investments", "name": "Edward Jones", "office": "financial_advisor"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/financial_advisor/NM Money": {"name": "NM Money", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/NMmoney/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q86529747", "office": "financial_advisor"}, "addTags": {"brand": "NM Money", "brand:wikidata": "Q86529747", "name": "NM Money", "office": "financial_advisor"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/financial_advisor/TD Ameritrade": {"name": "TD Ameritrade", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/tdameritrade/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7669886", "office": "financial_advisor"}, "addTags": {"brand": "TD Ameritrade", "brand:wikidata": "Q7669886", "brand:wikipedia": "en:TD Ameritrade", "name": "TD Ameritrade", "office": "financial_advisor"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/A-MAX Auto Insurance": {"name": "A-MAX Auto Insurance", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/amaxinsurance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q75767609", "office": "insurance"}, "addTags": {"brand": "A-MAX Auto Insurance", "brand:wikidata": "Q75767609", "name": "A-MAX Auto Insurance", "office": "insurance", "short_name": "A-MAX"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/A-Plan Insurance": {"name": "A-Plan Insurance", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/aplaninsurance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87070013", "office": "insurance"}, "addTags": {"brand": "A-Plan Insurance", "brand:wikidata": "Q87070013", "name": "A-Plan Insurance", "office": "insurance"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/AAA Insurance": {"name": "AAA Insurance", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/AAAFanPage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q463436", "office": "insurance"}, "addTags": {"brand": "American Automobile Association", "brand:wikidata": "Q463436", "brand:wikipedia": "en:American Automobile Association", "name": "AAA Insurance", "office": "insurance", "short_name": "AAA"}, "countryCodes": ["us"], "terms": ["american automobile association"], "matchScore": 2, "suggestion": true}, - "office/insurance/AOK": {"name": "AOK", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAllgemeine%20Ortskrankenkasse%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q835141", "office": "insurance"}, "addTags": {"brand": "AOK", "brand:wikidata": "Q835141", "brand:wikipedia": "de:Allgemeine Ortskrankenkasse", "name": "AOK", "office": "insurance"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/AXA": {"name": "AXA", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/axainsurance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q160054", "office": "insurance"}, "addTags": {"brand": "AXA", "brand:wikidata": "Q160054", "brand:wikipedia": "en:AXA", "name": "AXA", "office": "insurance"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Allianz": {"name": "Allianz", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/allianz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q487292", "office": "insurance"}, "addTags": {"brand": "Allianz", "brand:wikidata": "Q487292", "brand:wikipedia": "en:Allianz", "name": "Allianz", "office": "insurance"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Allstate": {"name": "Allstate", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/Allstate/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2645636", "office": "insurance"}, "addTags": {"brand": "Allstate", "brand:wikidata": "Q2645636", "brand:wikipedia": "en:Allstate", "name": "Allstate", "office": "insurance"}, "countryCodes": ["us"], "terms": ["allstate insurance"], "matchScore": 2, "suggestion": true}, - "office/insurance/American Family Insurance": {"name": "American Family Insurance", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/amfam/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4743730", "office": "insurance"}, "addTags": {"brand": "American Family Insurance", "brand:wikidata": "Q4743730", "brand:wikipedia": "en:American Family Insurance", "name": "American Family Insurance", "office": "insurance"}, "countryCodes": ["us"], "terms": ["american family", "amfam"], "matchScore": 2, "suggestion": true}, - "office/insurance/Asepeyo": {"name": "Asepeyo", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/Asepeyo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11906879", "office": "insurance"}, "addTags": {"brand": "Asepeyo", "brand:wikidata": "Q11906879", "brand:wikipedia": "es:Asepeyo", "name": "Asepeyo", "office": "insurance"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Aviva": {"name": "Aviva", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/Aviva/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q791179", "office": "insurance"}, "addTags": {"brand": "Aviva", "brand:wikidata": "Q791179", "brand:wikipedia": "en:Aviva", "name": "Aviva", "office": "insurance"}, "countryCodes": ["fr", "ie", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/BGV": {"name": "BGV", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBadische%20Versicherungen%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q795911", "office": "insurance"}, "addTags": {"alt_name": "Badische Versicherungen", "brand": "BGV", "brand:wikidata": "Q795911", "brand:wikipedia": "de:BGV / Badische Versicherungen", "name": "BGV", "office": "insurance"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Banco do Brasil Seguridade": {"name": "Banco do Brasil Seguridade", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/BBSeguros/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18499520", "office": "insurance"}, "addTags": {"brand": "Banco do Brasil Seguridade", "brand:wikidata": "Q18499520", "brand:wikipedia": "pt:BB Seguridade", "name": "Banco do Brasil Seguridade", "office": "insurance", "short_name": "BB Seguridade"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Bâloise": {"name": "Bâloise", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/BaloiseGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q457912", "office": "insurance"}, "addTags": {"brand": "Bâloise", "brand:wikidata": "Q457912", "brand:wikipedia": "en:Bâloise", "name": "Bâloise", "office": "insurance"}, "countryCodes": ["be", "ch", "de", "li", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/CESCE": {"name": "CESCE", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5737049", "office": "insurance"}, "addTags": {"brand": "CESCE", "brand:wikidata": "Q5737049", "brand:wikipedia": "es:CESCE", "name": "CESCE", "office": "insurance", "official_name": "Compañía Española de Seguros de Crédito a la Exportación"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Caser": {"name": "Caser", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5756057", "office": "insurance"}, "addTags": {"brand": "Caser", "brand:wikidata": "Q5756057", "brand:wikipedia": "es:Caser", "name": "Caser", "office": "insurance"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Catalana Occidente": {"name": "Catalana Occidente", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCatalana%20Occidente%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5936881", "office": "insurance"}, "addTags": {"brand": "Catalana Occidente", "brand:wikidata": "Q5936881", "brand:wikipedia": "es:Catalana Occidente", "name": "Catalana Occidente", "office": "insurance"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/DAK": {"name": "DAK", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/DAKGesundheit/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1151671", "office": "insurance"}, "addTags": {"brand": "DAK", "brand:wikidata": "Q1151671", "brand:wikipedia": "de:DAK-Gesundheit", "name": "DAK", "office": "insurance"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/DEVK": {"name": "DEVK", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/devk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1153049", "office": "insurance"}, "addTags": {"brand": "DEVK", "brand:wikidata": "Q1153049", "brand:wikipedia": "de:DEVK", "name": "DEVK", "office": "insurance"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Debeka": {"name": "Debeka", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/Debeka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1181452", "office": "insurance"}, "addTags": {"brand": "Debeka", "brand:wikidata": "Q1181452", "brand:wikipedia": "de:Debeka", "name": "Debeka", "office": "insurance"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/ENSA": {"name": "ENSA", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/ENSASegurosAngola/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5323726", "office": "insurance"}, "addTags": {"brand": "ENSA", "brand:wikidata": "Q5323726", "brand:wikipedia": "en:ENSA – Seguros de Angola", "name": "ENSA", "office": "insurance"}, "countryCodes": ["ao"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Erie Insurance": {"name": "Erie Insurance", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/erieinsurance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5388314", "office": "insurance"}, "addTags": {"brand": "Erie Insurance", "brand:wikidata": "Q5388314", "brand:wikipedia": "en:Erie Insurance Group", "name": "Erie Insurance", "office": "insurance"}, "countryCodes": ["us"], "terms": ["erie"], "matchScore": 2, "suggestion": true}, - "office/insurance/Farmers Insurance": {"name": "Farmers Insurance", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/FarmersInsurance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1396863", "office": "insurance"}, "addTags": {"brand": "Farmers Insurance", "brand:wikidata": "Q1396863", "brand:wikipedia": "en:Farmers Insurance Group", "name": "Farmers Insurance", "office": "insurance"}, "countryCodes": ["us"], "terms": ["farmers"], "matchScore": 2, "suggestion": true}, - "office/insurance/Foyer": {"name": "Foyer", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1344573", "office": "insurance"}, "addTags": {"brand": "Foyer", "brand:wikidata": "Q1344573", "brand:wikipedia": "lb:Foyer", "name": "Foyer", "office": "insurance"}, "countryCodes": ["lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Fremap": {"name": "Fremap", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5869232", "office": "insurance"}, "addTags": {"brand": "Fremap", "brand:wikidata": "Q5869232", "brand:wikipedia": "es:Fremap", "name": "Fremap", "office": "insurance"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/GEICO": {"name": "GEICO", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/geico/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1498689", "office": "insurance"}, "addTags": {"brand": "GEICO", "brand:wikidata": "Q1498689", "brand:wikipedia": "en:GEICO", "name": "GEICO", "office": "insurance"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/GMF": {"name": "GMF", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/GMFassurances/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3095296", "office": "insurance"}, "addTags": {"brand": "GMF", "brand:wikidata": "Q3095296", "brand:wikipedia": "fr:Garantie mutuelle des fonctionnaires", "name": "GMF", "office": "insurance"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Generali": {"name": "Generali", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/GENERALIes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q670482", "office": "insurance"}, "addTags": {"brand": "Generali", "brand:wikidata": "Q670482", "brand:wikipedia": "it:Assicurazioni Generali", "name": "Generali", "office": "insurance"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Grange Insurance": {"name": "Grange Insurance", "icon": "temaki-briefcase_shield", "imageURL": "https://pbs.twimg.com/profile_images/476391605457260545/J37LFSJc_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17183481", "office": "insurance"}, "addTags": {"brand": "Grange Insurance", "brand:wikidata": "Q17183481", "brand:wikipedia": "en:Grange Insurance", "name": "Grange Insurance", "office": "insurance"}, "countryCodes": ["us"], "terms": ["grange"], "matchScore": 2, "suggestion": true}, - "office/insurance/Groupama": {"name": "Groupama", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/groupama/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3083531", "office": "insurance"}, "addTags": {"brand": "Groupama", "brand:wikidata": "Q3083531", "brand:wikipedia": "fr:Groupama", "name": "Groupama", "office": "insurance", "official_name": "Groupe des Assurances Mutuelles Agricoles"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/HUK-Coburg": {"name": "HUK-Coburg", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/HUKCOBURG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1566111", "office": "insurance"}, "addTags": {"brand": "HUK-Coburg", "brand:wikidata": "Q1566111", "brand:wikipedia": "de:HUK-Coburg", "name": "HUK-Coburg", "office": "insurance"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Harmonie Mutuelle": {"name": "Harmonie Mutuelle", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/harmoniemutuelle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3127528", "office": "insurance"}, "addTags": {"brand": "Harmonie Mutuelle", "brand:wikidata": "Q3127528", "brand:wikipedia": "fr:Harmonie mutuelle", "name": "Harmonie Mutuelle", "office": "insurance"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Helvetia": {"name": "Helvetia", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHelvetia%20logo%20422x129.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q933766", "office": "insurance"}, "addTags": {"brand": "Helvetia", "brand:wikidata": "Q933766", "brand:wikipedia": "it:Helvetia Assicurazioni", "name": "Helvetia", "office": "insurance"}, "countryCodes": ["at", "ch", "de", "es", "fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Knappschaft": {"name": "Knappschaft", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/KNAPPSCHAFT/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1313465", "office": "insurance"}, "addTags": {"brand": "Knappschaft", "brand:wikidata": "Q1313465", "brand:wikipedia": "de:Knappschaft (Krankenkasse)", "name": "Knappschaft", "office": "insurance"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/LaLux": {"name": "LaLux", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/LaLuxembourgeoise/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13103680", "office": "insurance"}, "addTags": {"brand": "LaLux", "brand:wikidata": "Q13103680", "brand:wikipedia": "lb:La Luxembourgeoise", "name": "LaLux", "office": "insurance"}, "countryCodes": ["lu"], "terms": ["la luxembourgeoise"], "matchScore": 2, "suggestion": true}, - "office/insurance/Liberty Seguros": {"name": "Liberty Seguros", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3178929", "office": "insurance"}, "addTags": {"brand": "Liberty Seguros", "brand:wikidata": "Q3178929", "brand:wikipedia": "es:Liberty Seguros", "name": "Liberty Seguros", "office": "insurance"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Línea Directa": {"name": "Línea Directa", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q325156", "office": "insurance"}, "addTags": {"brand": "Línea Directa", "brand:wikidata": "Q325156", "brand:wikipedia": "es:Línea Directa", "name": "Línea Directa", "office": "insurance"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/MAAF": {"name": "MAAF", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/maafassurances/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3331028", "office": "insurance"}, "addTags": {"brand": "MAAF", "brand:wikidata": "Q3331028", "brand:wikipedia": "fr:Mutuelle d'assurance des artisans de France", "name": "MAAF", "office": "insurance"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/MMA": {"name": "MMA", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/MMA.Assurances/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3331046", "office": "insurance"}, "addTags": {"brand": "MMA", "brand:wikidata": "Q3331046", "brand:wikipedia": "fr:MMA (assurance)", "name": "MMA", "office": "insurance", "official_name": "Mutuelles du Mans Assurances"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Macif": {"name": "Macif", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/lEssentielparMacif/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3331021", "office": "insurance"}, "addTags": {"brand": "Macif", "brand:wikidata": "Q3331021", "brand:wikipedia": "fr:Mutuelle assurance des commerçants et industriels de France et des cadres et des salariés de l'industrie et du commerce", "name": "Macif", "office": "insurance"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Maif": {"name": "Maif", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/MAIFassureur/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3331029", "office": "insurance"}, "addTags": {"brand": "Maif", "brand:wikidata": "Q3331029", "brand:wikipedia": "fr:Mutuelle d'assurance des instituteurs de France", "name": "Maif", "office": "insurance", "official_name": "Mutuelle d'assurance des instituteurs de France"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Mapfre": {"name": "Mapfre", "icon": "temaki-briefcase_shield", "imageURL": "https://pbs.twimg.com/profile_images/1185934397305847809/c6lv4Szo_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q544532", "office": "insurance"}, "addTags": {"brand": "Mapfre", "brand:wikidata": "Q544532", "brand:wikipedia": "en:Mapfre", "name": "Mapfre", "office": "insurance"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Matmut": {"name": "Matmut", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/MatmutAssurances/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3299185", "office": "insurance"}, "addTags": {"brand": "Matmut", "brand:wikidata": "Q3299185", "brand:wikipedia": "fr:Matmut", "name": "Matmut", "office": "insurance"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Mutua Madrileña": {"name": "Mutua Madrileña", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMutua%20Madrile%C3%B1a%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4888750", "office": "insurance"}, "addTags": {"brand": "Mutua Madrileña", "brand:wikidata": "Q4888750", "brand:wikipedia": "es:Mutua Madrileña", "name": "Mutua Madrileña", "office": "insurance"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Nationwide": {"name": "Nationwide", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/nationwide/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6979886", "office": "insurance"}, "addTags": {"brand": "Nationwide", "brand:wikidata": "Q6979886", "brand:wikipedia": "en:Nationwide Mutual Insurance Company", "name": "Nationwide", "office": "insurance"}, "countryCodes": ["us"], "terms": ["nationwide insurance"], "matchScore": 2, "suggestion": true}, - "office/insurance/Ocaso": {"name": "Ocaso", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6123955", "office": "insurance"}, "addTags": {"brand": "Ocaso", "brand:wikidata": "Q6123955", "brand:wikipedia": "es:Seguros Ocaso", "name": "Ocaso", "office": "insurance"}, "countryCodes": ["es", "gb"], "terms": ["ocaso seguros", "seguros ocaso"], "matchScore": 2, "suggestion": true}, - "office/insurance/PZU": {"name": "PZU", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/grupapzu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1807170", "office": "insurance"}, "addTags": {"brand": "PZU", "brand:wikidata": "Q1807170", "brand:wikipedia": "pl:Powszechny Zakład Ubezpieczeń", "name": "PZU", "office": "insurance"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Pelayo": {"name": "Pelayo", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16617805", "office": "insurance"}, "addTags": {"brand": "Pelayo", "brand:wikidata": "Q16617805", "brand:wikipedia": "es:Pelayo Seguros", "name": "Pelayo", "office": "insurance"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Progressive": {"name": "Progressive", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/progressive/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7248721", "office": "insurance"}, "addTags": {"brand": "Progressive", "brand:wikidata": "Q7248721", "brand:wikipedia": "en:Progressive Corporation", "name": "Progressive", "office": "insurance"}, "countryCodes": ["us"], "terms": ["progressive insurance"], "matchScore": 2, "suggestion": true}, - "office/insurance/Reale": {"name": "Reale", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Reale%20Mutua%202015.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3931092", "office": "insurance"}, "addTags": {"brand": "Reale", "brand:wikidata": "Q3931092", "brand:wikipedia": "it:Reale Mutua Assicurazioni", "name": "Reale", "office": "insurance"}, "countryCodes": ["cl", "es", "it"], "terms": ["reale chile", "reale immobili", "reale mutua assicurazioni", "reale seguros", "seguros reale"], "matchScore": 2, "suggestion": true}, - "office/insurance/SV SparkassenVersicherung": {"name": "SV SparkassenVersicherung", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSV%20SparkassenVersicherung%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2208645", "office": "insurance"}, "addTags": {"brand": "SV SparkassenVersicherung", "brand:wikidata": "Q2208645", "brand:wikipedia": "de:SV SparkassenVersicherung", "name": "SV SparkassenVersicherung", "office": "insurance"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Santa Lucía": {"name": "Santa Lucía", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSantalucia%20Seguros%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6120481", "office": "insurance"}, "addTags": {"brand": "Santa Lucía", "brand:wikidata": "Q6120481", "brand:wikipedia": "es:Santa Lucía", "name": "Santa Lucía", "office": "insurance"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/State Farm": {"name": "State Farm", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/statefarm/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2007336", "office": "insurance"}, "addTags": {"brand": "State Farm", "brand:wikidata": "Q2007336", "brand:wikipedia": "en:State Farm", "name": "State Farm", "office": "insurance"}, "countryCodes": ["us"], "terms": ["state farm insurance"], "matchScore": 2, "suggestion": true}, - "office/insurance/Swinton": {"name": "Swinton", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/SwintonInsurance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7658785", "office": "insurance"}, "addTags": {"brand": "Swinton", "brand:wikidata": "Q7658785", "brand:wikipedia": "en:Swinton Insurance", "name": "Swinton", "office": "insurance"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Techniker Krankenkasse": {"name": "Techniker Krankenkasse", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/DieTechniker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q607531", "office": "insurance"}, "addTags": {"brand": "Techniker Krankenkasse", "brand:wikidata": "Q607531", "brand:wikipedia": "de:Techniker Krankenkasse", "name": "Techniker Krankenkasse", "office": "insurance"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/The Co-operators": {"name": "The Co-operators", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/TheCooperatorsInsurance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3520320", "office": "insurance"}, "addTags": {"brand": "The Co-operators", "brand:wikidata": "Q3520320", "brand:wikipedia": "en:The Co-operators", "name": "The Co-operators", "office": "insurance"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Tranquilidade": {"name": "Tranquilidade", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7833457", "office": "insurance"}, "addTags": {"brand": "Tranquilidade Seguros", "brand:wikidata": "Q7833457", "brand:wikipedia": "en:Tranquilidade", "name": "Tranquilidade", "office": "insurance"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/VidaCaixa": {"name": "VidaCaixa", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11705079", "office": "insurance"}, "addTags": {"brand": "VidaCaixa", "brand:wikidata": "Q11705079", "brand:wikipedia": "es:VidaCaixa", "name": "VidaCaixa", "office": "insurance"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Württembergische": {"name": "Württembergische", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWuerttembergische.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1412465", "office": "insurance"}, "addTags": {"brand": "Württembergische", "brand:wikidata": "Q1412465", "brand:wikipedia": "de:Württembergische Versicherung", "name": "Württembergische", "office": "insurance"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Zurich": {"name": "Zurich", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FZurich%20Logo%20new.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q230426", "office": "insurance"}, "addTags": {"brand": "Zurich", "brand:wikidata": "Q230426", "brand:wikipedia": "en:Zurich Insurance Group", "name": "Zurich", "office": "insurance"}, "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Белгосстрах": {"name": "Белгосстрах", "icon": "temaki-briefcase_shield", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64606273", "office": "insurance"}, "addTags": {"brand": "Белгосстрах", "brand:be": "Белдзяржстрах", "brand:en": "Belgosstrakh", "brand:ru": "Белгосстрах", "brand:wikidata": "Q64606273", "name": "Белгосстрах", "name:be": "Белдзяржстрах", "name:en": "Belgosstrakh", "name:ru": "Белгосстрах", "office": "insurance"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Ингосстрах": {"name": "Ингосстрах", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/ingos.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4200631", "office": "insurance"}, "addTags": {"brand": "Ингосстрах", "brand:en": "Ingosstrakh", "brand:ru": "Ингосстрах", "brand:wikidata": "Q4200631", "brand:wikipedia": "ru:Ингосстрах", "name": "Ингосстрах", "name:en": "Ingosstrakh", "name:ru": "Ингосстрах", "office": "insurance"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/РЕСО-Гарантия": {"name": "РЕСО-Гарантия", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/reso.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4386516", "office": "insurance"}, "addTags": {"brand": "РЕСО-Гарантия", "brand:en": "RESO-Guarantee", "brand:ru": "РЕСО-Гарантия", "brand:wikidata": "Q4386516", "brand:wikipedia": "ru:РЕСО-Гарантия", "name": "РЕСО-Гарантия", "name:en": "RESO-Guarantee", "name:ru": "РЕСО-Гарантия", "office": "insurance"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Росгосстрах": {"name": "Росгосстрах", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/RGS.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4397745", "office": "insurance"}, "addTags": {"brand": "Росгосстрах", "brand:wikidata": "Q4397745", "brand:wikipedia": "en:Rosgosstrakh", "name": "Росгосстрах", "office": "insurance"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/Согласие": {"name": "Согласие", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/soglasie.sk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4426689", "office": "insurance"}, "addTags": {"brand": "Согласие", "brand:en": "Soglasie", "brand:ru": "Согласие", "brand:wikidata": "Q4426689", "brand:wikipedia": "ru:Согласие (компания)", "name": "Согласие", "name:en": "Soglasie", "name:ru": "Согласие", "office": "insurance"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/بیمه ایران": {"name": "بیمه ایران", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/iraninsurance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5930269", "office": "insurance"}, "addTags": {"brand": "بیمه ایران", "brand:en": "Iran Insurance", "brand:fa": "بیمه ایران", "brand:wikidata": "Q5930269", "brand:wikipedia": "fa:بیمه ایران", "name": "بیمه ایران", "name:en": "Iran Insurance", "name:fa": "بیمه ایران", "office": "insurance"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/日本生命": {"name": "日本生命", "icon": "temaki-briefcase_shield", "imageURL": "https://graph.facebook.com/nihonseimei/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q519611", "office": "insurance"}, "addTags": {"alt_name:en": "Nissay", "brand": "日本生命", "brand:en": "Nippon Life", "brand:ja": "日本生命", "brand:wikidata": "Q519611", "brand:wikipedia": "ja:日本生命保険", "name": "日本生命", "name:en": "Nippon Life", "name:ja": "日本生命", "office": "insurance"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/明治安田生命": {"name": "明治安田生命", "icon": "temaki-briefcase_shield", "imageURL": "https://pbs.twimg.com/profile_images/1044889350721261568/rOkH90FO_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q174081", "office": "insurance"}, "addTags": {"brand": "明治安田生命", "brand:en": "Meiji Yasuda Life", "brand:ja": "明治安田生命", "brand:wikidata": "Q174081", "brand:wikipedia": "ja:明治安田生命保険", "name": "明治安田生命", "name:en": "Meiji Yasuda Life", "name:ja": "明治安田生命", "office": "insurance"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/insurance/第一生命": {"name": "第一生命", "icon": "temaki-briefcase_shield", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Dai-ichi%20Seimei%20Hoken.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q595475", "office": "insurance"}, "addTags": {"brand": "第一生命", "brand:en": "Dai-ichi Life", "brand:ja": "第一生命", "brand:wikidata": "Q595475", "brand:wikipedia": "ja:第一生命保険", "name": "第一生命", "name:en": "Dai-ichi Life", "name:ja": "第一生命", "office": "insurance"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/tax_advisor/Block Advisors": {"name": "Block Advisors", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/BlockAdvisors/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64166231", "office": "tax_advisor"}, "addTags": {"brand": "Block Advisors", "brand:wikidata": "Q64166231", "name": "Block Advisors", "office": "tax_advisor"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/tax_advisor/H&R Block": {"name": "H&R Block", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/hrblock/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5627799", "office": "tax_advisor"}, "addTags": {"brand": "H&R Block", "brand:wikidata": "Q5627799", "brand:wikipedia": "en:H&R Block", "name": "H&R Block", "office": "tax_advisor"}, "countryCodes": ["au", "ca", "in", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/tax_advisor/Jackson Hewitt": {"name": "Jackson Hewitt", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/jacksonhewitt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6117132", "office": "tax_advisor"}, "addTags": {"brand": "Jackson Hewitt", "brand:wikidata": "Q6117132", "brand:wikipedia": "en:Jackson Hewitt", "name": "Jackson Hewitt", "office": "tax_advisor", "official_name": "Jackson Hewitt Tax Service"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/tax_advisor/Liberty Tax": {"name": "Liberty Tax", "icon": "maki-suitcase", "imageURL": "https://graph.facebook.com/libertytax/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6541978", "office": "tax_advisor"}, "addTags": {"alt_name": "Liberty Tax Service", "brand": "Liberty Tax", "brand:wikidata": "Q6541978", "brand:wikipedia": "en:Liberty Tax Service", "name": "Liberty Tax", "office": "tax_advisor"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/telecommunication/Antik Telecom": {"name": "Antik Telecom", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/antik.telecom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30297477", "office": "telecommunication"}, "addTags": {"brand": "Antik Telecom", "brand:wikidata": "Q30297477", "brand:wikipedia": "sk:Antik Telecom", "name": "Antik Telecom", "office": "telecommunication"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/telecommunication/ETECSA": {"name": "ETECSA", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/etecsa.cu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q490323", "office": "telecommunication"}, "addTags": {"brand": "ETECSA", "brand:wikidata": "Q490323", "brand:wikipedia": "es:Empresa de Telecomunicaciones de Cuba", "name": "ETECSA", "office": "telecommunication", "official_name": "Empresa de Telecomunicaciones de Cuba"}, "countryCodes": ["cu"], "terms": [], "matchScore": 2, "suggestion": true}, - "office/telecommunication/Билайн": {"name": "Билайн", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/Beelinerus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q402880", "office": "telecommunication"}, "addTags": {"brand": "Билайн", "brand:en": "Beeline", "brand:ru": "Билайн", "brand:wikidata": "Q402880", "brand:wikipedia": "ru:Билайн", "name": "Билайн", "name:en": "Beeline", "name:ru": "Билайн", "office": "telecommunication"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/agrarian/Granngården": {"name": "Granngården", "icon": "fas-tractor", "imageURL": "https://graph.facebook.com/granngarden/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10508136", "shop": "agrarian"}, "addTags": {"brand": "Granngården", "brand:wikidata": "Q10508136", "brand:wikipedia": "sv:Granngården AB", "name": "Granngården", "shop": "agrarian"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/agrarian/Southern States": {"name": "Southern States", "icon": "fas-tractor", "imageURL": "https://graph.facebook.com/SouthernStatesCoop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7570508", "shop": "agrarian"}, "addTags": {"agrarian": "seed;feed;tools", "brand": "Southern States", "brand:wikidata": "Q7570508", "brand:wikipedia": "en:Southern States Cooperative", "name": "Southern States", "official_name": "Southern States Cooperative", "shop": "agrarian"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Alko": {"name": "Alko", "icon": "fas-wine-bottle", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlko.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1849187", "shop": "alcohol"}, "addTags": {"brand": "Alko", "brand:wikidata": "Q1849187", "brand:wikipedia": "en:Alko", "name": "Alko", "shop": "alcohol"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/BC Liquor Store": {"name": "BC Liquor Store", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/1302250656/winesplash-icon_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q43079557", "shop": "alcohol"}, "addTags": {"brand": "BC Liquor Store", "brand:wikidata": "Q43079557", "brand:wikipedia": "en:BC Liquor Stores", "name": "BC Liquor Store", "shop": "alcohol"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/BWS": {"name": "BWS", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4836848", "shop": "alcohol"}, "addTags": {"brand": "BWS", "brand:wikidata": "Q4836848", "brand:wikipedia": "en:BWS (liquor retailer)", "name": "BWS", "shop": "alcohol"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Bargain Booze": {"name": "Bargain Booze", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/998956835796205568/21tNi907_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16971315", "shop": "alcohol"}, "addTags": {"brand": "Bargain Booze", "brand:wikidata": "Q16971315", "brand:wikipedia": "en:Bargain Booze", "name": "Bargain Booze", "shop": "alcohol"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/BevMo!": {"name": "BevMo!", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/1252723826464485376/bH4sG3Rb_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4899308", "shop": "alcohol"}, "addTags": {"brand": "BevMo!", "brand:wikidata": "Q4899308", "brand:wikipedia": "en:BevMo!", "name": "BevMo!", "shop": "alcohol"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Dan Murphy's": {"name": "Dan Murphy's", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/465419847128473601/ybOMjW8-_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5214075", "shop": "alcohol"}, "addTags": {"brand": "Dan Murphy's", "brand:wikidata": "Q5214075", "brand:wikipedia": "en:Dan Murphy's", "name": "Dan Murphy's", "shop": "alcohol"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Fine Wine & Good Spirits": {"name": "Fine Wine & Good Spirits", "icon": "fas-wine-bottle", "imageURL": "https://graph.facebook.com/PAWineSpirits/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64514776", "shop": "alcohol"}, "addTags": {"brand": "Fine Wine & Good Spirits", "brand:wikidata": "Q64514776", "name": "Fine Wine & Good Spirits", "shop": "alcohol"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Gall & Gall": {"name": "Gall & Gall", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/652468758515068928/dzFqRsLG_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13639185", "shop": "alcohol"}, "addTags": {"brand": "Gall & Gall", "brand:wikidata": "Q13639185", "brand:wikipedia": "nl:Gall & Gall", "name": "Gall & Gall", "shop": "alcohol"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/LCBO": {"name": "LCBO", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/1219655411999088640/YpWTIjG5_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q845263", "shop": "alcohol"}, "addTags": {"brand": "LCBO", "brand:wikidata": "Q845263", "brand:wikipedia": "en:Liquor Control Board of Ontario", "name": "LCBO", "shop": "alcohol"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Liquorland": {"name": "Liquorland", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/378800000468322180/92219ed513322ff2f4d6d416dc477704_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2283837", "shop": "alcohol"}, "addTags": {"brand": "Liquorland", "brand:wikidata": "Q2283837", "brand:wikipedia": "en:Liquorland", "name": "Liquorland", "shop": "alcohol"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Majestic": {"name": "Majestic", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/1139531853759729665/3J0irT72_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6737725", "shop": "alcohol"}, "addTags": {"brand": "Majestic", "brand:wikidata": "Q6737725", "brand:wikipedia": "en:Majestic Wine", "name": "Majestic", "shop": "alcohol"}, "countryCodes": ["gb"], "terms": ["majestic wine", "majestic wine warehouse"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Nicolas": {"name": "Nicolas", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/842779196082573314/AtkEMQlh_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3340012", "shop": "alcohol"}, "addTags": {"brand": "Nicolas", "brand:wikidata": "Q3340012", "brand:wikipedia": "en:Nicolas (wine retailer)", "name": "Nicolas", "shop": "alcohol"}, "countryCodes": ["be", "fr", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Oddbins": {"name": "Oddbins", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/547781884533436416/xshXfITG_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7077472", "shop": "alcohol"}, "addTags": {"brand": "Oddbins", "brand:wikidata": "Q7077472", "brand:wikipedia": "en:Oddbins", "name": "Oddbins", "shop": "alcohol"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/SAQ": {"name": "SAQ", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/1246136570626834434/vkUr__2-_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3488077", "shop": "alcohol"}, "addTags": {"brand": "SAQ", "brand:wikidata": "Q3488077", "brand:wikipedia": "en:Société des alcools du Québec", "name": "SAQ", "shop": "alcohol"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/SAQ Express": {"name": "SAQ Express", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/1246136570626834434/vkUr__2-_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3488077", "shop": "alcohol"}, "addTags": {"brand": "SAQ Express", "brand:wikidata": "Q3488077", "brand:wikipedia": "en:Société des alcools du Québec", "name": "SAQ Express", "shop": "alcohol"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/SAQ Sélection": {"name": "SAQ Sélection", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/1246136570626834434/vkUr__2-_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3488077", "shop": "alcohol"}, "addTags": {"brand": "SAQ Sélection", "brand:wikidata": "Q3488077", "brand:wikipedia": "en:Société des alcools du Québec", "name": "SAQ Sélection", "shop": "alcohol"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Spec's": {"name": "Spec's", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/1240285330672160771/yaFSaEzi_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7574415", "shop": "alcohol"}, "addTags": {"brand": "Spec's", "brand:wikidata": "Q7574415", "brand:wikipedia": "en:Spec's Wine, Spirits & Finer Foods", "name": "Spec's", "shop": "alcohol"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Systembolaget": {"name": "Systembolaget", "icon": "fas-wine-bottle", "imageURL": "https://graph.facebook.com/systembolaget/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1476113", "shop": "alcohol"}, "addTags": {"brand": "Systembolaget", "brand:wikidata": "Q1476113", "brand:wikipedia": "en:Systembolaget", "name": "Systembolaget", "shop": "alcohol"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/The Beer Store": {"name": "The Beer Store", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/1112700310441676800/Gyk3rZl6_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16243674", "shop": "alcohol"}, "addTags": {"brand": "The Beer Store", "brand:wikidata": "Q16243674", "brand:wikipedia": "en:The Beer Store", "name": "The Beer Store", "shop": "alcohol"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Total Wine": {"name": "Total Wine", "icon": "fas-wine-bottle", "imageURL": "https://pbs.twimg.com/profile_images/1171529136919048195/cip0mUtb_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7828084", "shop": "alcohol"}, "addTags": {"brand": "Total Wine", "brand:wikidata": "Q7828084", "brand:wikipedia": "en:Total Wine & More", "name": "Total Wine", "official_name": "Total Wine & More", "shop": "alcohol"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Virginia ABC": {"name": "Virginia ABC", "icon": "fas-wine-bottle", "imageURL": "https://graph.facebook.com/VirginiaABC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7934236", "shop": "alcohol"}, "addTags": {"brand": "Virginia ABC", "brand:wikidata": "Q7934236", "brand:wikipedia": "en:Virginia Alcoholic Beverage Control Authority", "name": "Virginia ABC", "shop": "alcohol"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Бристоль": {"name": "Бристоль", "icon": "fas-wine-bottle", "imageURL": "https://graph.facebook.com/bristolretail/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q59155583", "shop": "alcohol"}, "addTags": {"brand": "Бристоль", "brand:wikidata": "Q59155583", "brand:wikipedia": "ru:Бристоль (сеть магазинов)", "name": "Бристоль", "shop": "alcohol"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/Красное & Белое": {"name": "Красное & Белое", "icon": "fas-wine-bottle", "imageURL": "https://graph.facebook.com/krasnoe.beloe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24933790", "shop": "alcohol"}, "addTags": {"brand": "Красное & Белое", "brand:en": "Red&White", "brand:wikidata": "Q24933790", "brand:wikipedia": "en:Krasnoe & Beloe", "name": "Красное & Белое", "name:en": "Red&White", "shop": "alcohol"}, "countryCodes": ["ru"], "terms": ["красное и белое"], "matchScore": 2, "suggestion": true}, - "shop/alcohol/やまや": {"name": "やまや", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17224765", "shop": "alcohol"}, "addTags": {"brand": "やまや", "brand:en": "Yamaya", "brand:ja": "やまや", "brand:wikidata": "Q17224765", "brand:wikipedia": "ja:やまや", "name": "やまや", "name:en": "YaMaYa", "name:ja": "やまや", "shop": "alcohol"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/alcohol/カクヤス": {"name": "カクヤス", "icon": "fas-wine-bottle", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11293990", "shop": "alcohol"}, "addTags": {"brand": "カクヤス", "brand:en": "Kakuyasu", "brand:ja": "カクヤス", "brand:wikidata": "Q11293990", "brand:wikipedia": "ja:カクヤス", "name": "カクヤス", "name:en": "Kakuyasu", "name:ja": "カクヤス", "shop": "alcohol"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/anime/まんだらけ": {"name": "まんだらけ", "icon": "fas-dragon", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMandarake%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6747833", "shop": "anime"}, "addTags": {"brand": "まんだらけ", "brand:en": "Mandarake", "brand:ja": "まんだらけ", "brand:wikidata": "Q6747833", "brand:wikipedia": "ja:まんだらけ", "name": "まんだらけ", "name:en": "Mandarake", "name:ja": "まんだらけ", "shop": "anime"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/anime/らしんばん": {"name": "らしんばん", "icon": "fas-dragon", "imageURL": "https://pbs.twimg.com/profile_images/876738581628198913/PsCMQrPq_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11281322", "shop": "anime"}, "addTags": {"brand": "らしんばん", "brand:en": "Lashinbang", "brand:ja": "らしんばん", "brand:wikidata": "Q11281322", "brand:wikipedia": "ja:らしんばん", "name": "らしんばん", "name:en": "Lashinbang", "name:ja": "らしんばん", "shop": "anime"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/anime/ケイ・ブックス": {"name": "ケイ・ブックス", "icon": "fas-dragon", "imageURL": "https://graph.facebook.com/136524066475474/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8061680", "shop": "anime"}, "addTags": {"brand": "ケイ・ブックス", "brand:en": "K-BOOKS", "brand:ja": "ケイ・ブックス", "brand:wikidata": "Q8061680", "brand:wikipedia": "ja:K-BOOKS", "name": "ケイ・ブックス", "name:en": "K-BOOKS", "name:ja": "ケイ・ブックス", "shop": "anime"}, "countryCodes": ["jp"], "terms": ["k-books"], "matchScore": 2, "suggestion": true}, - "shop/art/YellowKorner": {"name": "YellowKorner", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/YellowKorner/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3572115", "shop": "art"}, "addTags": {"brand": "YellowKorner", "brand:wikidata": "Q3572115", "brand:wikipedia": "fr:YellowKorner", "name": "YellowKorner", "shop": "art"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/baby_goods/Aubert": {"name": "Aubert", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/Aubert/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62964657", "shop": "baby_goods"}, "addTags": {"brand": "Aubert", "brand:wikidata": "Q62964657", "name": "Aubert", "shop": "baby_goods"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/baby_goods/Babies R Us": {"name": "Babies R Us", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/babiesrus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17232036", "shop": "baby_goods"}, "addTags": {"brand": "Babies R Us", "brand:wikidata": "Q17232036", "name": "Babies R Us", "shop": "baby_goods"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/baby_goods/BabyOne": {"name": "BabyOne", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/BabyOne/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57540408", "shop": "baby_goods"}, "addTags": {"brand": "BabyOne", "brand:wikidata": "Q57540408", "name": "BabyOne", "shop": "baby_goods"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/baby_goods/Buy Buy Baby": {"name": "Buy Buy Baby", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/buybuyBABY/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5003352", "shop": "baby_goods"}, "addTags": {"brand": "Buy Buy Baby", "brand:wikidata": "Q5003352", "brand:wikipedia": "en:Buy Buy Baby", "name": "Buy Buy Baby", "shop": "baby_goods"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/baby_goods/Mothercare": {"name": "Mothercare", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/mothercareuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q136738", "shop": "baby_goods"}, "addTags": {"brand": "Mothercare", "brand:wikidata": "Q136738", "brand:wikipedia": "en:Mothercare", "name": "Mothercare", "shop": "baby_goods"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/baby_goods/Zippy": {"name": "Zippy", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/zykidstore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10395161", "shop": "baby_goods"}, "addTags": {"brand": "Zippy", "brand:wikidata": "Q10395161", "brand:wikipedia": "en:Zippy Kidstore", "name": "Zippy", "shop": "baby_goods"}, "countryCodes": ["es", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/baby_goods/西松屋": {"name": "西松屋", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/nishimatsuya.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11628761", "shop": "baby_goods"}, "addTags": {"brand": "西松屋", "brand:en": "Nishimatsuya Chain", "brand:ja": "西松屋", "brand:wikidata": "Q11628761", "brand:wikipedia": "ja:西松屋", "name": "西松屋", "name:en": "Nishimatsuya Chain", "name:ja": "西松屋", "shop": "baby_goods"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/baby_goods/赤ちゃん本舗": {"name": "赤ちゃん本舗", "icon": "fas-baby-carriage", "imageURL": "https://graph.facebook.com/akachanhonpo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11257015", "shop": "baby_goods"}, "addTags": {"brand": "赤ちゃん本舗", "brand:en": "Akachan Honpo", "brand:ja": "赤ちゃん本舗", "brand:wikidata": "Q11257015", "brand:wikipedia": "ja:赤ちゃん本舗", "name": "赤ちゃん本舗", "name:en": "Akachan Honpo", "name:ja": "赤ちゃん本舗", "shop": "baby_goods"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bag/Bentley": {"name": "Bentley", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/bentleycoltd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65947700", "shop": "bag"}, "addTags": {"brand": "Bentley", "brand:wikidata": "Q65947700", "name": "Bentley", "shop": "bag"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bag/Carpisa": {"name": "Carpisa", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/CarpisaOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28035409", "shop": "bag"}, "addTags": {"brand": "Carpisa", "brand:wikidata": "Q28035409", "brand:wikipedia": "en:Carpisa", "name": "Carpisa", "shop": "bag"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bag/Coach": {"name": "Coach", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/coach/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q727697", "shop": "bag"}, "addTags": {"brand": "Coach", "brand:wikidata": "Q727697", "brand:wikipedia": "en:Coach New York", "name": "Coach", "shop": "bag"}, "countryCodes": ["ca", "us"], "terms": ["coach new york", "coach ny"], "matchScore": 2, "suggestion": true}, - "shop/bag/Kipling": {"name": "Kipling", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/KiplingU.S.A/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6414641", "shop": "bag"}, "addTags": {"brand": "Kipling", "brand:wikidata": "Q6414641", "brand:wikipedia": "en:Kipling (brand)", "name": "Kipling", "shop": "bag"}, "countryCodes": ["be", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bag/Samsonite": {"name": "Samsonite", "icon": "fas-suitcase-rolling", "imageURL": "https://pbs.twimg.com/profile_images/1117861430366175232/3u8m-kIE_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1203426", "shop": "bag"}, "addTags": {"brand": "Samsonite", "brand:wikidata": "Q1203426", "brand:wikipedia": "en:Samsonite", "name": "Samsonite", "shop": "bag"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bag/Tumi": {"name": "Tumi", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/TumiTravel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4465402", "shop": "bag"}, "addTags": {"brand": "Tumi", "brand:wikidata": "Q4465402", "brand:wikipedia": "en:Tumi Inc.", "name": "Tumi", "shop": "bag"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bag/Vera Bradley": {"name": "Vera Bradley", "icon": "fas-suitcase-rolling", "imageURL": "https://graph.facebook.com/VeraBradley/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7920749", "shop": "bag"}, "addTags": {"brand": "Vera Bradley", "brand:wikidata": "Q7920749", "brand:wikipedia": "en:Vera Bradley", "name": "Vera Bradley", "shop": "bag"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Anker": {"name": "Anker", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/Ankerbrot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q557116", "shop": "bakery"}, "addTags": {"brand": "Anker", "brand:wikidata": "Q557116", "brand:wikipedia": "de:Ankerbrot", "name": "Anker", "shop": "bakery"}, "countryCodes": ["at", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Armbruster": {"name": "Armbruster", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/104104147676951/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q67987954", "shop": "bakery"}, "addTags": {"brand": "Armbruster", "brand:wikidata": "Q67987954", "name": "Armbruster", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Arome Bakery": {"name": "Arome Bakery", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/aromebakery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1305627", "shop": "bakery"}, "addTags": {"brand": "Arome Bakery", "brand:wikidata": "Q1305627", "brand:wikipedia": "zh:東海堂", "name": "Arome Bakery", "shop": "bakery"}, "countryCodes": ["hk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Awiteks": {"name": "Awiteks", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/awiteks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62054190", "shop": "bakery"}, "addTags": {"brand": "Awiteks", "brand:wikidata": "Q62054190", "name": "Awiteks", "shop": "bakery"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Back-Factory": {"name": "Back-Factory", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/backfactory/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21200483", "shop": "bakery"}, "addTags": {"brand": "Back-Factory", "brand:wikidata": "Q21200483", "brand:wikipedia": "de:Back-Factory", "name": "Back-Factory", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Backstube Wünsche": {"name": "Backstube Wünsche", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/BackstubeWuensche/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66085325", "shop": "bakery"}, "addTags": {"brand": "Backstube Wünsche", "brand:wikidata": "Q66085325", "name": "Backstube Wünsche", "shop": "bakery"}, "countryCodes": ["de"], "terms": ["wünsche"], "matchScore": 2, "suggestion": true}, - "shop/bakery/Backwerk": {"name": "Backwerk", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/155997891116938/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q798298", "shop": "bakery"}, "addTags": {"brand": "BackWerk", "brand:wikidata": "Q798298", "brand:wikipedia": "de:BackWerk", "name": "Backwerk", "shop": "bakery"}, "countryCodes": ["at", "ch", "de", "gb", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Baguette": {"name": "Baguette", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/Baguette.at/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q82512635", "shop": "bakery"}, "addTags": {"brand": "Baguette", "brand:wikidata": "Q82512635", "name": "Baguette", "shop": "bakery"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Bakers Delight": {"name": "Bakers Delight", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/bakersdelight/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4849261", "shop": "bakery"}, "addTags": {"brand": "Bakers Delight", "brand:wikidata": "Q4849261", "brand:wikipedia": "en:Bakers Delight", "name": "Bakers Delight", "shop": "bakery"}, "countryCodes": ["au", "ca", "nz", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Bakker Bart": {"name": "Bakker Bart", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/bakkerbartNL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2177445", "shop": "bakery"}, "addTags": {"brand": "Bakker Bart", "brand:wikidata": "Q2177445", "brand:wikipedia": "nl:Bakker Bart", "name": "Bakker Bart", "shop": "bakery"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Balfours": {"name": "Balfours", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/balfoursbakery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4850765", "shop": "bakery"}, "addTags": {"brand": "Balfours", "brand:wikidata": "Q4850765", "name": "Balfours", "shop": "bakery", "takeaway": "yes"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Banette": {"name": "Banette", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/293934294060419/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2882405", "shop": "bakery"}, "addTags": {"brand": "Banette", "brand:wikidata": "Q2882405", "brand:wikipedia": "fr:Banette (entreprise)", "name": "Banette", "shop": "bakery"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Beechworth Bakery": {"name": "Beechworth Bakery", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/Beechworth.Bakery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28183324", "shop": "bakery"}, "addTags": {"brand": "Beechworth Bakery", "brand:wikidata": "Q28183324", "brand:wikipedia": "en:Beechworth Bakery", "name": "Beechworth Bakery", "shop": "bakery"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Birds": {"name": "Birds", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/birdsbakeryderby/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63001935", "shop": "bakery"}, "addTags": {"brand": "Birds", "brand:wikidata": "Q63001935", "brand:wikipedia": "en:Birds Bakery", "name": "Birds", "official_name": "Birds Bakery", "shop": "bakery"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/BreadTalk": {"name": "BreadTalk", "icon": "maki-bakery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBreadTalk%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1106640", "shop": "bakery"}, "addTags": {"brand": "BreadTalk", "brand:wikidata": "Q1106640", "brand:wikipedia": "en:BreadTalk", "name": "BreadTalk", "shop": "bakery"}, "countryCodes": ["sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Breadtop": {"name": "Breadtop", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/we.love.breadtop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4959217", "shop": "bakery"}, "addTags": {"brand": "Breadtop", "brand:wikidata": "Q4959217", "brand:wikipedia": "en:Breadtop", "cuisine": "chinese", "name": "Breadtop", "shop": "bakery"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Brioche Dorée": {"name": "Brioche Dorée", "icon": "maki-bakery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBrioche%20Doree.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2925606", "shop": "bakery"}, "addTags": {"brand": "Brioche Dorée", "brand:wikidata": "Q2925606", "brand:wikipedia": "fr:Brioche Dorée", "name": "Brioche Dorée", "shop": "bakery"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Brumby's Bakeries": {"name": "Brumby's Bakeries", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/brumbys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4978794", "shop": "bakery"}, "addTags": {"brand": "Brumby's Bakeries", "brand:wikidata": "Q4978794", "brand:wikipedia": "en:Brumby's Bakeries", "name": "Brumby's Bakeries", "shop": "bakery"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Bäckerei Fuchs": {"name": "Bäckerei Fuchs", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/baeckereifuchs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q42825993", "shop": "bakery"}, "addTags": {"brand": "Bäckerei Fuchs", "brand:wikidata": "Q42825993", "brand:wikipedia": "de:Harald Fuchs Bäckerei – Konditorei", "name": "Bäckerei Fuchs", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/COBS Bread": {"name": "COBS Bread", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/bakersdelight/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4849261", "shop": "bakery"}, "addTags": {"brand": "COBS Bread", "brand:wikidata": "Q4849261", "brand:wikipedia": "en:Bakers Delight", "name": "COBS Bread", "shop": "bakery"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Cadera": {"name": "Cadera", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/Cadera1853/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62086410", "shop": "bakery"}, "addTags": {"brand": "Cadera", "brand:wikidata": "Q62086410", "name": "Cadera", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Castaño": {"name": "Castaño", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5049629", "shop": "bakery"}, "addTags": {"brand": "Castaño", "brand:wikidata": "Q5049629", "brand:wikipedia": "en:Castaño (bakery)", "name": "Castaño", "shop": "bakery"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Cooplands": {"name": "Cooplands", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/CooplandsBakers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5167971", "shop": "bakery"}, "addTags": {"brand": "Cooplands", "brand:wikidata": "Q5167971", "brand:wikipedia": "en:Cooplands", "name": "Cooplands", "shop": "bakery"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Dat Backhus": {"name": "Dat Backhus", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/datbackhus.hamburg/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62093175", "shop": "bakery"}, "addTags": {"brand": "Dat Backhus", "brand:wikidata": "Q62093175", "name": "Dat Backhus", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/De Echte Bakker": {"name": "De Echte Bakker", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16920716", "shop": "bakery"}, "addTags": {"brand": "De Echte Bakker", "brand:wikidata": "Q16920716", "brand:wikipedia": "en:De Echte Bakker", "name": "De Echte Bakker", "shop": "bakery"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Der Beck": {"name": "Der Beck", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/derbeck.baeckerei/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1192443", "shop": "bakery"}, "addTags": {"brand": "Der Beck", "brand:wikidata": "Q1192443", "brand:wikipedia": "en:Der Beck", "name": "Der Beck", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Ditsch": {"name": "Ditsch", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/ditsch/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q911573", "shop": "bakery"}, "addTags": {"brand": "Ditsch", "brand:wikidata": "Q911573", "brand:wikipedia": "en:Ditsch", "name": "Ditsch", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Fornetti": {"name": "Fornetti", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/fornetti.magyarorszag/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1003020", "shop": "bakery"}, "addTags": {"brand": "Fornetti", "brand:wikidata": "Q1003020", "brand:wikipedia": "en:Fornetti", "name": "Fornetti", "shop": "bakery"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Franz": {"name": "Franz", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/franzbakery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7889571", "shop": "bakery"}, "addTags": {"brand": "Franz", "brand:wikidata": "Q7889571", "brand:wikipedia": "en:United States Bakery", "name": "Franz", "shop": "bakery"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Goldilocks": {"name": "Goldilocks", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/GoldilocksPH/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5580198", "shop": "bakery"}, "addTags": {"brand": "Goldilocks", "brand:wikidata": "Q5580198", "brand:wikipedia": "en:Goldilocks Bakeshop", "name": "Goldilocks", "shop": "bakery"}, "countryCodes": ["ca", "ph", "th", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Great Harvest Bread Company": {"name": "Great Harvest Bread Company", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/GreatHarvestBreadCo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5599297", "shop": "bakery"}, "addTags": {"brand": "Great Harvest Bread Company", "brand:wikidata": "Q5599297", "brand:wikipedia": "en:Great Harvest Bread Company", "name": "Great Harvest Bread Company", "shop": "bakery"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Hofpfisterei": {"name": "Hofpfisterei", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/hofpfisterei/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1623217", "shop": "bakery"}, "addTags": {"brand": "Hofpfisterei", "brand:wikidata": "Q1623217", "brand:wikipedia": "en:Hofpfisterei", "name": "Hofpfisterei", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Ihle": {"name": "Ihle", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/1845011368873218/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1626371", "shop": "bakery"}, "addTags": {"brand": "Ihle", "brand:wikidata": "Q1626371", "brand:wikipedia": "de:Landbäckerei Ihle", "name": "Ihle", "shop": "bakery"}, "countryCodes": ["de"], "terms": ["landbäckerei ihle"], "matchScore": 2, "suggestion": true}, - "shop/bakery/K&U Bäckerei": {"name": "K&U Bäckerei", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/KU.Backkultur/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1719433", "shop": "bakery"}, "addTags": {"brand": "K&U Bäckerei", "brand:wikidata": "Q1719433", "brand:wikipedia": "de:K & U Bäckerei", "name": "K&U Bäckerei", "shop": "bakery"}, "countryCodes": ["de"], "terms": ["k&u"], "matchScore": 2, "suggestion": true}, - "shop/bakery/Kamps": {"name": "Kamps", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/417008548362119/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1723381", "shop": "bakery"}, "addTags": {"brand": "Kamps", "brand:wikidata": "Q1723381", "brand:wikipedia": "de:Kamps (Unternehmen)", "name": "Kamps", "shop": "bakery"}, "countryCodes": ["de"], "terms": ["bäckerei kamps"], "matchScore": 2, "suggestion": true}, - "shop/bakery/La Mie Câline": {"name": "La Mie Câline", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/lamiecalinefrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3210704", "shop": "bakery"}, "addTags": {"brand": "La Mie Câline", "brand:wikidata": "Q3210704", "brand:wikipedia": "fr:La Mie câline", "name": "La Mie Câline", "shop": "bakery"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Le Crobag": {"name": "Le Crobag", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/lecrobag/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1558025", "shop": "bakery"}, "addTags": {"brand": "Le Crobag", "brand:wikidata": "Q1558025", "brand:wikipedia": "de:Le Crobag", "name": "Le Crobag", "shop": "bakery"}, "countryCodes": ["at", "de", "pl", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Le Pétrin Ribeïrou": {"name": "Le Pétrin Ribeïrou", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/lespetrinsribeirou/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89209633", "shop": "bakery"}, "addTags": {"brand": "Le Pétrin Ribeïrou", "brand:wikidata": "Q89209633", "name": "Le Pétrin Ribeïrou", "shop": "bakery"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Leifert": {"name": "Leifert", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/baeckerei.leifert/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66086129", "shop": "bakery"}, "addTags": {"brand": "Leifert", "brand:wikidata": "Q66086129", "name": "Leifert", "shop": "bakery"}, "countryCodes": ["de"], "terms": ["bäckerei leifert"], "matchScore": 2, "suggestion": true}, - "shop/bakery/Lila Bäcker": {"name": "Lila Bäcker", "icon": "maki-bakery", "imageURL": "https://pbs.twimg.com/profile_images/1145260042/logo_up_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57516591", "shop": "bakery"}, "addTags": {"brand": "Lila Bäcker", "brand:wikidata": "Q57516591", "name": "Lila Bäcker", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Löwenbäcker Schaper": {"name": "Löwenbäcker Schaper", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/LoewenbaeckerSchaper/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62075965", "shop": "bakery"}, "addTags": {"brand": "Löwenbäcker Schaper", "brand:wikidata": "Q62075965", "name": "Löwenbäcker Schaper", "shop": "bakery"}, "countryCodes": ["de"], "terms": ["schaper"], "matchScore": 2, "suggestion": true}, - "shop/bakery/Marie Blachère": {"name": "Marie Blachère", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/MarieBlachereFR/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62082410", "shop": "bakery"}, "addTags": {"brand": "Marie Blachère", "brand:wikidata": "Q62082410", "brand:wikipedia": "fr:Marie Blachère", "name": "Marie Blachère", "shop": "bakery"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Milkau": {"name": "Milkau", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/MilkauStadtbaecker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66208652", "shop": "bakery"}, "addTags": {"brand": "Milkau", "brand:wikidata": "Q66208652", "name": "Milkau", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Mlinar": {"name": "Mlinar", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/MlinarHrvatska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62082464", "shop": "bakery"}, "addTags": {"brand": "Mlinar", "brand:wikidata": "Q62082464", "name": "Mlinar", "shop": "bakery"}, "countryCodes": ["ba", "hr", "sl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Musmanni": {"name": "Musmanni", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19382082", "shop": "bakery"}, "addTags": {"brand": "Musmanni", "brand:wikidata": "Q19382082", "brand:wikipedia": "no:Musmanni", "name": "Musmanni", "shop": "bakery"}, "countryCodes": ["cr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Nothing Bundt Cakes": {"name": "Nothing Bundt Cakes", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/nothingbundtcakes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62082526", "shop": "bakery"}, "addTags": {"brand": "Nothing Bundt Cakes", "brand:wikidata": "Q62082526", "name": "Nothing Bundt Cakes", "shop": "bakery"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Paris Baguette (worldwide)": {"name": "Paris Baguette (worldwide)", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/parisbaguetteus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62605260", "shop": "bakery"}, "addTags": {"brand": "Paris Baguette", "brand:wikidata": "Q62605260", "name": "Paris Baguette", "shop": "bakery"}, "countryCodes": ["sg", "us", "vn"], "terms": ["paris baguette cafe"], "matchScore": 2, "suggestion": true}, - "shop/bakery/Paul": {"name": "Paul", "icon": "maki-bakery", "imageURL": "https://pbs.twimg.com/profile_images/1104154254699364353/69J1OrZ1_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3370417", "shop": "bakery"}, "addTags": {"brand": "Paul", "brand:wikidata": "Q3370417", "brand:wikipedia": "en:Paul (bakery)", "name": "Paul", "shop": "bakery"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Peter's gute Backstube": {"name": "Peter's gute Backstube", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/petersgutebackstube/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q67987587", "shop": "bakery"}, "addTags": {"brand": "Peter's gute Backstube", "brand:wikidata": "Q67987587", "name": "Peter's gute Backstube", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Red Ribbon": {"name": "Red Ribbon", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/redribbonbakeshop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7304789", "shop": "bakery"}, "addTags": {"brand": "Red Ribbon", "brand:wikidata": "Q7304789", "brand:wikipedia": "en:Red Ribbon Bakeshop", "name": "Red Ribbon", "shop": "bakery"}, "countryCodes": ["ph", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Richters Altstadt-Bäckerei": {"name": "Richters Altstadt-Bäckerei", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/richteraltstadtbaecker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66212346", "shop": "bakery"}, "addTags": {"brand": "Richters Altstadt-Bäckerei", "brand:wikidata": "Q66212346", "name": "Richters Altstadt-Bäckerei", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Ronde des Pains": {"name": "Ronde des Pains", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/487418498019899/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3441707", "shop": "bakery"}, "addTags": {"brand": "Ronde des Pains", "brand:wikidata": "Q3441707", "brand:wikipedia": "fr:Ronde des Pains", "name": "Ronde des Pains", "shop": "bakery"}, "countryCodes": ["be", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Schäfer's": {"name": "Schäfer's", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/149823855088841/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1464562", "shop": "bakery"}, "addTags": {"brand": "Schäfer's", "brand:wikidata": "Q1464562", "brand:wikipedia": "de:Schäfers Brot", "name": "Schäfer's", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Sehne": {"name": "Sehne", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/150057125031868/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1314761", "shop": "bakery"}, "addTags": {"brand": "Sehne", "brand:wikidata": "Q1314761", "brand:wikipedia": "de:Sehne Backwaren", "name": "Sehne", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Starke Bäcker": {"name": "Starke Bäcker", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/StarkeBaecker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66133336", "shop": "bakery"}, "addTags": {"brand": "Starke Bäcker", "brand:wikidata": "Q66133336", "name": "Starke Bäcker", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Steinecke": {"name": "Steinecke", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/brotmeisterei.steinecke/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57516278", "shop": "bakery"}, "addTags": {"brand": "Steinecke", "brand:wikidata": "Q57516278", "brand:wikipedia": "de:Meisterbäckerei Steinecke", "name": "Steinecke", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Sternenbäck": {"name": "Sternenbäck", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/sternenbaeck/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62595021", "shop": "bakery"}, "addTags": {"brand": "Sternenbäck", "brand:wikidata": "Q62595021", "name": "Sternenbäck", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Ströck": {"name": "Ströck", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/Stroeck/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2357607", "shop": "bakery"}, "addTags": {"brand": "Ströck", "brand:wikidata": "Q2357607", "brand:wikipedia": "de:Ströck-Brot", "name": "Ströck", "shop": "bakery"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Warrens Bakery": {"name": "Warrens Bakery", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/warrensbakery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7970646", "shop": "bakery"}, "addTags": {"brand": "Warrens Bakery", "brand:wikidata": "Q7970646", "brand:wikipedia": "en:Warrens Bakery", "name": "Warrens Bakery", "shop": "bakery"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/Wiener Feinbäcker": {"name": "Wiener Feinbäcker", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/248217405252147/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15854357", "shop": "bakery"}, "addTags": {"brand": "Wiener Feinbäcker", "brand:wikidata": "Q15854357", "brand:wikipedia": "de:Wiener Feinbäckerei Heberer", "name": "Wiener Feinbäcker", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/sander's backstube": {"name": "sander's backstube", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/sanders.backstube/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66207337", "shop": "bakery"}, "addTags": {"brand": "sander's backstube", "brand:wikidata": "Q66207337", "name": "sander's backstube", "shop": "bakery"}, "countryCodes": ["de"], "terms": ["bäckerei sander"], "matchScore": 2, "suggestion": true}, - "shop/bakery/von Allwörden": {"name": "von Allwörden", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60411349", "shop": "bakery"}, "addTags": {"brand": "von Allwörden", "brand:wikidata": "Q60411349", "brand:wikipedia": "nds:Heinrich von Allwörden GmbH", "name": "von Allwörden", "shop": "bakery"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/サンジェルマン": {"name": "サンジェルマン", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11305612", "shop": "bakery"}, "addTags": {"brand": "サンジェルマン", "brand:en": "Saint-Germain", "brand:ja": "サンジェルマン", "brand:wikidata": "Q11305612", "brand:wikipedia": "ja:サンジェルマン (製パン)", "name": "サンジェルマン", "name:en": "Saint-Germain", "name:ja": "サンジェルマン", "shop": "bakery"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/ヴィ・ド・フランス": {"name": "ヴィ・ド・フランス", "icon": "maki-bakery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7928249", "shop": "bakery"}, "addTags": {"brand": "ヴィ・ド・フランス", "brand:en": "Vie de France", "brand:ja": "ヴィ・ド・フランス", "brand:wikidata": "Q7928249", "brand:wikipedia": "ja:ヴィ・ド・フランス", "name": "ヴィ・ド・フランス", "name:en": "Vie de France", "name:ja": "ヴィ・ド・フランス", "shop": "bakery"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bakery/巴黎贝甜 (China)": {"name": "巴黎贝甜 (China)", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/parisbaguetteus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62605260", "shop": "bakery"}, "addTags": {"brand": "巴黎贝甜", "brand:en": "Paris Baguette", "brand:wikidata": "Q62605260", "brand:zh": "巴黎贝甜", "name": "巴黎贝甜", "name:en": "Paris Baguette", "name:zh": "巴黎贝甜", "shop": "bakery"}, "countryCodes": ["cn"], "terms": ["paris baguette", "paris baguette cafe", "巴黎貝甜"], "matchScore": 2, "suggestion": true}, - "shop/bakery/뚜레쥬르": {"name": "뚜레쥬르", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/TousLesJoursUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3535609", "shop": "bakery"}, "addTags": {"brand": "뚜레쥬르", "brand:en": "Tous Les Jours", "brand:ko": "뚜레쥬르", "brand:wikidata": "Q3535609", "brand:wikipedia": "ko:뚜레쥬르", "name": "뚜레쥬르", "name:en": "Tous Les Jours", "name:ko": "뚜레쥬르", "shop": "bakery"}, "countryCodes": ["kr"], "terms": ["뚜레주르"], "matchScore": 2, "suggestion": true}, - "shop/bakery/파리바게뜨 (South Korea)": {"name": "파리바게뜨 (South Korea)", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/parisbaguetteus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62605260", "shop": "bakery"}, "addTags": {"alt_name:ko": "파리바게트", "brand": "파리바게뜨", "brand:en": "Paris Baguette", "brand:ko": "파리바게뜨", "brand:wikidata": "Q62605260", "name": "파리바게뜨", "name:en": "Paris Baguette", "name:ko": "파리바게뜨", "shop": "bakery"}, "countryCodes": ["kr"], "terms": ["paris baguette", "paris baguette cafe", "파리바게트"], "matchScore": 2, "suggestion": true}, - "shop/beauty/Benefit Brow Bar": {"name": "Benefit Brow Bar", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/benefitcosmetics/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2895769", "shop": "beauty"}, "addTags": {"beauty": "eyebrow;eyelash;waxing", "brand": "Benefit", "brand:wikidata": "Q2895769", "brand:wikipedia": "en:Benefit Cosmetics", "name": "Benefit Brow Bar", "shop": "beauty"}, "countryCodes": ["us"], "terms": ["benefit", "ulta brow bar"], "matchScore": 2, "suggestion": true}, - "shop/beauty/Citron Vert": {"name": "Citron Vert", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/citron.vert.instituts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89503945", "shop": "beauty"}, "addTags": {"brand": "Citron Vert", "brand:wikidata": "Q89503945", "name": "Citron Vert", "shop": "beauty"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beauty/European Wax Center": {"name": "European Wax Center", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/EuropeanWax/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5413426", "shop": "beauty"}, "addTags": {"beauty": "waxing", "brand": "European Wax Center", "brand:wikidata": "Q5413426", "brand:wikipedia": "en:European Wax Center", "name": "European Wax Center", "shop": "beauty"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beauty/Indigo Sun": {"name": "Indigo Sun", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/indigosunretail/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63436906", "shop": "beauty"}, "addTags": {"beauty": "tanning", "brand": "Indigo Sun", "brand:wikidata": "Q63436906", "name": "Indigo Sun", "shop": "beauty"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beauty/Palm Beach Tan": {"name": "Palm Beach Tan", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/PBTOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64027086", "shop": "beauty"}, "addTags": {"beauty": "tanning", "brand": "Palm Beach Tan", "brand:wikidata": "Q64027086", "brand:wikipedia": "en:Palm Beach Tan", "name": "Palm Beach Tan", "shop": "beauty"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beauty/Sola Salons": {"name": "Sola Salons", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/solasalons/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64337426", "shop": "beauty"}, "addTags": {"beauty": "hair;nails;skin_care;massage", "brand": "Sola Salons", "brand:wikidata": "Q64337426", "name": "Sola Salons", "shop": "beauty"}, "countryCodes": ["us"], "terms": ["sola", "sola salon studios"], "matchScore": 2, "suggestion": true}, - "shop/beauty/Tan Republic": {"name": "Tan Republic", "icon": "temaki-lipstick", "imageURL": "https://pbs.twimg.com/profile_images/445869341456601089/WyjnXvfd_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q84112774", "shop": "beauty"}, "addTags": {"beauty": "tanning", "brand": "Tan Republic", "brand:wikidata": "Q84112774", "name": "Tan Republic", "shop": "beauty"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beauty/The Skin Bar at Ulta Beauty": {"name": "The Skin Bar at Ulta Beauty", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/UltaBeauty/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7880076", "shop": "beauty"}, "addTags": {"alt_name": "Ulta Skin Bar", "beauty": "skin_care", "brand": "Ulta Beauty", "brand:wikidata": "Q7880076", "brand:wikipedia": "en:Ulta Beauty", "name": "The Skin Bar at Ulta Beauty", "shop": "beauty"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beauty/Yves Rocher": {"name": "Yves Rocher", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/YvesRocherBeauty/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28496595", "shop": "beauty"}, "addTags": {"beauty": "cosmetics", "brand": "Yves Rocher", "brand:wikidata": "Q28496595", "name": "Yves Rocher", "shop": "beauty"}, "terms": ["ив роше"], "matchScore": 2, "suggestion": true}, - "shop/bed/Bensons for Beds": {"name": "Bensons for Beds", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/bensonsforbeds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4890299", "shop": "bed"}, "addTags": {"brand": "Bensons for Beds", "brand:wikidata": "Q4890299", "brand:wikipedia": "en:Bensons for Beds", "name": "Bensons for Beds", "shop": "bed"}, "countryCodes": ["gb"], "terms": ["bensons"], "matchScore": 2, "suggestion": true}, - "shop/bed/Beter Bed": {"name": "Beter Bed", "icon": "maki-lodging", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBeterBed-logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q831076", "shop": "bed"}, "addTags": {"brand": "Beter Bed", "brand:wikidata": "Q831076", "brand:wikipedia": "nl:Beter Bed", "name": "Beter Bed", "shop": "bed"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bed/Casper": {"name": "Casper", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/224110981099062/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20539294", "shop": "bed"}, "addTags": {"brand": "Casper", "brand:wikidata": "Q20539294", "brand:wikipedia": "en:Casper Sleep", "name": "Casper", "shop": "bed"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bed/Dreams": {"name": "Dreams", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/dreamsbeds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5306688", "shop": "bed"}, "addTags": {"brand": "Dreams", "brand:wikidata": "Q5306688", "brand:wikipedia": "en:Dreams (bed retailer)", "name": "Dreams", "shop": "bed"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bed/Grand Litier": {"name": "Grand Litier", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/grandlitier/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21030208", "shop": "bed"}, "addTags": {"brand": "Grand Litier", "brand:wikidata": "Q21030208", "brand:wikipedia": "fr:Grand Litier", "name": "Grand Litier", "shop": "bed"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bed/Maison de la Literie": {"name": "Maison de la Literie", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/MaisondelaLiterieFR/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q80955776", "shop": "bed"}, "addTags": {"brand": "Maison de la Literie", "brand:wikidata": "Q80955776", "name": "Maison de la Literie", "shop": "bed"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bed/Matratzen Concord": {"name": "Matratzen Concord", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/MatratzenConcord/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18629057", "shop": "bed"}, "addTags": {"brand": "Matratzen Concord", "brand:wikidata": "Q18629057", "brand:wikipedia": "de:Matratzen Concord", "name": "Matratzen Concord", "shop": "bed"}, "countryCodes": ["at", "ch", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bed/Mattress Firm": {"name": "Mattress Firm", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/MattressFirm/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6791878", "shop": "bed"}, "addTags": {"brand": "Mattress Firm", "brand:wikidata": "Q6791878", "brand:wikipedia": "en:Mattress Firm", "name": "Mattress Firm", "shop": "bed"}, "countryCodes": ["us"], "terms": ["sleepys"], "matchScore": 2, "suggestion": true}, - "shop/bed/Mattress Warehouse": {"name": "Mattress Warehouse", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/mattresswhse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61995079", "shop": "bed"}, "addTags": {"brand": "Mattress Warehouse", "brand:wikidata": "Q61995079", "name": "Mattress Warehouse", "shop": "bed"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bed/Sleep Country": {"name": "Sleep Country", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/SleepCountryCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7539684", "shop": "bed"}, "addTags": {"brand": "Sleep Country", "brand:wikidata": "Q7539684", "brand:wikipedia": "en:Sleep Country Canada", "name": "Sleep Country", "shop": "bed"}, "countryCodes": ["ca"], "terms": ["sleep country canada"], "matchScore": 2, "suggestion": true}, - "shop/bed/Sleep Experts": {"name": "Sleep Experts", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/sleepexperts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7539688", "shop": "bed"}, "addTags": {"brand": "Sleep Experts", "brand:wikidata": "Q7539688", "brand:wikipedia": "en:Sleep Experts", "name": "Sleep Experts", "shop": "bed"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bed/Sleep Number": {"name": "Sleep Number", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/SleepNumber/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7447640", "shop": "bed"}, "addTags": {"brand": "Sleep Number", "brand:wikidata": "Q7447640", "brand:wikipedia": "en:Sleep Number", "name": "Sleep Number", "shop": "bed"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/Dursty": {"name": "Dursty", "icon": "temaki-bottles", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDursty%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1267518", "shop": "beverages"}, "addTags": {"brand": "Dursty", "brand:wikidata": "Q1267518", "brand:wikipedia": "de:Dursty Getränkemärkte", "name": "Dursty", "shop": "beverages"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/Edeka Getränkemarkt": {"name": "Edeka Getränkemarkt", "icon": "temaki-bottles", "imageURL": "https://graph.facebook.com/EDEKA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57450576", "shop": "beverages"}, "addTags": {"brand": "Edeka Getränkemarkt", "brand:wikidata": "Q57450576", "name": "Edeka Getränkemarkt", "shop": "beverages"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/Fristo": {"name": "Fristo", "icon": "temaki-bottles", "imageURL": "https://graph.facebook.com/848769365134665/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1465151", "shop": "beverages"}, "addTags": {"brand": "Fristo", "brand:wikidata": "Q1465151", "brand:wikipedia": "de:Fristo", "name": "Fristo", "shop": "beverages"}, "countryCodes": ["at", "de"], "terms": ["fristo getränkemarkt"], "matchScore": 2, "suggestion": true}, - "shop/beverages/Getränke Hoffmann": {"name": "Getränke Hoffmann", "icon": "temaki-bottles", "imageURL": "https://graph.facebook.com/getraenkehoffmann/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19284021", "shop": "beverages"}, "addTags": {"brand": "Getränke Hoffmann", "brand:wikidata": "Q19284021", "brand:wikipedia": "de:Getränke Hoffmann", "name": "Getränke Hoffmann", "shop": "beverages"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/Getränkeland": {"name": "Getränkeland", "icon": "temaki-bottles", "imageURL": "https://graph.facebook.com/Getraenkeland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62594849", "shop": "beverages"}, "addTags": {"brand": "Getränkeland", "brand:wikidata": "Q62594849", "name": "Getränkeland", "shop": "beverages"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/Hol'ab": {"name": "Hol'ab", "icon": "temaki-bottles", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20hol%20ab.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57557270", "shop": "beverages"}, "addTags": {"brand": "Hol'ab", "brand:wikidata": "Q57557270", "name": "Hol'ab", "shop": "beverages"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/Orterer Getränkemarkt": {"name": "Orterer Getränkemarkt", "icon": "temaki-bottles", "imageURL": "https://graph.facebook.com/360104644403824/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23787118", "shop": "beverages"}, "addTags": {"brand": "Orterer Getränkemarkt", "brand:wikidata": "Q23787118", "brand:wikipedia": "de:Orterer Gruppe", "name": "Orterer Getränkemarkt", "shop": "beverages"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/Rewe Getränkemarkt": {"name": "Rewe Getränkemarkt", "icon": "temaki-bottles", "imageURL": "https://graph.facebook.com/Rewe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57519344", "shop": "beverages"}, "addTags": {"brand": "Rewe Getränkemarkt", "brand:wikidata": "Q57519344", "name": "Rewe Getränkemarkt", "shop": "beverages"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/Sagasser": {"name": "Sagasser", "icon": "temaki-bottles", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSagasser%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30838417", "shop": "beverages"}, "addTags": {"brand": "Sagasser", "brand:wikidata": "Q30838417", "brand:wikipedia": "de:Sagasser", "name": "Sagasser", "shop": "beverages"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/Trinkgut": {"name": "Trinkgut", "icon": "temaki-bottles", "imageURL": "https://pbs.twimg.com/profile_images/339373337/twitter_icon_trinkgut_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2453627", "shop": "beverages"}, "addTags": {"brand": "Trinkgut", "brand:wikidata": "Q2453627", "brand:wikipedia": "de:Trinkgut", "name": "Trinkgut", "shop": "beverages"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/大苑子": {"name": "大苑子", "icon": "temaki-bottles", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q67934123", "shop": "beverages"}, "addTags": {"brand": "大苑子", "brand:en": "DaYung's", "brand:wikidata": "Q67934123", "brand:wikipedia": "zh:大苑子", "brand:zh": "大苑子", "name": "大苑子", "name:en": "DaYung's", "name:zh": "大苑子", "shop": "beverages"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/beverages/清心福全": {"name": "清心福全", "icon": "temaki-bottles", "imageURL": "https://graph.facebook.com/chingshin1987/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10391229", "shop": "beverages"}, "addTags": {"brand": "清心福全", "brand:en": "Ching Shin", "brand:wikidata": "Q10391229", "brand:wikipedia": "zh:清心福全冷飲站", "brand:zh": "清心福全", "name": "清心福全", "name:en": "Ching Shin", "name:zh": "清心福全", "shop": "beverages"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bicycle/Cycle Republic": {"name": "Cycle Republic", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/CycleRepublicUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65042920", "shop": "bicycle"}, "addTags": {"brand": "Cycle Republic", "brand:wikidata": "Q65042920", "brand:wikipedia": "en:Cycle Republic", "name": "Cycle Republic", "shop": "bicycle"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bicycle/Evans Cycles": {"name": "Evans Cycles", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/evanscycles/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5415901", "shop": "bicycle"}, "addTags": {"brand": "Evans Cycles", "brand:wikidata": "Q5415901", "brand:wikipedia": "en:Evans Cycles", "name": "Evans Cycles", "shop": "bicycle"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bicycle/Fri BikeShop": {"name": "Fri BikeShop", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/Cykelbutikken/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26721030", "shop": "bicycle"}, "addTags": {"brand": "Fri BikeShop", "brand:wikidata": "Q26721030", "name": "Fri BikeShop", "shop": "bicycle"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bicycle/Giant": {"name": "Giant", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/giantbicycles/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q703557", "shop": "bicycle"}, "addTags": {"brand": "Giant", "brand:wikidata": "Q703557", "brand:wikipedia": "en:Giant Bicycles", "name": "Giant", "shop": "bicycle"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bicycle/Trek": {"name": "Trek", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/TrekBicycle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1067617", "shop": "bicycle"}, "addTags": {"alt_name": "Trek Bicycle Store", "brand": "Trek", "brand:wikidata": "Q1067617", "brand:wikipedia": "en:Trek Bicycle Corporation", "name": "Trek", "shop": "bicycle"}, "terms": ["treck", "trek bicycle"], "matchScore": 2, "suggestion": true}, - "shop/bicycle/サイクルベースあさひ": {"name": "サイクルベースあさひ", "icon": "maki-bicycle", "imageURL": "https://graph.facebook.com/cbasahi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11257202", "shop": "bicycle"}, "addTags": {"brand": "サイクルベースあさひ", "brand:en": "Cycle Base Asahi", "brand:ja": "サイクルベースあさひ", "brand:wikidata": "Q11257202", "brand:wikipedia": "ja:あさひ (企業)", "name": "サイクルベースあさひ", "name:en": "Cycle Base Asahi", "name:ja": "サイクルベースあさひ", "shop": "bicycle"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/boat/West Marine": {"name": "West Marine", "icon": "temaki-boat", "imageURL": "https://graph.facebook.com/WestMarine/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7985852", "shop": "boat"}, "addTags": {"brand": "West Marine", "brand:wikidata": "Q7985852", "brand:wikipedia": "en:West Marine", "name": "West Marine", "shop": "boat"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bookmaker/Betfred": {"name": "Betfred", "icon": "temaki-money_hand", "imageURL": "https://pbs.twimg.com/profile_images/1247196661614555137/eqGiHbFr_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4897425", "shop": "bookmaker"}, "addTags": {"brand": "Betfred", "brand:wikidata": "Q4897425", "brand:wikipedia": "en:Betfred", "name": "Betfred", "shop": "bookmaker"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bookmaker/Coral": {"name": "Coral", "icon": "temaki-money_hand", "imageURL": "https://pbs.twimg.com/profile_images/1000461740772134913/T9-zMXmF_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q54621344", "shop": "bookmaker"}, "addTags": {"brand": "Coral", "brand:wikidata": "Q54621344", "brand:wikipedia": "en:Coral (bookmaker)", "name": "Coral", "shop": "bookmaker"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bookmaker/Fortuna": {"name": "Fortuna", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/703606549739592/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25857973", "shop": "bookmaker"}, "addTags": {"brand": "Fortuna", "brand:wikidata": "Q25857973", "brand:wikipedia": "en:Fortuna Entertainment Group", "name": "Fortuna", "shop": "bookmaker"}, "countryCodes": ["cz", "hr", "pl", "ro", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bookmaker/Ladbrokes": {"name": "Ladbrokes", "icon": "temaki-money_hand", "imageURL": "https://pbs.twimg.com/profile_images/1232970502953717761/FkSDt9ii_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1799875", "shop": "bookmaker"}, "addTags": {"brand": "Ladbrokes", "brand:wikidata": "Q1799875", "brand:wikipedia": "en:Ladbrokes Coral", "name": "Ladbrokes", "shop": "bookmaker"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bookmaker/Paddy Power": {"name": "Paddy Power", "icon": "temaki-money_hand", "imageURL": "https://pbs.twimg.com/profile_images/964533060942299136/XCPfJNxf_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3888718", "shop": "bookmaker"}, "addTags": {"brand": "Paddy Power", "brand:wikidata": "Q3888718", "brand:wikipedia": "en:Paddy Power", "name": "Paddy Power", "shop": "bookmaker"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bookmaker/Tipico": {"name": "Tipico", "icon": "temaki-money_hand", "imageURL": "https://pbs.twimg.com/profile_images/738704416455426048/MNUnMEde_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15851003", "shop": "bookmaker"}, "addTags": {"brand": "Tipico", "brand:wikidata": "Q15851003", "brand:wikipedia": "en:Tipico", "name": "Tipico", "shop": "bookmaker"}, "countryCodes": ["at", "co", "de", "gi", "hr", "mt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bookmaker/William Hill": {"name": "William Hill", "icon": "temaki-money_hand", "imageURL": "https://pbs.twimg.com/profile_images/1221716949710839809/vjJlFILz_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4053147", "shop": "bookmaker"}, "addTags": {"brand": "William Hill", "brand:wikidata": "Q4053147", "brand:wikipedia": "en:William Hill (bookmaker)", "name": "William Hill", "shop": "bookmaker"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bookmaker/ΟΠΑΠ": {"name": "ΟΠΑΠ", "icon": "temaki-money_hand", "imageURL": "https://pbs.twimg.com/profile_images/1229357674921418752/4a00SKwM_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2007823", "shop": "bookmaker"}, "addTags": {"brand": "ΟΠΑΠ", "brand:wikidata": "Q2007823", "brand:wikipedia": "el:ΟΠΑΠ", "name": "ΟΠΑΠ", "shop": "bookmaker"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bookmaker/Лига ставок": {"name": "Лига ставок", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/ligastavok05/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6545804", "shop": "bookmaker"}, "addTags": {"brand": "Лига ставок", "brand:en": "Liga Stavok", "brand:ru": "Лига ставок", "brand:wikidata": "Q6545804", "brand:wikipedia": "ru:Лига Ставок", "name": "Лига ставок", "name:en": "Liga Stavok", "name:ru": "Лига ставок", "shop": "bookmaker"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/bookmaker/Фонбет": {"name": "Фонбет", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/fonbetrussia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q49137910", "shop": "bookmaker"}, "addTags": {"brand": "Фонбет", "brand:en": "Fonbet", "brand:ru": "Фонбет", "brand:wikidata": "Q49137910", "brand:wikipedia": "ru:Фонбет", "name": "Фонбет", "name:en": "Fonbet", "name:ru": "Фонбет", "shop": "bookmaker"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Akademibokhandeln": {"name": "Akademibokhandeln", "icon": "fas-book", "imageURL": "https://graph.facebook.com/Akademibokhandeln/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10403918", "shop": "books"}, "addTags": {"brand": "Akademibokhandeln", "brand:wikidata": "Q10403918", "brand:wikipedia": "sv:Akademibokhandeln", "name": "Akademibokhandeln", "shop": "books"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Akateeminen Kirjakauppa": {"name": "Akateeminen Kirjakauppa", "icon": "fas-book", "imageURL": "https://graph.facebook.com/AkateeminenCOM/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10403942", "shop": "books"}, "addTags": {"brand": "Akateeminen Kirjakauppa", "brand:wikidata": "Q10403942", "brand:wikipedia": "fi:Akateeminen Kirjakauppa", "name": "Akateeminen Kirjakauppa", "shop": "books"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Barnes & Noble": {"name": "Barnes & Noble", "icon": "fas-book", "imageURL": "https://graph.facebook.com/barnesandnoble/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q795454", "shop": "books"}, "addTags": {"brand": "Barnes & Noble", "brand:wikidata": "Q795454", "brand:wikipedia": "en:Barnes & Noble", "name": "Barnes & Noble", "shop": "books"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Bertrand": {"name": "Bertrand", "icon": "fas-book", "imageURL": "https://graph.facebook.com/bertrandlivreiros/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1866547", "shop": "books"}, "addTags": {"brand": "Bertrand", "brand:wikidata": "Q1866547", "brand:wikipedia": "en:Livraria Bertrand", "name": "Bertrand", "shop": "books"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Books-A-Million": {"name": "Books-A-Million", "icon": "fas-book", "imageURL": "https://graph.facebook.com/booksamillion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4943266", "shop": "books"}, "addTags": {"brand": "Books-A-Million", "brand:wikidata": "Q4943266", "brand:wikipedia": "en:Books-A-Million", "name": "Books-A-Million", "shop": "books"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Bruna": {"name": "Bruna", "icon": "fas-book", "imageURL": "https://graph.facebook.com/Brunawinkels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3317555", "shop": "books"}, "addTags": {"brand": "Bruna", "brand:wikidata": "Q3317555", "brand:wikipedia": "en:Bruna (company)", "name": "Bruna", "shop": "books"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Chapters": {"name": "Chapters", "icon": "fas-book", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FChapters%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5073540", "shop": "books"}, "addTags": {"brand": "Chapters", "brand:wikidata": "Q5073540", "brand:wikipedia": "en:Chapters (bookstore)", "name": "Chapters", "shop": "books"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Christian Science Reading Room": {"name": "Christian Science Reading Room", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5110122", "shop": "books"}, "addTags": {"books": "religion", "brand": "Christian Science Reading Room", "brand:wikidata": "Q5110122", "brand:wikipedia": "en:Christian Science Reading Room", "name": "Christian Science Reading Room", "shop": "books"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Coles": {"name": "Coles", "icon": "fas-book", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FColes%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5144641", "shop": "books"}, "addTags": {"brand": "Coles", "brand:wikidata": "Q5144641", "brand:wikipedia": "en:Coles (bookstore)", "name": "Coles", "shop": "books"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Cultura": {"name": "Cultura", "icon": "fas-book", "imageURL": "https://graph.facebook.com/culturafr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3007154", "shop": "books"}, "addTags": {"brand": "Cultura", "brand:wikidata": "Q3007154", "brand:wikipedia": "fr:Cultura", "name": "Cultura", "shop": "books"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Empik": {"name": "Empik", "icon": "fas-book", "imageURL": "https://graph.facebook.com/empikcom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3045978", "shop": "books"}, "addTags": {"brand": "Empik", "brand:wikidata": "Q3045978", "brand:wikipedia": "pl:Empik", "name": "Empik", "shop": "books"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Fnac": {"name": "Fnac", "icon": "fas-book", "imageURL": "https://graph.facebook.com/Fnac/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q676585", "shop": "books"}, "addTags": {"brand": "Fnac", "brand:wikidata": "Q676585", "brand:wikipedia": "en:Fnac", "name": "Fnac", "shop": "books"}, "countryCodes": ["be", "ch", "es", "fr", "nl", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/France Loisirs": {"name": "France Loisirs", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/1080962425514471424/zA2jHjk9_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3080726", "shop": "books"}, "addTags": {"brand": "France Loisirs", "brand:wikidata": "Q3080726", "brand:wikipedia": "fr:France Loisirs", "name": "France Loisirs", "shop": "books"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Gramedia": {"name": "Gramedia", "icon": "fas-book", "imageURL": "https://graph.facebook.com/gramediacom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19646130", "shop": "books"}, "addTags": {"brand": "Gramedia", "brand:wikidata": "Q19646130", "brand:wikipedia": "id:Gramedia (toko buku)", "name": "Gramedia", "shop": "books"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Half Price Books": {"name": "Half Price Books", "icon": "fas-book", "imageURL": "https://graph.facebook.com/halfpricebooks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5641744", "shop": "books"}, "addTags": {"brand": "Half Price Books", "brand:wikidata": "Q5641744", "brand:wikipedia": "en:Half Price Books", "name": "Half Price Books", "shop": "books"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Hugendubel": {"name": "Hugendubel", "icon": "fas-book", "imageURL": "https://graph.facebook.com/hugendubelbuchhandlungen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1634142", "shop": "books"}, "addTags": {"brand": "Hugendubel", "brand:wikidata": "Q1634142", "brand:wikipedia": "en:Hugendubel", "name": "Hugendubel", "shop": "books"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Indigo": {"name": "Indigo", "icon": "fas-book", "imageURL": "https://graph.facebook.com/ChaptersIndigo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2477358", "shop": "books"}, "addTags": {"alt_name": "!ndigo", "brand": "Indigo", "brand:wikidata": "Q2477358", "brand:wikipedia": "en:Indigo Books and Music", "name": "Indigo", "shop": "books"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Libro": {"name": "Libro", "icon": "fas-book", "imageURL": "https://graph.facebook.com/libro.at/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1823138", "shop": "books"}, "addTags": {"brand": "Libro", "brand:wikidata": "Q1823138", "brand:wikipedia": "de:Libro", "name": "Libro", "shop": "books"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Martinus": {"name": "Martinus", "icon": "fas-book", "imageURL": "https://graph.facebook.com/Martinus.sk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15089074", "shop": "books"}, "addTags": {"brand": "Martinus", "brand:wikidata": "Q15089074", "brand:wikipedia": "sk:Martinus", "name": "Martinus", "shop": "books"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Mondadori": {"name": "Mondadori", "icon": "fas-book", "imageURL": "https://graph.facebook.com/GruppoMondadori/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q85355", "shop": "books"}, "addTags": {"brand": "Mondadori", "brand:wikidata": "Q85355", "brand:wikipedia": "en:Arnoldo Mondadori Editore", "name": "Mondadori", "shop": "books"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/National Book Store": {"name": "National Book Store", "icon": "fas-book", "imageURL": "https://graph.facebook.com/nbsalert/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6971094", "shop": "books"}, "addTags": {"brand": "National Book Store", "brand:wikidata": "Q6971094", "brand:wikipedia": "en:National Book Store", "name": "National Book Store", "shop": "books"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Orell Füssli": {"name": "Orell Füssli", "icon": "fas-book", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Orell%20F%C3%BCssli.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1511140", "shop": "books"}, "addTags": {"brand": "Orell Füssli", "brand:wikidata": "Q1511140", "brand:wikipedia": "de:Orell Füssli", "name": "Orell Füssli", "shop": "books"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Osiander": {"name": "Osiander", "icon": "fas-book", "imageURL": "https://graph.facebook.com/Osiander/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1800686", "shop": "books"}, "addTags": {"brand": "Osiander", "brand:wikidata": "Q1800686", "brand:wikipedia": "de:Osiandersche Buchhandlung", "name": "Osiander", "shop": "books"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Oxfam Bookshop": {"name": "Oxfam Bookshop", "icon": "fas-book", "imageURL": "https://graph.facebook.com/oxfamGB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7115196", "shop": "books"}, "addTags": {"brand": "Oxfam Bookshop", "brand:wikidata": "Q7115196", "brand:wikipedia": "en:Oxfam bookshops", "name": "Oxfam Bookshop", "second_hand": "only", "shop": "books"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Saraiva": {"name": "Saraiva", "icon": "fas-book", "imageURL": "https://graph.facebook.com/saraivaonline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10319337", "shop": "books"}, "addTags": {"alt_name": "Livraria Saraiva", "brand": "Saraiva", "brand:wikidata": "Q10319337", "brand:wikipedia": "pt:Livraria Saraiva", "name": "Saraiva", "shop": "books"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Seagull Book": {"name": "Seagull Book", "icon": "fas-book", "imageURL": "https://graph.facebook.com/SeagullBookCorp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7440458", "shop": "books"}, "addTags": {"brand": "Seagull Book", "brand:wikidata": "Q7440458", "brand:wikipedia": "en:Seagull Book", "name": "Seagull Book", "shop": "books"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Standaard Boekhandel": {"name": "Standaard Boekhandel", "icon": "fas-book", "imageURL": "https://graph.facebook.com/standaardboekhandel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3496554", "shop": "books"}, "addTags": {"brand": "Standaard Boekhandel", "brand:wikidata": "Q3496554", "brand:wikipedia": "nl:Standaard Boekhandel", "name": "Standaard Boekhandel", "shop": "books"}, "countryCodes": ["be"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Suomalainen Kirjakauppa": {"name": "Suomalainen Kirjakauppa", "icon": "fas-book", "imageURL": "https://graph.facebook.com/suomalainencom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7641808", "shop": "books"}, "addTags": {"brand": "Suomalainen Kirjakauppa", "brand:wikidata": "Q7641808", "brand:wikipedia": "fi:Suomalainen Kirjakauppa", "name": "Suomalainen Kirjakauppa", "shop": "books"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/TSUTAYA": {"name": "TSUTAYA", "icon": "fas-book", "imageURL": "https://graph.facebook.com/TSUTAYA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5193457", "shop": "books"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Thalia": {"name": "Thalia", "icon": "fas-book", "imageURL": "https://graph.facebook.com/thalia.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2408854", "shop": "books"}, "addTags": {"brand": "Thalia", "brand:wikidata": "Q2408854", "brand:wikipedia": "de:Thalia Bücher", "name": "Thalia", "shop": "books"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/The Works": {"name": "The Works", "icon": "fas-book", "imageURL": "https://graph.facebook.com/TheWorksStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7775853", "shop": "books"}, "addTags": {"brand": "The Works", "brand:wikidata": "Q7775853", "brand:wikipedia": "en:The Works (retailer)", "name": "The Works", "shop": "books"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/WHSmith": {"name": "WHSmith", "icon": "fas-book", "imageURL": "https://graph.facebook.com/WHSmithuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1548712", "shop": "books"}, "addTags": {"brand": "WHSmith", "brand:wikidata": "Q1548712", "brand:wikipedia": "en:WHSmith", "name": "WHSmith", "shop": "books"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Waterstones": {"name": "Waterstones", "icon": "fas-book", "imageURL": "https://graph.facebook.com/waterstones/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q151779", "shop": "books"}, "addTags": {"brand": "Waterstones", "brand:wikidata": "Q151779", "brand:wikipedia": "en:Waterstones", "name": "Waterstones", "shop": "books"}, "countryCodes": ["be", "gb", "ie", "je", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Weltbild": {"name": "Weltbild", "icon": "fas-book", "imageURL": "https://graph.facebook.com/weltbild/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q883522", "shop": "books"}, "addTags": {"brand": "Weltbild", "brand:wikidata": "Q883522", "brand:wikipedia": "en:Weltbild Publishing Group", "name": "Weltbild", "shop": "books"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Буквоед": {"name": "Буквоед", "icon": "fas-book", "imageURL": "https://graph.facebook.com/SuperBookvoed/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4098549", "shop": "books"}, "addTags": {"brand": "Буквоед", "brand:wikidata": "Q4098549", "brand:wikipedia": "ru:Буквоед", "name": "Буквоед", "shop": "books"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Дом книги": {"name": "Дом книги", "icon": "fas-book", "imageURL": "https://graph.facebook.com/spbdk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48950742", "shop": "books"}, "addTags": {"brand": "Дом книги", "brand:wikidata": "Q48950742", "brand:wikipedia": "ru:Московский дом книги", "name": "Дом книги", "shop": "books"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/Читай-город": {"name": "Читай-город", "icon": "fas-book", "imageURL": "https://graph.facebook.com/chitaigorod/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4516645", "shop": "books"}, "addTags": {"brand": "Читай-город", "brand:wikidata": "Q4516645", "brand:wikipedia": "ru:Читай-город", "name": "Читай-город", "shop": "books"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/סטימצקי": {"name": "סטימצקי", "icon": "fas-book", "imageURL": "https://graph.facebook.com/SteimatzkyMadaf.HaSfarim/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2903995", "shop": "books"}, "addTags": {"brand": "סטימצקי", "brand:en": "Steimatzky", "brand:he": "סטימצקי", "brand:wikidata": "Q2903995", "brand:wikipedia": "he:סטימצקי", "name": "סטימצקי", "name:en": "Steimatzky", "name:he": "סטימצקי", "shop": "books"}, "countryCodes": ["il"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/צומת ספרים": {"name": "צומת ספרים", "icon": "fas-book", "imageURL": "https://graph.facebook.com/tzometsfarim/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6743833", "shop": "books"}, "addTags": {"brand": "צומת ספרים", "brand:en": "Tzomet Sfarim", "brand:he": "צומת ספרים", "brand:wikidata": "Q6743833", "brand:wikipedia": "he:צומת ספרים", "name": "צומת ספרים", "name:en": "Tzomet Sfarm", "name:he": "צומת ספרים", "shop": "books"}, "countryCodes": ["il"], "terms": ["zomet sfarim"], "matchScore": 2, "suggestion": true}, - "shop/books/あおい書店": {"name": "あおい書店", "icon": "fas-book", "imageURL": "https://graph.facebook.com/aoi.bookstore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11256783", "shop": "books"}, "addTags": {"brand": "あおい書店", "brand:en": "AOI", "brand:ja": "あおい書店", "brand:wikidata": "Q11256783", "brand:wikipedia": "ja:あおい書店", "name": "あおい書店", "name:en": "AOI", "name:ja": "あおい書店", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/くまざわ書店": {"name": "くまざわ書店", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/422610899858243585/QwhRDeqz_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11265517", "shop": "books"}, "addTags": {"alt_name:en": "Kumabook", "brand": "くまざわ書店", "brand:en": "Kumazawa Books", "brand:ja": "くまざわ書店", "brand:wikidata": "Q11265517", "brand:wikipedia": "ja:くまざわ", "name": "くまざわ書店", "name:en": "Kumazawa Books", "name:ja": "くまざわ書店", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/とらのあな": {"name": "とらのあな", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q865297", "shop": "books"}, "addTags": {"books": "comic", "brand": "とらのあな", "brand:en": "Toranoana", "brand:ja": "とらのあな", "brand:wikidata": "Q865297", "brand:wikipedia": "ja:コミックとらのあな", "name": "とらのあな", "name:en": "Comic Toranoana", "name:ja": "とらのあな", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/オリオン書房": {"name": "オリオン書房", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11292597", "shop": "books"}, "addTags": {"brand": "オリオン書房", "brand:en": "Orion Books", "brand:ja": "オリオン書房", "brand:wikidata": "Q11292597", "brand:wikipedia": "ja:オリオン書房", "name": "オリオン書房", "name:en": "Orion Books", "name:ja": "オリオン書房", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/ジュンク堂書店": {"name": "ジュンク堂書店", "icon": "fas-book", "imageURL": "https://graph.facebook.com/maruzenjunku/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3190093", "shop": "books"}, "addTags": {"brand": "ジュンク堂書店", "brand:en": "Junkudo", "brand:ja": "ジュンク堂書店", "brand:wikidata": "Q3190093", "brand:wikipedia": "ja:ジュンク堂書店", "name": "ジュンク堂書店", "name:en": "Junkudo", "name:ja": "ジュンク堂書店", "shop": "books"}, "countryCodes": ["jp"], "terms": ["ジュンク"], "matchScore": 2, "suggestion": true}, - "shop/books/ブックオフ": {"name": "ブックオフ", "icon": "fas-book", "imageURL": "https://graph.facebook.com/bookoffcorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q893011", "shop": "books"}, "addTags": {"brand": "ブックオフ", "brand:en": "Book Off", "brand:ja": "ブックオフ", "brand:wikidata": "Q893011", "brand:wikipedia": "en:Book Off", "name": "ブックオフ", "name:en": "Book Off", "name:ja": "ブックオフ", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/メロンブックス": {"name": "メロンブックス", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/877364475304714240/Ael4G2BP_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10851653", "shop": "books"}, "addTags": {"brand": "メロンブックス", "brand:en": "Melonbooks", "brand:ja": "メロンブックス", "brand:wikidata": "Q10851653", "brand:wikipedia": "ja:メロンブックス", "name": "メロンブックス", "name:en": "Melonbooks", "name:ja": "メロンブックス", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/リブロ": {"name": "リブロ", "icon": "fas-book", "imageURL": "https://graph.facebook.com/libroryubo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6542768", "shop": "books"}, "addTags": {"brand": "リブロ", "brand:en": "LIBRO", "brand:ja": "リブロ", "brand:wikidata": "Q6542768", "brand:wikipedia": "ja:リブロ", "name": "リブロ", "name:en": "Libro", "name:ja": "リブロ", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/三省堂書店": {"name": "三省堂書店", "icon": "fas-book", "imageURL": "https://graph.facebook.com/books.sanseido/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10866539", "shop": "books"}, "addTags": {"brand": "三省堂書店", "brand:en": "Books Sanseido", "brand:ja": "三省堂書店", "brand:wikidata": "Q10866539", "brand:wikipedia": "ja:三省堂書店", "name": "三省堂書店", "name:en": "Books Sanseido", "name:ja": "三省堂書店", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/丸善": {"name": "丸善", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/924840178300022784/UOQoqhei_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1906012", "shop": "books"}, "addTags": {"brand": "丸善", "brand:en": "MARUZEN", "brand:ja": "丸善", "brand:wikidata": "Q1906012", "brand:wikipedia": "ja:丸善雄松堂", "name": "丸善", "name:en": "MARUZEN", "name:ja": "丸善", "official_name": "丸善雄松堂", "official_name:en": "Maruzen Yushodo", "official_name:ja": "丸善雄松堂", "shop": "books"}, "countryCodes": ["jp"], "terms": ["丸善書店"], "matchScore": 2, "suggestion": true}, - "shop/books/宮脇書店": {"name": "宮脇書店", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/1012238322486280192/eNbZxfN2_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11455237", "shop": "books"}, "addTags": {"brand": "宮脇書店", "brand:en": "Miyawaki Shoten", "brand:ja": "宮脇書店", "brand:wikidata": "Q11455237", "brand:wikipedia": "ja:宮脇書店", "name": "宮脇書店", "name:en": "Miyawaki Shoten", "name:ja": "宮脇書店", "shop": "books"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/文教堂": {"name": "文教堂", "icon": "fas-book", "imageURL": "https://pbs.twimg.com/profile_images/1151659177552404481/CvFdvBDu_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11499974", "shop": "books"}, "addTags": {"brand": "文教堂", "brand:en": "Bunkyodo", "brand:ja": "文教堂", "brand:wikidata": "Q11499974", "brand:wikipedia": "ja:文教堂", "name": "文教堂", "name:en": "Bunkyodo", "name:ja": "文教堂", "shop": "books"}, "countryCodes": ["jp"], "terms": ["文教堂書店"], "matchScore": 2, "suggestion": true}, - "shop/books/新华书店": {"name": "新华书店", "icon": "fas-book", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6124193", "shop": "books"}, "addTags": {"brand": "新华书店", "brand:en": "Xinhua Bookstore", "brand:wikidata": "Q6124193", "brand:wikipedia": "en:Xinhua Bookstore", "brand:zh": "新华书店", "name": "新华书店", "name:en": "Xinhua Bookstore", "name:zh": "新华书店", "shop": "books"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/有隣堂": {"name": "有隣堂", "icon": "fas-book", "imageURL": "https://graph.facebook.com/136524066475474/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8061680", "shop": "books"}, "addTags": {"brand": "有隣堂", "brand:en": "Yurindo", "brand:ja": "有隣堂", "brand:wikidata": "Q8061680", "brand:wikipedia": "ja:有隣堂", "name": "有隣堂", "name:en": "Yurindo", "name:ja": "有隣堂", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/未来屋書店": {"name": "未来屋書店", "icon": "fas-book", "imageURL": "https://graph.facebook.com/miraiyashoten/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11519563", "shop": "books"}, "addTags": {"brand": "未来屋書店", "brand:en": "Miraiya Shoten", "brand:ja": "未来屋書店", "brand:wikidata": "Q11519563", "brand:wikipedia": "ja:未来屋書店", "name": "未来屋書店", "name:en": "Miraiya Shoten", "name:ja": "未来屋書店", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/books/紀伊國屋書店": {"name": "紀伊國屋書店", "icon": "fas-book", "imageURL": "https://graph.facebook.com/136524066475474/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8061680", "shop": "books"}, "addTags": {"brand": "紀伊國屋書店", "brand:en": "Books Kinokuniya", "brand:ja": "紀伊國屋書店", "brand:wikidata": "Q8061680", "brand:wikipedia": "ja:紀伊國屋書店", "name": "紀伊國屋書店", "name:en": "Books Kinokuniya", "name:ja": "紀伊國屋書店", "shop": "books"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/butcher/Coqivoire": {"name": "Coqivoire", "icon": "temaki-cleaver", "imageURL": "https://graph.facebook.com/COQIVOIRE/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60183284", "shop": "butcher"}, "addTags": {"brand": "Coqivoire", "brand:wikidata": "Q60183284", "butcher": "poultry", "name": "Coqivoire", "shop": "butcher"}, "countryCodes": ["ci"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/butcher/Foani": {"name": "Foani", "icon": "temaki-cleaver", "imageURL": "https://graph.facebook.com/foaniservices/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60183335", "shop": "butcher"}, "addTags": {"brand": "Foani", "brand:wikidata": "Q60183335", "butcher": "poultry", "name": "Foani", "shop": "butcher"}, "countryCodes": ["ci"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/butcher/M&M Food Market": {"name": "M&M Food Market", "icon": "temaki-cleaver", "imageURL": "https://graph.facebook.com/mandmfoodmarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6711827", "shop": "butcher"}, "addTags": {"brand": "M&M Food Market", "brand:wikidata": "Q6711827", "brand:wikipedia": "en:M&M Food Market", "name": "M&M Food Market", "shop": "butcher"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/butcher/Vinzenzmurr": {"name": "Vinzenzmurr", "icon": "temaki-cleaver", "imageURL": "https://graph.facebook.com/vinzenzmurrtraditionsmetzgerei/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2527361", "shop": "butcher"}, "addTags": {"brand": "Vinzenzmurr", "brand:wikidata": "Q2527361", "brand:wikipedia": "de:Vinzenzmurr", "name": "Vinzenzmurr", "shop": "butcher"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/butcher/Великолукский мясокомбинат": {"name": "Великолукский мясокомбинат", "icon": "temaki-cleaver", "imageURL": "https://graph.facebook.com/vlmkspb/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18401767", "shop": "butcher"}, "addTags": {"brand": "Великолукский мясокомбинат", "brand:wikidata": "Q18401767", "brand:wikipedia": "ru:Великолукский мясокомбинат", "name": "Великолукский мясокомбинат", "shop": "butcher"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/butcher/Родинна ковбаска": {"name": "Родинна ковбаска", "icon": "temaki-cleaver", "imageURL": "https://graph.facebook.com/rodunnakovbaska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30969660", "shop": "butcher"}, "addTags": {"brand": "Родинна ковбаска", "brand:en": "Rodynna-kovbaska", "brand:wikidata": "Q30969660", "brand:wikipedia": "uk:ТзОВ «Барком»", "name": "Родинна ковбаска", "name:en": "Rodynna-kovbaska", "shop": "butcher"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/butcher/肉のハナマサ": {"name": "肉のハナマサ", "icon": "temaki-cleaver", "imageURL": "https://graph.facebook.com/hanamasaresto/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11326564", "shop": "butcher"}, "addTags": {"brand": "ハナマサ", "brand:en": "Hanamasa", "brand:ja": "ハナマサ", "brand:wikidata": "Q11326564", "brand:wikipedia": "ja:ハナマサ", "butcher": "beef", "name": "肉のハナマサ", "name:en": "Hanamasa Meat", "name:ja": "肉のハナマサ", "shop": "butcher"}, "countryCodes": ["jp"], "terms": ["ハナマサ"], "matchScore": 2, "suggestion": true}, - "shop/camera/Jessops": {"name": "Jessops", "icon": "fas-camera-retro", "imageURL": "https://graph.facebook.com/jessops/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3191701", "shop": "camera"}, "addTags": {"brand": "Jessops", "brand:wikidata": "Q3191701", "brand:wikipedia": "en:Jessops", "name": "Jessops", "shop": "camera"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/camera/London Camera Exchange": {"name": "London Camera Exchange", "icon": "fas-camera-retro", "imageURL": "https://graph.facebook.com/londoncameraexchange/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q84156395", "shop": "camera"}, "addTags": {"brand": "London Camera Exchange", "brand:wikidata": "Q84156395", "name": "London Camera Exchange", "shop": "camera"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/candles/Yankee Candle": {"name": "Yankee Candle", "icon": "fas-burn", "imageURL": "https://graph.facebook.com/Yankeecandle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8048733", "shop": "candles"}, "addTags": {"brand": "Yankee Candle", "brand:wikidata": "Q8048733", "brand:wikipedia": "en:Yankee Candle", "name": "Yankee Candle", "shop": "candles"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Advance Auto Parts": {"name": "Advance Auto Parts", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/advanceautoparts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4686051", "shop": "car_parts"}, "addTags": {"brand": "Advance Auto Parts", "brand:wikidata": "Q4686051", "brand:wikipedia": "en:Advance Auto Parts", "name": "Advance Auto Parts", "shop": "car_parts"}, "countryCodes": ["ca", "us", "vi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Auto Plus": {"name": "Auto Plus", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/AutoPlusUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65121114", "shop": "car_parts"}, "addTags": {"brand": "Auto Plus", "brand:wikidata": "Q65121114", "name": "Auto Plus", "official_name": "Auto Plus Auto Parts", "shop": "car_parts"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/AutoZone": {"name": "AutoZone", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/autozone/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4826087", "shop": "car_parts"}, "addTags": {"brand": "AutoZone", "brand:wikidata": "Q4826087", "brand:wikipedia": "en:AutoZone", "name": "AutoZone", "shop": "car_parts"}, "countryCodes": ["br", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Automat": {"name": "Automat", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/automatnl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q70623238", "shop": "car_parts"}, "addTags": {"brand": "Automat", "brand:wikidata": "Q70623238", "name": "Automat", "shop": "car_parts"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Carquest": {"name": "Carquest", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/Carquestautoparts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5045948", "shop": "car_parts"}, "addTags": {"brand": "Carquest", "brand:wikidata": "Q5045948", "brand:wikipedia": "en:Carquest", "name": "Carquest", "official_name": "Carquest Auto Parts", "shop": "car_parts"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Euro Car Parts": {"name": "Euro Car Parts", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/EuroCarPartsUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23782692", "shop": "car_parts"}, "addTags": {"brand": "Euro Car Parts", "brand:wikidata": "Q23782692", "brand:wikipedia": "en:Euro Car Parts", "name": "Euro Car Parts", "shop": "car_parts"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/GSF Car Parts": {"name": "GSF Car Parts", "icon": "fas-car-battery", "imageURL": "https://pbs.twimg.com/profile_images/945686511017701376/_DP1VoIg_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q80963064", "shop": "car_parts"}, "addTags": {"brand": "GSF Car Parts", "brand:wikidata": "Q80963064", "name": "GSF Car Parts", "shop": "car_parts"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Halfords": {"name": "Halfords", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/HalfordsUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3398786", "shop": "car_parts"}, "addTags": {"brand": "Halfords", "brand:wikidata": "Q3398786", "brand:wikipedia": "en:Halfords", "name": "Halfords", "service:bicycle:retail": "yes", "shop": "car_parts"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/KOI Auto Parts": {"name": "KOI Auto Parts", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/KOIAutoParts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6334934", "shop": "car_parts"}, "addTags": {"brand": "KOI Auto Parts", "brand:wikidata": "Q6334934", "brand:wikipedia": "en:KOI Auto Parts", "name": "KOI Auto Parts", "shop": "car_parts", "short_name": "KOI"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/NAPA Auto Parts": {"name": "NAPA Auto Parts", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/NAPAAUTOPARTS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6970842", "shop": "car_parts"}, "addTags": {"brand": "NAPA Auto Parts", "brand:wikidata": "Q6970842", "brand:wikipedia": "en:National Automotive Parts Association", "name": "NAPA Auto Parts", "shop": "car_parts"}, "countryCodes": ["ca", "mx", "us"], "terms": ["napa"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/O'Reilly Auto Parts": {"name": "O'Reilly Auto Parts", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/oreillyautoparts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7071951", "shop": "car_parts"}, "addTags": {"brand": "O'Reilly Auto Parts", "brand:wikidata": "Q7071951", "brand:wikipedia": "en:O'Reilly Auto Parts", "name": "O'Reilly Auto Parts", "shop": "car_parts"}, "countryCodes": ["us"], "terms": ["o'reilly"], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Repco": {"name": "Repco", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/RepcoAusCareers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q173425", "shop": "car_parts"}, "addTags": {"brand": "Repco", "brand:wikidata": "Q173425", "brand:wikipedia": "en:Repco", "name": "Repco", "shop": "car_parts"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/Supercheap Auto": {"name": "Supercheap Auto", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/scauto/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7643119", "shop": "car_parts"}, "addTags": {"brand": "Supercheap Auto", "brand:wikidata": "Q7643119", "brand:wikipedia": "en:Supercheap Auto", "name": "Supercheap Auto", "shop": "car_parts"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/The Parts Alliance": {"name": "The Parts Alliance", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/thepartsalliance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q80964997", "shop": "car_parts"}, "addTags": {"brand": "The Parts Alliance", "brand:wikidata": "Q80964997", "name": "The Parts Alliance", "shop": "car_parts"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/イエローハット": {"name": "イエローハット", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/YellowHatUAE/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11285915", "shop": "car_parts"}, "addTags": {"brand": "イエローハット", "brand:en": "Yellow Hat", "brand:ja": "イエローハット", "brand:wikidata": "Q11285915", "brand:wikipedia": "ja:イエローハット", "name": "イエローハット", "name:en": "Yellow Hat", "name:ja": "イエローハット", "shop": "car_parts"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/オートバックス": {"name": "オートバックス", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/autobacs.seven/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7886426", "shop": "car_parts"}, "addTags": {"brand": "オートバックス", "brand:en": "Autobacs", "brand:ja": "オートバックス", "brand:wikidata": "Q7886426", "brand:wikipedia": "ja:オートバックスセブン", "name": "オートバックス", "name:en": "Autobacs", "name:ja": "オートバックス", "shop": "car_parts"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/ジェームス": {"name": "ジェームス", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/1589262564705310/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11309404", "shop": "car_parts"}, "addTags": {"brand": "ジェームス", "brand:en": "JMS", "brand:ja": "ジェームス", "brand:wikidata": "Q11309404", "brand:wikipedia": "ja:ジェームス", "name": "ジェームス", "name:en": "JMS", "name:ja": "ジェームス", "official_name:en": "Joyful Motorist Shop", "shop": "car_parts"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_parts/タイヤ館": {"name": "タイヤ館", "icon": "fas-car-battery", "imageURL": "https://graph.facebook.com/1627235540828842/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11315808", "shop": "car_parts"}, "addTags": {"brand": "タイヤ館", "brand:en": "Taiyakan", "brand:ja": "タイヤ館", "brand:wikidata": "Q11315808", "brand:wikipedia": "ja:タイヤ館", "name": "タイヤ館", "name:en": "Taiyakan", "name:ja": "タイヤ館", "shop": "car_parts"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/A.T.U": {"name": "A.T.U", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/ATU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q784721", "shop": "car_repair"}, "addTags": {"brand": "A.T.U", "brand:wikidata": "Q784721", "brand:wikipedia": "de:Auto-Teile-Unger", "name": "A.T.U", "shop": "car_repair"}, "countryCodes": ["at", "de"], "terms": ["auto-teile-unger"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/AAMCO": {"name": "AAMCO", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/AAMCO/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4649902", "shop": "car_repair"}, "addTags": {"brand": "AAMCO", "brand:wikidata": "Q4649902", "brand:wikipedia": "en:AAMCO Transmissions", "name": "AAMCO", "service:vehicle:transmission": "yes", "shop": "car_repair"}, "countryCodes": ["ca", "us"], "terms": ["aamco transmissions", "aamco transmissions and total car care"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/ATS Euromaster": {"name": "ATS Euromaster", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/ATSEUROMASTER/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4654920", "shop": "car_repair"}, "addTags": {"brand": "ATS Euromaster", "brand:wikidata": "Q4654920", "brand:wikipedia": "en:ATS Euromaster", "name": "ATS Euromaster", "shop": "car_repair"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Avatacar": {"name": "Avatacar", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/Avatacar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65156251", "shop": "car_repair"}, "addTags": {"brand": "Avatacar", "brand:wikidata": "Q65156251", "brand:wikipedia": "fr:Avatacar", "name": "Avatacar", "shop": "car_repair"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/BestDrive": {"name": "BestDrive", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/BestDriveFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63057183", "shop": "car_repair"}, "addTags": {"brand": "BestDrive", "brand:wikidata": "Q63057183", "name": "BestDrive", "shop": "car_repair"}, "countryCodes": ["cz", "fr", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Bosch Car Service": {"name": "Bosch Car Service", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/BoschGlobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q234021", "shop": "car_repair"}, "addTags": {"brand": "Bosch Car Service", "brand:wikidata": "Q234021", "brand:wikipedia": "en:Robert Bosch GmbH", "name": "Bosch Car Service", "shop": "car_repair"}, "terms": ["bosch service"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Brakes Plus": {"name": "Brakes Plus", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/brakesplusllc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62075246", "shop": "car_repair"}, "addTags": {"brand": "Brakes Plus", "brand:wikidata": "Q62075246", "name": "Brakes Plus", "shop": "car_repair"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Car-X": {"name": "Car-X", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/CarxAuto/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63859189", "shop": "car_repair"}, "addTags": {"brand": "Car-X", "brand:wikidata": "Q63859189", "name": "Car-X", "shop": "car_repair"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Carglass": {"name": "Carglass", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/CarglassSweden/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1035997", "shop": "car_repair"}, "addTags": {"brand": "Carglass", "brand:wikidata": "Q1035997", "brand:wikipedia": "de:Carglass", "name": "Carglass", "shop": "car_repair"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Carstar": {"name": "Carstar", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/CARSTAR/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64187891", "shop": "car_repair"}, "addTags": {"brand": "Carstar", "brand:wikidata": "Q64187891", "name": "Carstar", "service:vehicle:body_repair": "yes", "shop": "car_repair"}, "countryCodes": ["ca", "us"], "terms": ["carstar auto body repair experts"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Citroën": {"name": "Citroën", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/Citroen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6746", "shop": "car_repair"}, "addTags": {"brand": "Citroën", "brand:wikidata": "Q6746", "brand:wikipedia": "fr:Citroën", "name": "Citroën", "shop": "car_repair"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Euromaster": {"name": "Euromaster", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/euromaster.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3060668", "shop": "car_repair"}, "addTags": {"brand": "Euromaster", "brand:wikidata": "Q3060668", "brand:wikipedia": "de:Euromaster", "name": "Euromaster", "shop": "car_repair"}, "countryCodes": ["ch", "de", "es", "fi", "fr", "nl", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Feu Vert": {"name": "Feu Vert", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/FeuVert/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3070922", "shop": "car_repair"}, "addTags": {"brand": "Feu Vert", "brand:wikidata": "Q3070922", "brand:wikipedia": "fr:Feu vert (entreprise)", "name": "Feu Vert", "shop": "car_repair"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Firestone": {"name": "Firestone", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/FirestoneTires/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q420837", "shop": "car_repair"}, "addTags": {"brand": "Firestone", "brand:wikidata": "Q420837", "brand:wikipedia": "en:Firestone Tire and Rubber Company", "name": "Firestone", "official_name": "Firestone Complete Auto Care", "shop": "car_repair"}, "countryCodes": ["ca", "cl", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/First Stop": {"name": "First Stop", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/380279892308003/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3072965", "shop": "car_repair"}, "addTags": {"brand": "First Stop", "brand:wikidata": "Q3072965", "brand:wikipedia": "fr:First Stop", "name": "First Stop", "shop": "car_repair"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Ford": {"name": "Ford", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/ford/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q44294", "shop": "car_repair"}, "addTags": {"brand": "Ford", "brand:wikidata": "Q44294", "brand:wikipedia": "en:Ford Motor Company", "name": "Ford", "shop": "car_repair"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Formula One Autocentres": {"name": "Formula One Autocentres", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/FormulaOneAutocentres/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q79239635", "shop": "car_repair"}, "addTags": {"brand": "Formula One Autocentres", "brand:wikidata": "Q79239635", "name": "Formula One Autocentres", "shop": "car_repair"}, "countryCodes": ["gb"], "terms": ["f1 autocentre", "formula 1 autocentre"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Goodyear": {"name": "Goodyear", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/GoodyearNorthAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q620875", "shop": "car_repair"}, "addTags": {"brand": "Goodyear", "brand:wikidata": "Q620875", "brand:wikipedia": "en:Goodyear Tire and Rubber Company", "name": "Goodyear", "shop": "car_repair"}, "countryCodes": ["au", "ca", "cl", "pe", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Grease Monkey": {"name": "Grease Monkey", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/greasemonkeyintl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5598563", "shop": "car_repair"}, "addTags": {"brand": "Grease Monkey", "brand:wikidata": "Q5598563", "brand:wikipedia": "en:Grease Monkey (business)", "name": "Grease Monkey", "shop": "car_repair"}, "countryCodes": ["cn", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Halfords Autocentre": {"name": "Halfords Autocentre", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/HalfordsAutocentres/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5641894", "shop": "car_repair"}, "addTags": {"brand": "Halfords Autocentre", "brand:wikidata": "Q5641894", "brand:wikipedia": "en:Halfords Autocentre", "name": "Halfords Autocentre", "shop": "car_repair"}, "countryCodes": ["gb"], "terms": ["halfords"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Jiffy Lube": {"name": "Jiffy Lube", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/jiffylube/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6192247", "shop": "car_repair"}, "addTags": {"brand": "Jiffy Lube", "brand:wikidata": "Q6192247", "brand:wikipedia": "en:Jiffy Lube", "name": "Jiffy Lube", "shop": "car_repair"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Kwik Fit": {"name": "Kwik Fit", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/KwikFit/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q958053", "shop": "car_repair"}, "addTags": {"brand": "Kwik Fit", "brand:wikidata": "Q958053", "brand:wikipedia": "en:Kwik Fit", "name": "Kwik Fit", "shop": "car_repair"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/MAACO": {"name": "MAACO", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/MAACOUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6714015", "shop": "car_repair"}, "addTags": {"brand": "MAACO", "brand:wikidata": "Q6714015", "brand:wikipedia": "en:MAACO", "name": "MAACO", "service:vehicle:body_repair": "yes", "service:vehicle:painting": "yes", "shop": "car_repair"}, "countryCodes": ["ca", "us"], "terms": ["maaco collision repair & auto painting"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Meineke": {"name": "Meineke", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/meinekecarcareusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6810159", "shop": "car_repair"}, "addTags": {"brand": "Meineke", "brand:wikidata": "Q6810159", "brand:wikipedia": "en:Meineke Car Care Centers", "name": "Meineke", "official_name": "Meineke Car Care Center", "shop": "car_repair"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Mekonomen": {"name": "Mekonomen", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/MekonomenSverige/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10580079", "shop": "car_repair"}, "addTags": {"brand": "Mekonomen", "brand:wikidata": "Q10580079", "brand:wikipedia": "sv:Mekonomen", "name": "Mekonomen", "shop": "car_repair"}, "countryCodes": ["dk", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Midas": {"name": "Midas", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/Midas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3312613", "shop": "car_repair"}, "addTags": {"brand": "Midas", "brand:wikidata": "Q3312613", "brand:wikipedia": "en:Midas (automotive service)", "name": "Midas", "shop": "car_repair"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Monro Muffler Brake": {"name": "Monro Muffler Brake", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/MonroAutoServiceTire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6902090", "shop": "car_repair"}, "addTags": {"brand": "Monro Muffler Brake", "brand:wikidata": "Q6902090", "brand:wikipedia": "en:Monro Muffler Brake", "name": "Monro Muffler Brake", "shop": "car_repair"}, "countryCodes": ["us"], "terms": ["monro", "monro muffler"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Mr. Lube": {"name": "Mr. Lube", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/MrLubeCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17104067", "shop": "car_repair"}, "addTags": {"brand": "Mr. Lube", "brand:wikidata": "Q17104067", "brand:wikipedia": "en:Mr. Lube", "name": "Mr. Lube", "shop": "car_repair"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/National Tire and Battery": {"name": "National Tire and Battery", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/nationaltireandbattery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6978944", "shop": "car_repair"}, "addTags": {"brand": "National Tire and Battery", "brand:wikidata": "Q6978944", "brand:wikipedia": "en:National Tire and Battery", "name": "National Tire and Battery", "shop": "car_repair"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/National Windscreens": {"name": "National Windscreens", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/natwindscreens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87142619", "shop": "car_repair"}, "addTags": {"brand": "National Windscreens", "brand:wikidata": "Q87142619", "name": "National Windscreens", "service:vehicle:glass": "yes", "shop": "car_repair"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Norauto": {"name": "Norauto", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/norautoitalia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3317698", "shop": "car_repair"}, "addTags": {"brand": "Norauto", "brand:wikidata": "Q3317698", "brand:wikipedia": "en:Mobivia Groupe", "name": "Norauto", "shop": "car_repair"}, "countryCodes": ["ar", "es", "fr", "hu", "it", "pl", "pt", "ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Pep Boys": {"name": "Pep Boys", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/pepboysauto/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3375007", "shop": "car_repair"}, "addTags": {"brand": "Pep Boys", "brand:wikidata": "Q3375007", "brand:wikipedia": "en:Pep Boys", "name": "Pep Boys", "shop": "car_repair"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Peugeot": {"name": "Peugeot", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/Peugeot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6742", "shop": "car_repair"}, "addTags": {"brand": "Peugeot", "brand:wikidata": "Q6742", "brand:wikipedia": "en:Peugeot", "name": "Peugeot", "shop": "car_repair"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Point S": {"name": "Point S", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/points.france/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3393358", "shop": "car_repair"}, "addTags": {"brand": "Point S", "brand:wikidata": "Q3393358", "brand:wikipedia": "fr:Point S", "name": "Point S", "shop": "car_repair"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Renault": {"name": "Renault", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/Renault/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6686", "shop": "car_repair"}, "addTags": {"brand": "Renault", "brand:wikidata": "Q6686", "brand:wikipedia": "fr:Renault", "name": "Renault", "shop": "car_repair"}, "terms": ["garage renault"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Roady": {"name": "Roady", "icon": "maki-car-repair", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3434112", "shop": "car_repair"}, "addTags": {"brand": "Roady", "brand:wikidata": "Q3434112", "brand:wikipedia": "en:Roady (Mousquetaires)", "name": "Roady", "shop": "car_repair"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Safelite AutoGlass": {"name": "Safelite AutoGlass", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/safelite/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28797369", "shop": "car_repair"}, "addTags": {"brand": "Safelite AutoGlass", "brand:wikidata": "Q28797369", "brand:wikipedia": "en:Safelite", "name": "Safelite AutoGlass", "service:vehicle:glass": "yes", "shop": "car_repair"}, "countryCodes": ["us"], "terms": ["safelight auto glass"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Sears Auto Center": {"name": "Sears Auto Center", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/sears/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6499202", "shop": "car_repair"}, "addTags": {"brand": "Sears Auto Center", "brand:wikidata": "Q6499202", "brand:wikipedia": "en:Sears", "name": "Sears Auto Center", "shop": "car_repair"}, "countryCodes": ["mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Speedy": {"name": "Speedy", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/vadoncchezSpeedy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3492969", "shop": "car_repair"}, "addTags": {"brand": "Speedy", "brand:wikidata": "Q3492969", "brand:wikipedia": "fr:Speedy (entreprise)", "name": "Speedy", "shop": "car_repair"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Speedy Auto Service": {"name": "Speedy Auto Service", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/SpeedyAutoServiceCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22318193", "shop": "car_repair"}, "addTags": {"brand": "Speedy Auto Service", "brand:wikidata": "Q22318193", "name": "Speedy Auto Service", "shop": "car_repair"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Toyota": {"name": "Toyota", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/toyota/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q53268", "shop": "car_repair"}, "addTags": {"brand": "Toyota", "brand:wikidata": "Q53268", "brand:wikipedia": "en:Toyota", "name": "Toyota", "shop": "car_repair"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Tuffy": {"name": "Tuffy", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/Tuffy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17125314", "shop": "car_repair"}, "addTags": {"brand": "Tuffy", "brand:wikidata": "Q17125314", "brand:wikipedia": "en:Tuffy Auto Service Centers", "name": "Tuffy", "shop": "car_repair"}, "countryCodes": ["us"], "terms": ["tuffy auto service", "tuffy auto service center", "tuffy auto service centers", "tuffy service", "tuffy service center", "tuffy service centers", "tuffy tire and auto service", "tuffy tire and auto service center", "tuffy tire and auto service centers"], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Valvoline": {"name": "Valvoline", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/viocofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7912852", "shop": "car_repair"}, "addTags": {"brand": "Valvoline", "brand:wikidata": "Q7912852", "brand:wikipedia": "en:Valvoline Instant Oil Change", "name": "Valvoline", "official_name": "Valvoline Instant Oil Change", "shop": "car_repair"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Valvoline Express Care": {"name": "Valvoline Express Care", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/ExpressCareValvoline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q74273584", "shop": "car_repair"}, "addTags": {"alt_name": "Express Care", "brand": "Valvoline Express Care", "brand:wikidata": "Q74273584", "name": "Valvoline Express Care", "shop": "car_repair"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/Vulco": {"name": "Vulco", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/vulcofrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q80184403", "shop": "car_repair"}, "addTags": {"brand": "Vulco", "brand:wikidata": "Q80184403", "name": "Vulco", "shop": "car_repair"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/pitstop": {"name": "pitstop", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/pitstop.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1310014", "shop": "car_repair"}, "addTags": {"brand": "pitstop", "brand:wikidata": "Q1310014", "brand:wikipedia": "de:Pitstop (Werkstattkette)", "name": "pitstop", "shop": "car_repair"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/ÖAMTC": {"name": "ÖAMTC", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/OEAMTC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q306057", "shop": "car_repair"}, "addTags": {"brand": "ÖAMTC", "brand:wikidata": "Q306057", "brand:wikipedia": "de:Österreichischer Automobil-, Motorrad- und Touring Club", "name": "ÖAMTC", "shop": "car_repair"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car_repair/カーコンビニ倶楽部": {"name": "カーコンビニ倶楽部", "icon": "maki-car-repair", "imageURL": "https://graph.facebook.com/carcon.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11295590", "shop": "car_repair"}, "addTags": {"brand": "カーコンビニ倶楽部", "brand:en": "Car Convenience Club", "brand:ja": "カーコンビニ倶楽部", "brand:wikidata": "Q11295590", "brand:wikipedia": "ja:カーコンビニ倶楽部", "name": "カーコンビニ倶楽部", "name:en": "Car Convenience Club", "name:ja": "カーコンビニ倶楽部", "shop": "car_repair"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Alfa Romeo": {"name": "Alfa Romeo", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Alfa.Romeo.cars/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26921", "shop": "car"}, "addTags": {"brand": "Alfa Romeo", "brand:wikidata": "Q26921", "brand:wikipedia": "en:Alfa Romeo", "name": "Alfa Romeo", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Aston Martin": {"name": "Aston Martin", "icon": "maki-car", "imageURL": "https://graph.facebook.com/astonmartin/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27074", "shop": "car"}, "addTags": {"brand": "Aston Martin", "brand:wikidata": "Q27074", "brand:wikipedia": "en:Aston Martin", "name": "Aston Martin", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Audi": {"name": "Audi", "icon": "maki-car", "imageURL": "https://graph.facebook.com/audi.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23317", "shop": "car"}, "addTags": {"brand": "Audi", "brand:wikidata": "Q23317", "brand:wikipedia": "en:Audi", "name": "Audi", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/BMW": {"name": "BMW", "icon": "maki-car", "imageURL": "https://graph.facebook.com/BMWGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26678", "shop": "car"}, "addTags": {"brand": "BMW", "brand:wikidata": "Q26678", "brand:wikipedia": "en:BMW", "name": "BMW", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Bentley": {"name": "Bentley", "icon": "maki-car", "imageURL": "https://graph.facebook.com/BentleyMotors/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27224", "shop": "car"}, "addTags": {"brand": "Bentley", "brand:wikidata": "Q27224", "brand:wikipedia": "en:Bentley", "name": "Bentley", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Buick": {"name": "Buick", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Buick/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27415", "shop": "car"}, "addTags": {"brand": "Buick", "brand:wikidata": "Q27415", "brand:wikipedia": "en:Buick", "name": "Buick", "shop": "car"}, "countryCodes": ["ca", "cn", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Cadillac": {"name": "Cadillac", "icon": "maki-car", "imageURL": "https://graph.facebook.com/cadillac/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27436", "shop": "car"}, "addTags": {"brand": "Cadillac", "brand:wikidata": "Q27436", "brand:wikipedia": "en:Cadillac", "name": "Cadillac", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/CarMax": {"name": "CarMax", "icon": "maki-car", "imageURL": "https://graph.facebook.com/CarMax/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5037190", "shop": "car"}, "addTags": {"brand": "CarMax", "brand:wikidata": "Q5037190", "brand:wikipedia": "en:CarMax", "name": "CarMax", "second_hand": "only", "shop": "car"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Chevrolet": {"name": "Chevrolet", "icon": "maki-car", "imageURL": "https://graph.facebook.com/chevrolet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q29570", "shop": "car"}, "addTags": {"brand": "Chevrolet", "brand:wikidata": "Q29570", "brand:wikipedia": "en:Chevrolet", "name": "Chevrolet", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Chrysler": {"name": "Chrysler", "icon": "maki-car", "imageURL": "https://graph.facebook.com/chrysler/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q181114", "shop": "car"}, "addTags": {"brand": "Chrysler", "brand:wikidata": "Q181114", "brand:wikipedia": "en:Chrysler", "name": "Chrysler", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Citroën": {"name": "Citroën", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Citroen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6746", "shop": "car"}, "addTags": {"brand": "Citroën", "brand:wikidata": "Q6746", "brand:wikipedia": "fr:Citroën", "name": "Citroën", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Dacia": {"name": "Dacia", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Dacia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27460", "shop": "car"}, "addTags": {"brand": "Dacia", "brand:wikidata": "Q27460", "brand:wikipedia": "en:Automobile Dacia", "name": "Dacia", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Dodge": {"name": "Dodge", "icon": "maki-car", "imageURL": "https://graph.facebook.com/dodge/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27564", "shop": "car"}, "addTags": {"brand": "Dodge", "brand:wikidata": "Q27564", "brand:wikipedia": "en:Dodge", "name": "Dodge", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/DriveTime": {"name": "DriveTime", "icon": "maki-car", "imageURL": "https://graph.facebook.com/DriveTimeCarSales/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5307879", "shop": "car"}, "addTags": {"brand": "DriveTime", "brand:wikidata": "Q5307879", "brand:wikipedia": "en:DriveTime", "name": "DriveTime", "second_hand": "only", "shop": "car"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Fiat": {"name": "Fiat", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Fiat/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27597", "shop": "car"}, "addTags": {"brand": "Fiat", "brand:wikidata": "Q27597", "brand:wikipedia": "en:Fiat Automobiles", "name": "Fiat", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Ford": {"name": "Ford", "icon": "maki-car", "imageURL": "https://graph.facebook.com/ford/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q44294", "shop": "car"}, "addTags": {"brand": "Ford", "brand:wikidata": "Q44294", "brand:wikipedia": "en:Ford Motor Company", "name": "Ford", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Freightliner": {"name": "Freightliner", "icon": "maki-car", "imageURL": "https://graph.facebook.com/freightliner/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1420724", "shop": "car"}, "addTags": {"brand": "Freightliner", "brand:wikidata": "Q1420724", "brand:wikipedia": "en:Freightliner Trucks", "name": "Freightliner", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/GMC": {"name": "GMC", "icon": "maki-car", "imageURL": "https://graph.facebook.com/gmc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28993", "shop": "car"}, "addTags": {"brand": "GMC", "brand:wikidata": "Q28993", "brand:wikipedia": "en:GMC (automobile)", "name": "GMC", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Holden": {"name": "Holden", "icon": "maki-car", "imageURL": "https://graph.facebook.com/holdenaustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q29281", "shop": "car"}, "addTags": {"brand": "Holden", "brand:wikidata": "Q29281", "brand:wikipedia": "en:Holden", "name": "Holden", "shop": "car"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Honda": {"name": "Honda", "icon": "maki-car", "imageURL": "https://graph.facebook.com/HondaJP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9584", "shop": "car"}, "addTags": {"brand": "Honda", "brand:wikidata": "Q9584", "brand:wikipedia": "en:Honda", "name": "Honda", "shop": "car"}, "terms": ["honda cars"], "matchScore": 2, "suggestion": true}, - "shop/car/Hyundai": {"name": "Hyundai", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Hyundai/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55931", "shop": "car"}, "addTags": {"brand": "Hyundai", "brand:wikidata": "Q55931", "brand:wikipedia": "en:Hyundai Motor Company", "name": "Hyundai", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Isuzu": {"name": "Isuzu", "icon": "maki-car", "imageURL": "https://graph.facebook.com/isuzumex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q29803", "shop": "car"}, "addTags": {"brand": "Isuzu", "brand:wikidata": "Q29803", "brand:wikipedia": "en:Isuzu Motors", "name": "Isuzu", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Jaguar": {"name": "Jaguar", "icon": "maki-car", "imageURL": "https://graph.facebook.com/JaguarUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26742231", "shop": "car"}, "addTags": {"brand": "Jaguar", "brand:wikidata": "Q26742231", "name": "Jaguar", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Jeep": {"name": "Jeep", "icon": "maki-car", "imageURL": "https://graph.facebook.com/jeep/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30113", "shop": "car"}, "addTags": {"brand": "Jeep", "brand:wikidata": "Q30113", "brand:wikipedia": "en:Jeep", "name": "Jeep", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Kia": {"name": "Kia", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Kiamotorsworldwide/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q35349", "shop": "car"}, "addTags": {"brand": "Kia", "brand:wikidata": "Q35349", "brand:wikipedia": "en:Kia Motors", "name": "Kia", "shop": "car"}, "terms": ["kia motors"], "matchScore": 2, "suggestion": true}, - "shop/car/Lada": {"name": "Lada", "icon": "maki-car", "imageURL": "https://graph.facebook.com/LADA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q35676", "shop": "car"}, "addTags": {"brand": "Lada", "brand:en": "Lada", "brand:ru": "Лада", "brand:wikidata": "Q35676", "brand:wikipedia": "en:Lada", "name": "Lada", "name:en": "Lada", "name:ru": "Лада", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Land Rover": {"name": "Land Rover", "icon": "maki-car", "imageURL": "https://graph.facebook.com/landroverusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26777551", "shop": "car"}, "addTags": {"brand": "Land Rover", "brand:wikidata": "Q26777551", "name": "Land Rover", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Lexus": {"name": "Lexus", "icon": "maki-car", "imageURL": "https://graph.facebook.com/lexus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q35919", "shop": "car"}, "addTags": {"brand": "Lexus", "brand:wikidata": "Q35919", "brand:wikipedia": "en:Lexus", "name": "Lexus", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Lincoln": {"name": "Lincoln", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Lincoln/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q216796", "shop": "car"}, "addTags": {"brand": "Lincoln", "brand:wikidata": "Q216796", "brand:wikipedia": "en:Lincoln Motor Company", "name": "Lincoln", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Mazda": {"name": "Mazda", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Mazda.Japan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q35996", "shop": "car"}, "addTags": {"brand": "Mazda", "brand:wikidata": "Q35996", "brand:wikipedia": "en:Mazda", "name": "Mazda", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Mercedes-Benz": {"name": "Mercedes-Benz", "icon": "maki-car", "imageURL": "https://graph.facebook.com/MercedesBenz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q36008", "shop": "car"}, "addTags": {"brand": "Mercedes-Benz", "brand:wikidata": "Q36008", "brand:wikipedia": "en:Mercedes-Benz", "name": "Mercedes-Benz", "shop": "car"}, "terms": ["mercedes"], "matchScore": 2, "suggestion": true}, - "shop/car/Mitsubishi": {"name": "Mitsubishi", "icon": "maki-car", "imageURL": "https://graph.facebook.com/MitsubishiMotors.en/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q36033", "shop": "car"}, "addTags": {"brand": "Mitsubishi", "brand:wikidata": "Q36033", "brand:wikipedia": "en:Mitsubishi Motors", "name": "Mitsubishi", "shop": "car"}, "terms": ["mitsubishi motors"], "matchScore": 2, "suggestion": true}, - "shop/car/Netz": {"name": "Netz", "icon": "maki-car", "imageURL": "https://graph.facebook.com/302854786851446/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11325416", "shop": "car"}, "addTags": {"brand": "Netz", "brand:wikidata": "Q11325416", "brand:wikipedia": "ja:ネッツ店", "name": "Netz", "shop": "car"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Nissan": {"name": "Nissan", "icon": "maki-car", "imageURL": "https://graph.facebook.com/NissanJP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20165", "shop": "car"}, "addTags": {"brand": "Nissan", "brand:wikidata": "Q20165", "brand:wikipedia": "ja:日産自動車", "name": "Nissan", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Opel": {"name": "Opel", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Opel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q40966", "shop": "car"}, "addTags": {"brand": "Opel", "brand:wikidata": "Q40966", "brand:wikipedia": "en:Opel", "name": "Opel", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Peterbilt": {"name": "Peterbilt", "icon": "maki-car", "imageURL": "https://graph.facebook.com/PeterbiltMotors/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q944640", "shop": "car"}, "addTags": {"brand": "Peterbilt", "brand:wikidata": "Q944640", "brand:wikipedia": "en:Peterbilt", "name": "Peterbilt", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Peugeot": {"name": "Peugeot", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Peugeot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6742", "shop": "car"}, "addTags": {"brand": "Peugeot", "brand:wikidata": "Q6742", "brand:wikipedia": "en:Peugeot", "name": "Peugeot", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Porsche": {"name": "Porsche", "icon": "maki-car", "imageURL": "https://graph.facebook.com/porsche/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q40993", "shop": "car"}, "addTags": {"brand": "Porsche", "brand:wikidata": "Q40993", "brand:wikipedia": "en:Porsche", "name": "Porsche", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Proton": {"name": "Proton", "icon": "maki-car", "imageURL": "https://graph.facebook.com/ProtonCarsOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q827306", "shop": "car"}, "addTags": {"brand": "Proton", "brand:wikidata": "Q827306", "brand:wikipedia": "en:PROTON Holdings", "name": "Proton", "shop": "car"}, "countryCodes": ["cl", "eg", "id", "my", "sg", "th"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Ram": {"name": "Ram", "icon": "maki-car", "imageURL": "https://graph.facebook.com/RamTrucks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q165708", "shop": "car"}, "addTags": {"brand": "Ram", "brand:wikidata": "Q165708", "brand:wikipedia": "en:Ram Trucks", "name": "Ram", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Renault": {"name": "Renault", "icon": "maki-car", "imageURL": "https://graph.facebook.com/Renault/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6686", "shop": "car"}, "addTags": {"brand": "Renault", "brand:wikidata": "Q6686", "brand:wikipedia": "fr:Renault", "name": "Renault", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Seat": {"name": "Seat", "icon": "maki-car", "imageURL": "https://graph.facebook.com/SEAT.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q188217", "shop": "car"}, "addTags": {"brand": "Seat", "brand:wikidata": "Q188217", "brand:wikipedia": "en:SEAT", "name": "Seat", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Subaru": {"name": "Subaru", "icon": "maki-car", "imageURL": "https://graph.facebook.com/SUBARU.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q172741", "shop": "car"}, "addTags": {"brand": "Subaru", "brand:wikidata": "Q172741", "brand:wikipedia": "en:Subaru", "name": "Subaru", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Suzuki": {"name": "Suzuki", "icon": "maki-car", "imageURL": "https://graph.facebook.com/SuzukiGlobalOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q181642", "shop": "car"}, "addTags": {"brand": "Suzuki", "brand:wikidata": "Q181642", "brand:wikipedia": "en:Suzuki", "name": "Suzuki", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Tesla": {"name": "Tesla", "icon": "maki-car", "imageURL": "https://pbs.twimg.com/profile_images/489192650474414080/4RxZxsud_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q478214", "shop": "car"}, "addTags": {"brand": "Tesla", "brand:wikidata": "Q478214", "brand:wikipedia": "en:Tesla, Inc.", "name": "Tesla", "shop": "car"}, "terms": ["tesla motors"], "matchScore": 2, "suggestion": true}, - "shop/car/Toyota": {"name": "Toyota", "icon": "maki-car", "imageURL": "https://graph.facebook.com/toyota/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q53268", "shop": "car"}, "addTags": {"brand": "Toyota", "brand:wikidata": "Q53268", "brand:wikipedia": "en:Toyota", "name": "Toyota", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Volkswagen": {"name": "Volkswagen", "icon": "maki-car", "imageURL": "https://graph.facebook.com/VW/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q246", "shop": "car"}, "addTags": {"brand": "Volkswagen", "brand:wikidata": "Q246", "brand:wikipedia": "en:Volkswagen", "name": "Volkswagen", "shop": "car"}, "terms": ["vw"], "matchScore": 2, "suggestion": true}, - "shop/car/Volvo": {"name": "Volvo", "icon": "maki-car", "imageURL": "https://graph.facebook.com/volvocars/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q215293", "shop": "car"}, "addTags": {"brand": "Volvo", "brand:wikidata": "Q215293", "brand:wikipedia": "en:Volvo Cars", "name": "Volvo", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Škoda": {"name": "Škoda", "icon": "maki-car", "imageURL": "https://graph.facebook.com/skoda/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q29637", "shop": "car"}, "addTags": {"brand": "Škoda", "brand:wikidata": "Q29637", "brand:wikipedia": "en:Škoda Auto", "name": "Škoda", "shop": "car"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/Автомир": {"name": "Автомир", "icon": "maki-car", "imageURL": "https://graph.facebook.com/avtomir.cars/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4056321", "shop": "car"}, "addTags": {"brand": "Автомир", "brand:en": "Autoworld", "brand:ru": "Автомир", "brand:wikidata": "Q4056321", "brand:wikipedia": "ru:Автомир (автодилер)", "name": "Автомир", "name:en": "Autoworld", "name:ru": "Автомир", "shop": "car"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/سایپا": {"name": "سایپا", "icon": "maki-car", "imageURL": "https://graph.facebook.com/saipaco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q116234", "shop": "car"}, "addTags": {"brand": "سایپا", "brand:en": "Saipa", "brand:fa": "سایپا", "brand:wikidata": "Q116234", "brand:wikipedia": "en:Saipa", "name": "سایپا", "name:en": "Saipa", "name:fa": "سایپا", "shop": "car"}, "countryCodes": ["ir"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/ガリバー": {"name": "ガリバー", "icon": "maki-car", "imageURL": "https://graph.facebook.com/gulliver.nz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11296264", "shop": "car"}, "addTags": {"brand": "ガリバー", "brand:en": "Gulliver", "brand:ja": "ガリバー", "brand:wikidata": "Q11296264", "brand:wikipedia": "ja:IDOM", "name": "ガリバー", "name:en": "Gulliver", "name:ja": "ガリバー", "shop": "car"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/ダイハツ": {"name": "ダイハツ", "icon": "maki-car", "imageURL": "https://graph.facebook.com/DaihatsuKSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q27511", "shop": "car"}, "addTags": {"brand": "ダイハツ", "brand:en": "Daihatsu", "brand:ja": "ダイハツ", "brand:wikidata": "Q27511", "brand:wikipedia": "ja:ダイハツ工業", "name": "ダイハツ", "name:en": "Daihatsu", "name:ja": "ダイハツ", "shop": "car"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/car/トヨタ": {"name": "トヨタ", "icon": "maki-car", "imageURL": "https://graph.facebook.com/toyota/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q53268", "shop": "car"}, "addTags": {"brand": "トヨタ", "brand:en": "Toyota", "brand:ja": "トヨタ", "brand:wikidata": "Q53268", "brand:wikipedia": "ja:トヨタ自動車", "name": "トヨタ", "name:en": "Toyota", "name:ja": "トヨタ", "shop": "car"}, "countryCodes": ["jp"], "terms": ["トヨタカローラ", "トヨタ自動車"], "matchScore": 2, "suggestion": true}, - "shop/car/ホンダ": {"name": "ホンダ", "icon": "maki-car", "imageURL": "https://graph.facebook.com/HondaJP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9584", "shop": "car"}, "addTags": {"brand": "ホンダ", "brand:en": "Honda", "brand:ja": "ホンダ", "brand:wikidata": "Q9584", "brand:wikipedia": "ja:本田技研工業", "name": "ホンダ", "name:en": "Honda", "name:ja": "ホンダ", "shop": "car"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/carpet/Carpetright": {"name": "Carpetright", "icon": "fas-tape", "imageURL": "https://graph.facebook.com/carpetright/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5045782", "shop": "carpet"}, "addTags": {"brand": "Carpetright", "brand:wikidata": "Q5045782", "brand:wikipedia": "en:Carpetright", "name": "Carpetright", "shop": "carpet"}, "countryCodes": ["be", "gb", "ie", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/carpet/Tapi Carpets": {"name": "Tapi Carpets", "icon": "fas-tape", "imageURL": "https://graph.facebook.com/tapicarpetsandfloors/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q79223951", "shop": "carpet"}, "addTags": {"brand": "Tapi Carpets", "brand:wikidata": "Q79223951", "name": "Tapi Carpets", "shop": "carpet"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/catalogue/Argos": {"name": "Argos", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/argos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4789707", "shop": "catalogue"}, "addTags": {"brand": "Argos", "brand:wikidata": "Q4789707", "brand:wikipedia": "en:Argos (retailer)", "name": "Argos", "shop": "catalogue"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Age UK": {"name": "Age UK", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ageuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4691850", "shop": "charity"}, "addTags": {"brand": "Age UK", "brand:wikidata": "Q4691850", "brand:wikipedia": "en:Age UK", "name": "Age UK", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Barnardo's": {"name": "Barnardo's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/barnardos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2884670", "shop": "charity"}, "addTags": {"brand": "Barnardo's", "brand:wikidata": "Q2884670", "brand:wikipedia": "en:Barnardo's", "name": "Barnardo's", "shop": "charity"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Brainwave": {"name": "Brainwave", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/charitybrainwave/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90561455", "shop": "charity"}, "addTags": {"brand": "Brainwave", "brand:wikidata": "Q90561455", "name": "Brainwave", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/British Heart Foundation": {"name": "British Heart Foundation", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/bhf/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4970039", "shop": "charity"}, "addTags": {"brand": "British Heart Foundation", "brand:wikidata": "Q4970039", "brand:wikipedia": "en:British Heart Foundation", "name": "British Heart Foundation", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/British Red Cross": {"name": "British Red Cross", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/britishredcross/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4970966", "shop": "charity"}, "addTags": {"brand": "British Red Cross", "brand:wikidata": "Q4970966", "brand:wikipedia": "en:British Red Cross", "name": "British Red Cross", "shop": "charity"}, "countryCodes": ["gb", "gg", "im"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Cancer Research UK": {"name": "Cancer Research UK", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/cancerresearchuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q326079", "shop": "charity"}, "addTags": {"brand": "Cancer Research UK", "brand:wikidata": "Q326079", "brand:wikipedia": "en:Cancer Research UK", "name": "Cancer Research UK", "shop": "charity"}, "countryCodes": ["gb", "gg"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Cats Protection": {"name": "Cats Protection", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/catsprotection/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5053998", "shop": "charity"}, "addTags": {"brand": "Cats Protection", "brand:wikidata": "Q5053998", "brand:wikipedia": "en:Cats Protection", "name": "Cats Protection", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Goodwill": {"name": "Goodwill", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/GoodwillIntl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5583655", "shop": "charity"}, "addTags": {"brand": "Goodwill", "brand:wikidata": "Q5583655", "brand:wikipedia": "en:Goodwill Industries", "name": "Goodwill", "shop": "charity"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Humana": {"name": "Humana", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/HumanaHPP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1636581", "shop": "charity"}, "addTags": {"brand": "Humana", "brand:wikidata": "Q1636581", "brand:wikipedia": "de:Humana People to People", "name": "Humana", "shop": "charity"}, "terms": ["humana people to people"], "matchScore": 2, "suggestion": true}, - "shop/charity/Kirkens Korshær Genbrug": {"name": "Kirkens Korshær Genbrug", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/vierkirkenskorshaer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12321915", "shop": "charity"}, "addTags": {"brand": "Kirkens Korshær Genbrug", "brand:wikidata": "Q12321915", "brand:wikipedia": "da:Kirkens Korshær", "name": "Kirkens Korshær Genbrug", "shop": "charity"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Marie Curie": {"name": "Marie Curie", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/MarieCurieUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16997351", "shop": "charity"}, "addTags": {"brand": "Marie Curie", "brand:wikidata": "Q16997351", "brand:wikipedia": "en:Marie Curie (charity)", "name": "Marie Curie", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Mind": {"name": "Mind", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/mindforbettermentalhealth/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3314763", "shop": "charity"}, "addTags": {"brand": "Mind", "brand:wikidata": "Q3314763", "brand:wikipedia": "en:Mind (charity)", "name": "Mind", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Myrorna": {"name": "Myrorna", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Myrorna/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10592609", "shop": "charity"}, "addTags": {"brand": "Myrorna", "brand:wikidata": "Q10592609", "brand:wikipedia": "sv:Myrorna", "name": "Myrorna", "shop": "charity"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Oxfam": {"name": "Oxfam", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/oxfamGB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q267941", "shop": "charity"}, "addTags": {"brand": "Oxfam", "brand:wikidata": "Q267941", "brand:wikipedia": "en:Oxfam", "name": "Oxfam", "shop": "charity"}, "countryCodes": ["be", "de", "gb", "ie", "im"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/PDSA": {"name": "PDSA", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/pdsa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7165541", "shop": "charity"}, "addTags": {"brand": "PDSA", "brand:wikidata": "Q7165541", "brand:wikipedia": "en:People's Dispensary for Sick Animals", "name": "PDSA", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/RNLI Shop": {"name": "RNLI Shop", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/rnli/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2166873", "shop": "charity"}, "addTags": {"brand": "RNLI Shop", "brand:wikidata": "Q2166873", "brand:wikipedia": "en:Royal National Lifeboat Institution", "name": "RNLI Shop", "shop": "charity"}, "countryCodes": ["gb", "ie"], "terms": ["royal national lifeboat institution"], "matchScore": 2, "suggestion": true}, - "shop/charity/RSPCA": {"name": "RSPCA", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/RSPCA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q584819", "shop": "charity"}, "addTags": {"brand": "RSPCA", "brand:wikidata": "Q584819", "brand:wikipedia": "en:Royal Society for the Prevention of Cruelty to Animals", "name": "RSPCA", "shop": "charity"}, "countryCodes": ["au", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Saint Vincent de Paul Thrift Store": {"name": "Saint Vincent de Paul Thrift Store", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/186921794657204/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66581837", "shop": "charity"}, "addTags": {"brand": "Saint Vincent de Paul Thrift Store", "brand:wikidata": "Q66581837", "name": "Saint Vincent de Paul Thrift Store", "shop": "charity", "short_name": "SVdP"}, "countryCodes": ["us"], "terms": ["saint vincent de paul", "saint vincent de paul society", "society of saint vincent de paul", "society of st vincent de paul", "st vincent de paul", "st vincent de paul society", "st vincent de paul thrift store", "svdp thrift store", "the society of saint vincent de paul", "the society of st vincent de paul"], "matchScore": 2, "suggestion": true}, - "shop/charity/Samaritans": {"name": "Samaritans", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/samaritanscharity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7408851", "shop": "charity"}, "addTags": {"brand": "Samaritans", "brand:wikidata": "Q7408851", "brand:wikipedia": "en:Samaritans (charity)", "name": "Samaritans", "shop": "charity"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Scope": {"name": "Scope", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Scope/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7434435", "shop": "charity"}, "addTags": {"brand": "Scope", "brand:wikidata": "Q7434435", "brand:wikipedia": "en:Scope (charity)", "name": "Scope", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Shelter": {"name": "Shelter", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ShelterUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7493943", "shop": "charity"}, "addTags": {"brand": "Shelter", "brand:wikidata": "Q7493943", "brand:wikipedia": "en:Shelter (charity)", "name": "Shelter", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/St Margaret's Hospice Care": {"name": "St Margaret's Hospice Care", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/stmargaretshospice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q91027360", "shop": "charity"}, "addTags": {"brand": "St Margaret's Hospice Care", "brand:wikidata": "Q91027360", "name": "St Margaret's Hospice Care", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/Sue Ryder": {"name": "Sue Ryder", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SueRyderNational/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7634271", "shop": "charity"}, "addTags": {"brand": "Sue Ryder", "brand:wikidata": "Q7634271", "brand:wikipedia": "en:Sue Ryder (charity)", "name": "Sue Ryder", "shop": "charity"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/The Children's Society": {"name": "The Children's Society", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/childrenssociety/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7722484", "shop": "charity"}, "addTags": {"brand": "The Children's Society", "brand:wikidata": "Q7722484", "brand:wikipedia": "en:The Children's Society", "name": "The Children's Society", "shop": "charity"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/charity/The Salvation Army": {"name": "The Salvation Army", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SalvationArmyUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q188307", "shop": "charity"}, "addTags": {"brand": "The Salvation Army", "brand:wikidata": "Q188307", "brand:wikipedia": "en:The Salvation Army", "name": "The Salvation Army", "shop": "charity"}, "countryCodes": ["au", "ca", "gb", "us"], "terms": ["salvation army"], "matchScore": 2, "suggestion": true}, - "shop/charity/YMCA": {"name": "YMCA", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/YMCA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q157169", "shop": "charity"}, "addTags": {"brand": "YMCA", "brand:wikidata": "Q157169", "brand:wikipedia": "en:YMCA", "name": "YMCA", "shop": "charity"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/101 Drogerie": {"name": "101 Drogerie", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/101drogerie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q67197464", "shop": "chemist"}, "addTags": {"brand": "101 Drogerie", "brand:wikidata": "Q67197464", "name": "101 Drogerie", "shop": "chemist"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Acqua & Sapone": {"name": "Acqua & Sapone", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/acquaesapone/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q51079044", "shop": "chemist"}, "addTags": {"brand": "Acqua & Sapone", "brand:wikidata": "Q51079044", "brand:wikipedia": "it:Acqua & Sapone (azienda)", "name": "Acqua & Sapone", "shop": "chemist"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Bipa": {"name": "Bipa", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/BIPA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q864933", "shop": "chemist"}, "addTags": {"brand": "Bipa", "brand:wikidata": "Q864933", "brand:wikipedia": "de:Bipa", "name": "Bipa", "shop": "chemist"}, "countryCodes": ["at", "hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Boots": {"name": "Boots", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/bootsuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6123139", "shop": "chemist"}, "addTags": {"brand": "Boots", "brand:wikidata": "Q6123139", "name": "Boots", "shop": "chemist"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Budnikowsky": {"name": "Budnikowsky", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/BUDNI/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1001516", "shop": "chemist"}, "addTags": {"brand": "Budnikowsky", "brand:wikidata": "Q1001516", "brand:wikipedia": "de:Budnikowsky", "name": "Budnikowsky", "shop": "chemist"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/CVS Pharmacy": {"name": "CVS Pharmacy", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CVS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2078880", "shop": "chemist"}, "addTags": {"brand": "CVS Pharmacy", "brand:wikidata": "Q2078880", "brand:wikipedia": "en:CVS Pharmacy", "name": "CVS Pharmacy", "shop": "chemist", "short_name": "CVS"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Drogeria Natura": {"name": "Drogeria Natura", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/707518851785871360/aCEmonjR_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9212032", "shop": "chemist"}, "addTags": {"brand": "Drogeria Natura", "brand:wikidata": "Q9212032", "brand:wikipedia": "pl:Drogerie Natura", "name": "Drogeria Natura", "shop": "chemist"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Etos": {"name": "Etos", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEtos%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2609459", "shop": "chemist"}, "addTags": {"brand": "Etos", "brand:wikidata": "Q2609459", "brand:wikipedia": "en:Etos", "name": "Etos", "shop": "chemist"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Kruidvat": {"name": "Kruidvat", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKruidvat%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2226366", "shop": "chemist"}, "addTags": {"brand": "Kruidvat", "brand:wikidata": "Q2226366", "brand:wikipedia": "en:Kruidvat", "name": "Kruidvat", "shop": "chemist"}, "countryCodes": ["be", "fr", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Longs Drugs (Hawaii)": {"name": "Longs Drugs (Hawaii)", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLongs%20Drugs%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16931196", "shop": "chemist"}, "addTags": {"brand": "Longs Drugs", "brand:wikidata": "Q16931196", "brand:wikipedia": "en:Longs Drugs", "name": "Longs Drugs", "shop": "chemist", "short_name": "Longs"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Matas": {"name": "Matas", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/matasdk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6786143", "shop": "chemist"}, "addTags": {"brand": "Matas", "brand:wikidata": "Q6786143", "brand:wikipedia": "en:Matas (drug store)", "name": "Matas", "shop": "chemist"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Müller": {"name": "Müller", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/mueller.deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1958759", "shop": "chemist"}, "addTags": {"brand": "Müller", "brand:wikidata": "Q1958759", "brand:wikipedia": "en:Müller (German trade company)", "name": "Müller", "shop": "chemist"}, "countryCodes": ["at", "ch", "de", "es", "hr", "hu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Rite Aid": {"name": "Rite Aid", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/riteaid/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3433273", "shop": "chemist"}, "addTags": {"brand": "Rite Aid", "brand:wikidata": "Q3433273", "brand:wikipedia": "en:Rite Aid", "name": "Rite Aid", "shop": "chemist"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Rossmann": {"name": "Rossmann", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/rossmann.gmbh/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q316004", "shop": "chemist"}, "addTags": {"brand": "Rossmann", "brand:wikidata": "Q316004", "brand:wikipedia": "de:Dirk Rossmann GmbH", "name": "Rossmann", "shop": "chemist"}, "countryCodes": ["cz", "de", "hu", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Savers": {"name": "Savers", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/SaversHB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7428189", "shop": "chemist"}, "addTags": {"brand": "Savers", "brand:wikidata": "Q7428189", "brand:wikipedia": "en:Savers (UK retailer)", "name": "Savers", "official_name": "Savers Health & Beauty", "shop": "chemist"}, "countryCodes": ["gb"], "terms": ["savers drugstores"], "matchScore": 2, "suggestion": true}, - "shop/chemist/Superdrug": {"name": "Superdrug", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Superdrug/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7643261", "shop": "chemist"}, "addTags": {"brand": "Superdrug", "brand:wikidata": "Q7643261", "brand:wikipedia": "en:Superdrug", "name": "Superdrug", "shop": "chemist"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Teta": {"name": "Teta", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/tetadrogerie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20860823", "shop": "chemist"}, "addTags": {"brand": "Teta", "brand:wikidata": "Q20860823", "brand:wikipedia": "cs:Teta drogerie", "name": "Teta", "shop": "chemist"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Trekpleister": {"name": "Trekpleister", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1240242735120101378/0MAvEVH1_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2551576", "shop": "chemist"}, "addTags": {"brand": "Trekpleister", "brand:wikidata": "Q2551576", "brand:wikipedia": "nl:Trekpleister (drogisterij)", "name": "Trekpleister", "shop": "chemist"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/Walgreens": {"name": "Walgreens", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/walgreens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1591889", "shop": "chemist"}, "addTags": {"brand": "Walgreens", "brand:wikidata": "Q1591889", "brand:wikipedia": "en:Walgreens", "name": "Walgreens", "shop": "chemist"}, "countryCodes": ["us"], "terms": ["walgreens pharmacy"], "matchScore": 2, "suggestion": true}, - "shop/chemist/Watsons": {"name": "Watsons", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/WatsonsPH/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7974785", "shop": "chemist"}, "addTags": {"brand": "Watsons", "brand:wikidata": "Q7974785", "brand:wikipedia": "en:Watsons", "name": "Watsons", "shop": "chemist"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/dm": {"name": "dm", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/dm.Deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q266572", "shop": "chemist"}, "addTags": {"brand": "dm", "brand:wikidata": "Q266572", "brand:wikipedia": "en:Dm-drogerie markt", "name": "dm", "shop": "chemist"}, "countryCodes": ["at", "ba", "bg", "cz", "de", "hr", "hu", "it", "mk", "ro", "rs", "si", "sk"], "terms": ["dm drogerie markt"], "matchScore": 2, "suggestion": true}, - "shop/chemist/屈臣氏": {"name": "屈臣氏", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/WatsonsPH/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7974785", "shop": "chemist"}, "addTags": {"brand": "屈臣氏", "brand:wikidata": "Q7974785", "brand:wikipedia": "zh:屈臣氏", "name": "屈臣氏", "shop": "chemist"}, "countryCodes": ["cn", "hk", "tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chemist/康是美": {"name": "康是美", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/cococo.cosmed/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11063876", "shop": "chemist"}, "addTags": {"brand": "康是美", "brand:wikidata": "Q11063876", "brand:wikipedia": "zh:康是美藥妝店", "name": "康是美", "shop": "chemist"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Cacau Show": {"name": "Cacau Show", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/CacauShow/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9671713", "shop": "chocolate"}, "addTags": {"brand": "Cacau Show", "brand:wikidata": "Q9671713", "brand:wikipedia": "en:Cacau Show", "name": "Cacau Show", "shop": "chocolate"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Chocolates Brasil Cacau": {"name": "Chocolates Brasil Cacau", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/ChocolatesBrasilCacau/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9750569", "shop": "chocolate"}, "addTags": {"brand": "Chocolates Brasil Cacau", "brand:wikidata": "Q9750569", "brand:wikipedia": "pt:Chocolates Brasil Cacau", "name": "Chocolates Brasil Cacau", "shop": "chocolate", "short_name": "Brasil Cacau"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Gertrude Hawk Chocolates": {"name": "Gertrude Hawk Chocolates", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/gertrudehawkchocolates/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5553326", "shop": "chocolate"}, "addTags": {"brand": "Gertrude Hawk Chocolates", "brand:wikidata": "Q5553326", "brand:wikipedia": "en:Gertrude Hawk Chocolates", "name": "Gertrude Hawk Chocolates", "shop": "chocolate", "short_name": "Gertrude Hawk"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Godiva Chocolatier": {"name": "Godiva Chocolatier", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/Godiva/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q931084", "shop": "chocolate"}, "addTags": {"brand": "Godiva Chocolatier", "brand:wikidata": "Q931084", "brand:wikipedia": "en:Godiva Chocolatier", "name": "Godiva Chocolatier", "shop": "chocolate", "short_name": "Godiva"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Jeff de Bruges": {"name": "Jeff de Bruges", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/JeffdeBrugesofficiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3176626", "shop": "chocolate"}, "addTags": {"brand": "Jeff de Bruges", "brand:wikidata": "Q3176626", "brand:wikipedia": "fr:Jeff de Bruges", "name": "Jeff de Bruges", "shop": "chocolate"}, "countryCodes": ["ca", "cz", "fr", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Laura Secord": {"name": "Laura Secord", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/laurasecord.ca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6499418", "shop": "chocolate"}, "addTags": {"brand": "Laura Secord", "brand:wikidata": "Q6499418", "brand:wikipedia": "en:Laura Secord Chocolates", "name": "Laura Secord", "shop": "chocolate"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Leonidas": {"name": "Leonidas", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/Leonidas.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q80335", "shop": "chocolate"}, "addTags": {"brand": "Leonidas", "brand:wikidata": "Q80335", "brand:wikipedia": "en:Leonidas (chocolate maker)", "name": "Leonidas", "shop": "chocolate"}, "countryCodes": ["be", "cz", "fr", "gb", "gr", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Lindt": {"name": "Lindt", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/lindtchocolateusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q152822", "shop": "chocolate"}, "addTags": {"brand": "Lindt", "brand:wikidata": "Q152822", "brand:wikipedia": "en:Lindt & Sprüngli", "name": "Lindt", "shop": "chocolate"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/chocolate/Purdys Chocolatier": {"name": "Purdys Chocolatier", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/PurdysChocolatier/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7261007", "shop": "chocolate"}, "addTags": {"brand": "Purdys Chocolatier", "brand:wikidata": "Q7261007", "brand:wikipedia": "en:Purdy's Chocolates", "name": "Purdys Chocolatier", "shop": "chocolate"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/& Other Stories": {"name": "& Other Stories", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/andotherstories/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q85322338", "shop": "clothes"}, "addTags": {"brand": "& Other Stories", "brand:wikidata": "Q85322338", "clothes": "women", "name": "& Other Stories", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/A Pea in the Pod": {"name": "A Pea in the Pod", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/apeainthepod/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q79051737", "shop": "clothes"}, "addTags": {"brand": "A Pea in the Pod", "brand:wikidata": "Q79051737", "clothes": "maternity", "name": "A Pea in the Pod", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/AOKI": {"name": "AOKI", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/aokistyle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11189480", "shop": "clothes"}, "addTags": {"brand": "AOKI", "brand:wikidata": "Q11189480", "brand:wikipedia": "ja:AOKIホールディングス", "clothes": "men", "name": "AOKI", "name:ja": "アオキ", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/AWG-Modecenter": {"name": "AWG-Modecenter", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/AWG.Mode/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q300220", "shop": "clothes"}, "addTags": {"brand": "AWG-Modecenter", "brand:wikidata": "Q300220", "brand:wikipedia": "de:AWG-Modecenter", "name": "AWG-Modecenter", "shop": "clothes", "short_name": "AWG"}, "countryCodes": ["bg", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Abercrombie & Fitch": {"name": "Abercrombie & Fitch", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/abercrombieofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q319344", "shop": "clothes"}, "addTags": {"brand": "Abercrombie & Fitch", "brand:wikidata": "Q319344", "brand:wikipedia": "en:Abercrombie & Fitch", "clothes": "men;women", "name": "Abercrombie & Fitch", "shop": "clothes"}, "countryCodes": ["ae", "be", "ca", "cn", "de", "es", "fr", "gb", "hk", "ie", "it", "jp", "kw", "mx", "nl", "qa", "sa", "sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Abercrombie Kids": {"name": "Abercrombie Kids", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/AbercrombieKids/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q429856", "shop": "clothes"}, "addTags": {"brand": "Abercrombie Kids", "brand:wikidata": "Q429856", "brand:wikipedia": "en:Abercrombie Kids", "clothes": "children", "name": "Abercrombie Kids", "shop": "clothes"}, "countryCodes": ["ae", "ca", "cn", "de", "gb", "it", "nl", "sg", "sp", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Accessorize": {"name": "Accessorize", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/AccessorizeUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65007482", "shop": "clothes"}, "addTags": {"brand": "Accessorize", "brand:wikidata": "Q65007482", "name": "Accessorize", "shop": "clothes"}, "countryCodes": ["gb", "it", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Ackermans": {"name": "Ackermans", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/AckermansSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4674255", "shop": "clothes"}, "addTags": {"brand": "Ackermans", "brand:wikidata": "Q4674255", "brand:wikipedia": "en:Ackermans", "name": "Ackermans", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Addition Elle": {"name": "Addition Elle", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/additionelle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4681311", "shop": "clothes"}, "addTags": {"brand": "Addition Elle", "brand:wikidata": "Q4681311", "brand:wikipedia": "en:Addition Elle", "clothes": "women", "name": "Addition Elle", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Aerie": {"name": "Aerie", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Aerie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25351619", "shop": "clothes"}, "addTags": {"brand": "Aerie", "brand:wikidata": "Q25351619", "brand:wikipedia": "en:Aerie (clothing retailer)", "name": "Aerie", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Aeropostale": {"name": "Aeropostale", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Aeropostale/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q794565", "shop": "clothes"}, "addTags": {"brand": "Aeropostale", "brand:wikidata": "Q794565", "brand:wikipedia": "en:Aéropostale (clothing)", "clothes": "men;women", "name": "Aeropostale", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Alia N TanJay": {"name": "Alia N TanJay", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/tanjayalia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65947844", "shop": "clothes"}, "addTags": {"brand": "Alia N TanJay", "brand:wikidata": "Q65947844", "clothes": "women", "name": "Alia N TanJay", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/AllSaints": {"name": "AllSaints", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/allsaintsus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4728473", "shop": "clothes"}, "addTags": {"brand": "AllSaints", "brand:wikidata": "Q4728473", "brand:wikipedia": "en:AllSaints", "name": "AllSaints", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Altar'd State": {"name": "Altar'd State", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/altardstate/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q71022008", "shop": "clothes"}, "addTags": {"brand": "Altar'd State", "brand:wikidata": "Q71022008", "name": "Altar'd State", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/American Eagle Outfitters": {"name": "American Eagle Outfitters", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/americaneagle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2842931", "shop": "clothes"}, "addTags": {"brand": "American Eagle Outfitters", "brand:wikidata": "Q2842931", "brand:wikipedia": "en:American Eagle Outfitters", "clothes": "men;women", "name": "American Eagle Outfitters", "shop": "clothes", "short_name": "American Eagle"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Animal": {"name": "Animal", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/AnimalFreesports/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4764749", "shop": "clothes"}, "addTags": {"brand": "Animal", "brand:wikidata": "Q4764749", "name": "Animal", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Ann Taylor": {"name": "Ann Taylor", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/AnnTaylor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4766699", "shop": "clothes"}, "addTags": {"brand": "Ann Taylor", "brand:wikidata": "Q4766699", "brand:wikipedia": "en:Ann Inc.", "clothes": "women", "name": "Ann Taylor", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Anthropologie": {"name": "Anthropologie", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Anthropologie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4773903", "shop": "clothes"}, "addTags": {"brand": "Anthropologie", "brand:wikidata": "Q4773903", "brand:wikipedia": "en:Anthropologie", "clothes": "women", "name": "Anthropologie", "shop": "clothes"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Arc'teryx": {"name": "Arc'teryx", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/arcteryx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3271455", "shop": "clothes"}, "addTags": {"brand": "Arc'teryx", "brand:wikidata": "Q3271455", "brand:wikipedia": "en:Arc'teryx", "clothes": "men;women", "name": "Arc'teryx", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Ardene": {"name": "Ardene", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Ardene/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2860764", "shop": "clothes"}, "addTags": {"brand": "Ardene", "brand:wikidata": "Q2860764", "brand:wikipedia": "en:Ardene", "name": "Ardene", "shop": "clothes"}, "countryCodes": ["ca", "sn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Aritzia": {"name": "Aritzia", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/aritzia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4791147", "shop": "clothes"}, "addTags": {"brand": "Aritzia", "brand:wikidata": "Q4791147", "brand:wikipedia": "en:Aritzia", "clothes": "women", "name": "Aritzia", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Armand Thiery": {"name": "Armand Thiery", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ARMANDTHIERY/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2861975", "shop": "clothes"}, "addTags": {"brand": "Armand Thiery", "brand:wikidata": "Q2861975", "brand:wikipedia": "fr:Armand Thiery", "name": "Armand Thiery", "shop": "clothes"}, "countryCodes": ["be", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Armani Exchange": {"name": "Armani Exchange", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/armaniexchange/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56045740", "shop": "clothes"}, "addTags": {"brand": "Armani Exchange", "brand:wikidata": "Q56045740", "clothes": "men;women", "name": "Armani Exchange", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Armor Lux": {"name": "Armor Lux", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q951079", "shop": "clothes"}, "addTags": {"brand": "Armor Lux", "brand:wikidata": "Q951079", "brand:wikipedia": "fr:Armor Lux", "name": "Armor Lux", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Aubade": {"name": "Aubade", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/1093548111300120578/Cto4bpSH_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2870536", "shop": "clothes"}, "addTags": {"brand": "Aubade", "brand:wikidata": "Q2870536", "brand:wikipedia": "fr:Aubade (lingerie)", "clothes": "underwear", "name": "Aubade", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Avenue": {"name": "Avenue", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/MyAvenue/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4828182", "shop": "clothes"}, "addTags": {"brand": "Avenue", "brand:wikidata": "Q4828182", "brand:wikipedia": "en:Avenue (store)", "clothes": "women;oversize", "name": "Avenue", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Baby Gap": {"name": "Baby Gap", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/GapJapan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q420822", "shop": "clothes"}, "addTags": {"brand": "Gap", "brand:wikidata": "Q420822", "brand:wikipedia": "en:Gap Inc.", "name": "Baby Gap", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/BadRhino": {"name": "BadRhino", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BadRhinoUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q84161924", "shop": "clothes"}, "addTags": {"brand": "BadRhino", "brand:wikidata": "Q84161924", "clothes": "men", "name": "BadRhino", "shop": "clothes"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Banana Republic": {"name": "Banana Republic", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BananaRepublic/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q806085", "shop": "clothes"}, "addTags": {"brand": "Banana Republic", "brand:wikidata": "Q806085", "brand:wikipedia": "en:Banana Republic", "clothes": "men;women", "name": "Banana Republic", "shop": "clothes"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bench.": {"name": "Bench.", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BenchOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q816714", "shop": "clothes"}, "addTags": {"brand": "Bench.", "brand:wikidata": "Q816714", "brand:wikipedia": "en:Bench (British clothing brand)", "name": "Bench.", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bepon": {"name": "Bepon", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BEPONsk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23766409", "shop": "clothes"}, "addTags": {"brand": "Bepon", "brand:wikidata": "Q23766409", "brand:wikipedia": "sk:Bepon", "clothes": "underwear", "name": "Bepon", "shop": "clothes"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bershka": {"name": "Bershka", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/bershka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q827258", "shop": "clothes"}, "addTags": {"brand": "Bershka", "brand:wikidata": "Q827258", "brand:wikipedia": "en:Bershka", "name": "Bershka", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Betty Barclay": {"name": "Betty Barclay", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Barclay.Betty/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q850250", "shop": "clothes"}, "addTags": {"brand": "Betty Barclay", "brand:wikidata": "Q850250", "brand:wikipedia": "de:Betty Barclay", "name": "Betty Barclay", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Big Star": {"name": "Big Star", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/bigstareurope/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9171569", "shop": "clothes"}, "addTags": {"brand": "Big Star", "brand:wikidata": "Q9171569", "brand:wikipedia": "pl:Big Star Limited", "name": "Big Star", "shop": "clothes"}, "countryCodes": ["by", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Billabong": {"name": "Billabong", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Billabong/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q862718", "shop": "clothes"}, "addTags": {"brand": "Billabong", "brand:wikidata": "Q862718", "brand:wikipedia": "en:Billabong (clothing)", "clothes": "men;women", "name": "Billabong", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bimba y Lola": {"name": "Bimba y Lola", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q54869493", "shop": "clothes"}, "addTags": {"brand": "Bimba y Lola", "brand:wikidata": "Q54869493", "brand:wikipedia": "es:Bimba y Lola", "name": "Bimba y Lola", "shop": "clothes"}, "terms": ["bimba & lola"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bluenotes": {"name": "Bluenotes", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BluenotesJeans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4930395", "shop": "clothes"}, "addTags": {"brand": "Bluenotes", "brand:wikidata": "Q4930395", "brand:wikipedia": "en:Bluenotes", "name": "Bluenotes", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/BonWorth": {"name": "BonWorth", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/shopbonworth/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4941034", "shop": "clothes"}, "addTags": {"brand": "BonWorth", "brand:wikidata": "Q4941034", "brand:wikipedia": "en:BonWorth", "clothes": "women", "name": "BonWorth", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bonita": {"name": "Bonita", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BONITAfashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q892598", "shop": "clothes"}, "addTags": {"brand": "Bonita", "brand:wikidata": "Q892598", "brand:wikipedia": "de:Bonita (Unternehmen)", "name": "Bonita", "shop": "clothes"}, "countryCodes": ["at", "ch", "de", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bonmarché": {"name": "Bonmarché", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/bonmarche/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4942146", "shop": "clothes"}, "addTags": {"brand": "Bonmarché", "brand:wikidata": "Q4942146", "brand:wikipedia": "en:Bonmarché", "name": "Bonmarché", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bonne Gueule": {"name": "Bonne Gueule", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBonnegueule%20officiel.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22248146", "shop": "clothes"}, "addTags": {"brand": "Bonne Gueule", "brand:wikidata": "Q22248146", "brand:wikipedia": "fr:BonneGueule", "name": "Bonne Gueule", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bonobo": {"name": "Bonobo", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/bonoboplanet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63682093", "shop": "clothes"}, "addTags": {"brand": "Bonobo", "brand:wikidata": "Q63682093", "clothes": "men;women", "name": "Bonobo", "shop": "clothes"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bonobos": {"name": "Bonobos", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/bonobos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4942546", "shop": "clothes"}, "addTags": {"brand": "Bonobos", "brand:wikidata": "Q4942546", "brand:wikipedia": "en:Bonobos (apparel)", "clothes": "men", "name": "Bonobos", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bootlegger": {"name": "Bootlegger", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BootleggerJeans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65947984", "shop": "clothes"}, "addTags": {"brand": "Bootlegger", "brand:wikidata": "Q65947984", "clothes": "women", "name": "Bootlegger", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Boux Avenue": {"name": "Boux Avenue", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BouxAvenue/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4950489", "shop": "clothes"}, "addTags": {"brand": "Boux Avenue", "brand:wikidata": "Q4950489", "brand:wikipedia": "en:Boux Avenue", "clothes": "underwear", "name": "Boux Avenue", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Brice": {"name": "Brice", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/brandbrice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2925067", "shop": "clothes"}, "addTags": {"brand": "Brice", "brand:wikidata": "Q2925067", "brand:wikipedia": "fr:Brice (enseigne)", "name": "Brice", "shop": "clothes"}, "countryCodes": ["be", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Brooks Brothers": {"name": "Brooks Brothers", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BrooksBrothers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q929722", "shop": "clothes"}, "addTags": {"brand": "Brooks Brothers", "brand:wikidata": "Q929722", "brand:wikipedia": "en:Brooks Brothers", "name": "Brooks Brothers", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Brunello Cucinelli": {"name": "Brunello Cucinelli", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BrunelloCucinelli/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3645582", "shop": "clothes"}, "addTags": {"brand": "Brunello Cucinelli", "brand:wikidata": "Q3645582", "brand:wikipedia": "en:Brunello Cucinelli (company)", "name": "Brunello Cucinelli", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Buckle": {"name": "Buckle", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/bucklestore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4983306", "shop": "clothes"}, "addTags": {"brand": "Buckle", "brand:wikidata": "Q4983306", "brand:wikipedia": "en:Buckle (clothing retailer)", "clothes": "men;women;children", "name": "Buckle", "shop": "clothes"}, "countryCodes": ["us"], "terms": ["the buckle"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Buffalo Exchange": {"name": "Buffalo Exchange", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/buffaloexchange/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4985721", "shop": "clothes"}, "addTags": {"brand": "Buffalo Exchange", "brand:wikidata": "Q4985721", "brand:wikipedia": "en:Buffalo Exchange", "name": "Buffalo Exchange", "second_hand": "only", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Burberry": {"name": "Burberry", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Burberry/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q390107", "shop": "clothes"}, "addTags": {"brand": "Burberry", "brand:wikidata": "Q390107", "brand:wikipedia": "en:Burberry", "clothes": "men;women", "name": "Burberry", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Burlington Coat Factory": {"name": "Burlington Coat Factory", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BurlingtonStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4999220", "shop": "clothes"}, "addTags": {"brand": "Burlington Coat Factory", "brand:wikidata": "Q4999220", "brand:wikipedia": "en:Burlington (department store)", "name": "Burlington Coat Factory", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Burton": {"name": "Burton", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BurtonMenswear/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5000795", "shop": "clothes"}, "addTags": {"brand": "Burton", "brand:wikidata": "Q5000795", "brand:wikipedia": "en:Burton (retailer)", "name": "Burton", "shop": "clothes"}, "countryCodes": ["fr", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Bóboli": {"name": "Bóboli", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/899272880927780864/u8RHJu0a_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q39073733", "shop": "clothes"}, "addTags": {"brand": "Boboli", "brand:wikidata": "Q39073733", "brand:wikipedia": "ca:Bóboli", "name": "Bóboli", "shop": "clothes"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/C&A": {"name": "C&A", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q701338", "shop": "clothes"}, "addTags": {"brand": "C&A", "brand:wikidata": "Q701338", "brand:wikipedia": "en:C&A", "name": "C&A", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/COS": {"name": "COS", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/cos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60772401", "shop": "clothes"}, "addTags": {"brand": "COS", "brand:wikidata": "Q60772401", "brand:wikipedia": "en:COS (clothing)", "name": "COS", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Cache Cache": {"name": "Cache Cache", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/CacheCacheFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63064086", "shop": "clothes"}, "addTags": {"brand": "Cache Cache", "brand:wikidata": "Q63064086", "name": "Cache Cache", "shop": "clothes"}, "countryCodes": ["fr", "it", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Calvin Klein": {"name": "Calvin Klein", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/CalvinKlein/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1068628", "shop": "clothes"}, "addTags": {"brand": "Calvin Klein", "brand:wikidata": "Q1068628", "brand:wikipedia": "en:Calvin Klein (company)", "name": "Calvin Klein", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Calzedonia": {"name": "Calzedonia", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/calzedonia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1027874", "shop": "clothes"}, "addTags": {"brand": "Calzedonia", "brand:wikidata": "Q1027874", "brand:wikipedia": "en:Calzedonia", "name": "Calzedonia", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Camaïeu": {"name": "Camaïeu", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/camaieu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2934647", "shop": "clothes"}, "addTags": {"brand": "Camaïeu", "brand:wikidata": "Q2934647", "brand:wikipedia": "en:Camaïeu (company)", "name": "Camaïeu", "shop": "clothes"}, "countryCodes": ["be", "cz", "fr", "it", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Camp David": {"name": "Camp David", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/CAMPDAVID.OFFICIAL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q50540636", "shop": "clothes"}, "addTags": {"brand": "Camp David", "brand:wikidata": "Q50540636", "brand:wikipedia": "en:Camp David (fashion)", "name": "Camp David", "shop": "clothes"}, "countryCodes": ["at", "de", "ee", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Canada Goose": {"name": "Canada Goose", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/canadagoose/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2988422", "shop": "clothes"}, "addTags": {"brand": "Canada Goose", "brand:wikidata": "Q2988422", "brand:wikipedia": "en:Canada Goose (clothing)", "name": "Canada Goose", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Carhartt": {"name": "Carhartt", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Carhartt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q527877", "shop": "clothes"}, "addTags": {"brand": "Carhartt", "brand:wikidata": "Q527877", "brand:wikipedia": "en:Carhartt", "clothes": "workwear", "name": "Carhartt", "shop": "clothes"}, "countryCodes": ["gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Carlings": {"name": "Carlings", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/carlingsofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10443115", "shop": "clothes"}, "addTags": {"brand": "Carlings", "brand:wikidata": "Q10443115", "brand:wikipedia": "no:Carlings", "name": "Carlings", "shop": "clothes"}, "countryCodes": ["at", "fi", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Caroll": {"name": "Caroll", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/carollparis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63063871", "shop": "clothes"}, "addTags": {"brand": "Caroll", "brand:wikidata": "Q63063871", "name": "Caroll", "shop": "clothes"}, "countryCodes": ["ch", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Carter's": {"name": "Carter's", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/carters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5047083", "shop": "clothes"}, "addTags": {"brand": "Carter's", "brand:wikidata": "Q5047083", "brand:wikipedia": "en:Carter's", "clothes": "children", "name": "Carter's", "shop": "clothes"}, "terms": ["carters babies and kids"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Catherines": {"name": "Catherines", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/CatherinesPlusSizes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64026208", "shop": "clothes"}, "addTags": {"brand": "Catherines", "brand:wikidata": "Q64026208", "clothes": "oversize;women", "name": "Catherines", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Cato": {"name": "Cato", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/CatoFashions/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16956136", "shop": "clothes"}, "addTags": {"brand": "Cato", "brand:wikidata": "Q16956136", "brand:wikipedia": "en:Cato Corporation", "clothes": "women", "name": "Cato", "official_name": "Cato Fashions", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Celio": {"name": "Celio", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/celioOFFICIAL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2672003", "shop": "clothes"}, "addTags": {"brand": "Celio", "brand:wikidata": "Q2672003", "brand:wikipedia": "en:Celio (retailer)", "name": "Celio", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Chanel": {"name": "Chanel", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/chanel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q218115", "shop": "clothes"}, "addTags": {"brand": "Chanel", "brand:wikidata": "Q218115", "brand:wikipedia": "en:Chanel", "name": "Chanel", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Charles Vögele": {"name": "Charles Vögele", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/charlesvoegeletiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1066326", "shop": "clothes"}, "addTags": {"brand": "Charles Vögele", "brand:wikidata": "Q1066326", "brand:wikipedia": "de:Charles Vögele Holding", "name": "Charles Vögele", "shop": "clothes", "short_name": "Vögele"}, "countryCodes": ["at", "be", "ch", "de", "hu", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Charlotte Russe": {"name": "Charlotte Russe", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/CharlotteRusse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5086126", "shop": "clothes"}, "addTags": {"brand": "Charlotte Russe", "brand:wikidata": "Q5086126", "brand:wikipedia": "en:Charlotte Russe (clothing retailer)", "name": "Charlotte Russe", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Charming Charlie": {"name": "Charming Charlie", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/CharmingCharlie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16829286", "shop": "clothes"}, "addTags": {"brand": "Charming Charlie", "brand:wikidata": "Q16829286", "brand:wikipedia": "en:Charming Charlie", "clothes": "women", "name": "Charming Charlie", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Chico's": {"name": "Chico's", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/LoveChicos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5096393", "shop": "clothes"}, "addTags": {"brand": "Chico's", "brand:wikidata": "Q5096393", "brand:wikipedia": "en:Chico's (clothing retailer)", "name": "Chico's", "shop": "clothes"}, "countryCodes": ["ar", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Christopher & Banks": {"name": "Christopher & Banks", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ChristopherandBanks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5111816", "shop": "clothes"}, "addTags": {"brand": "Christopher & Banks", "brand:wikidata": "Q5111816", "brand:wikipedia": "en:Christopher & Banks", "name": "Christopher & Banks", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Citi Trends": {"name": "Citi Trends", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/cititrends/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5122438", "shop": "clothes"}, "addTags": {"brand": "Citi Trends", "brand:wikidata": "Q5122438", "brand:wikipedia": "en:Citi Trends", "name": "Citi Trends", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/City Gear": {"name": "City Gear", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/citygear/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16958629", "shop": "clothes"}, "addTags": {"brand": "City Gear", "brand:wikidata": "Q16958629", "brand:wikipedia": "en:City Gear", "name": "City Gear", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Cleo": {"name": "Cleo", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/cleo.cafashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65947963", "shop": "clothes"}, "addTags": {"brand": "Cleo", "brand:wikidata": "Q65947963", "clothes": "women", "name": "Cleo", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Club Monaco": {"name": "Club Monaco", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/clubmonaco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2979949", "shop": "clothes"}, "addTags": {"brand": "Club Monaco", "brand:wikidata": "Q2979949", "brand:wikipedia": "en:Club Monaco", "name": "Club Monaco", "shop": "clothes"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Colin's": {"name": "Colin's", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ColinsLook/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28729658", "shop": "clothes"}, "addTags": {"brand": "Colin's", "brand:wikidata": "Q28729658", "name": "Colin's", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Colloseum": {"name": "Colloseum", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/mycolloseum/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15794685", "shop": "clothes"}, "addTags": {"brand": "Colloseum", "brand:wikidata": "Q15794685", "brand:wikipedia": "de:Colloseum", "name": "Colloseum", "shop": "clothes"}, "countryCodes": ["at", "cz", "de", "gr", "lv", "pl", "ru", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Columbia": {"name": "Columbia", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ColumbiaTurkey/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1112588", "shop": "clothes"}, "addTags": {"brand": "Columbia", "brand:wikidata": "Q1112588", "brand:wikipedia": "en:Columbia Sportswear", "name": "Columbia", "official_name": "Columbia Sportswear", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Cotton On": {"name": "Cotton On", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/cottonon.usa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5175717", "shop": "clothes"}, "addTags": {"brand": "Cotton On", "brand:wikidata": "Q5175717", "brand:wikipedia": "en:Cotton On Group", "name": "Cotton On", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Cropp": {"name": "Cropp", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/CroppGlobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9196793", "shop": "clothes"}, "addTags": {"brand": "Cropp", "brand:wikidata": "Q9196793", "brand:wikipedia": "pl:Cropp", "name": "Cropp", "shop": "clothes"}, "countryCodes": ["cs", "hu", "pl", "ro", "ru", "sk", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Cubus": {"name": "Cubus", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/cubusnorge/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3439593", "shop": "clothes"}, "addTags": {"brand": "Cubus", "brand:wikidata": "Q3439593", "brand:wikipedia": "no:Cubus", "name": "Cubus", "shop": "clothes"}, "countryCodes": ["de", "fi", "lv", "no", "pl", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/DXL Men's Apparel": {"name": "DXL Men's Apparel", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/DestinationXL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61981830", "shop": "clothes"}, "addTags": {"brand": "DXL Men's Apparel", "brand:wikidata": "Q61981830", "clothes": "oversize;men", "name": "DXL Men's Apparel", "shop": "clothes", "short_name": "DXL"}, "countryCodes": ["us"], "terms": ["casual male xl"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Damart": {"name": "Damart", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/damartuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3012602", "shop": "clothes"}, "addTags": {"brand": "Damart", "brand:wikidata": "Q3012602", "brand:wikipedia": "en:Damart", "name": "Damart", "shop": "clothes"}, "countryCodes": ["be", "fr", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Darjeeling": {"name": "Darjeeling", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/448386535254508/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3016203", "shop": "clothes"}, "addTags": {"brand": "Darjeeling", "brand:wikidata": "Q3016203", "brand:wikipedia": "fr:Darjeeling (lingerie)", "clothes": "underwear", "name": "Darjeeling", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/David's Bridal": {"name": "David's Bridal", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/davidsbridal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5230388", "shop": "clothes"}, "addTags": {"brand": "David's Bridal", "brand:wikidata": "Q5230388", "brand:wikipedia": "en:David's Bridal", "clothes": "wedding", "name": "David's Bridal", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Desigual": {"name": "Desigual", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/desigual6/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q83750", "shop": "clothes"}, "addTags": {"brand": "Desigual", "brand:wikidata": "Q83750", "brand:wikipedia": "en:Desigual", "name": "Desigual", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Destination Maternity": {"name": "Destination Maternity", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/DestinationMat/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q79051770", "shop": "clothes"}, "addTags": {"brand": "Destination Maternity", "brand:wikidata": "Q79051770", "clothes": "maternity", "name": "Destination Maternity", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Devred": {"name": "Devred", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Devred1902.Officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3025542", "shop": "clothes"}, "addTags": {"brand": "Devred", "brand:wikidata": "Q3025542", "brand:wikipedia": "fr:Devred 1902", "name": "Devred", "shop": "clothes"}, "countryCodes": ["be", "fr", "ma"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Diesel": {"name": "Diesel", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Diesel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q158285", "shop": "clothes"}, "addTags": {"brand": "Diesel", "brand:wikidata": "Q158285", "brand:wikipedia": "en:Diesel (brand)", "name": "Diesel", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Dior": {"name": "Dior", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Dior/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q542767", "shop": "clothes"}, "addTags": {"brand": "Dior", "brand:wikidata": "Q542767", "brand:wikipedia": "en:Christian Dior (fashion house)", "name": "Dior", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Diverse": {"name": "Diverse", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/DiverseSystem/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11694298", "shop": "clothes"}, "addTags": {"brand": "Diverse", "brand:wikidata": "Q11694298", "brand:wikipedia": "pl:Diverse", "name": "Diverse", "shop": "clothes"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Dolce & Gabbana": {"name": "Dolce & Gabbana", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/DolceGabbana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q214480", "shop": "clothes"}, "addTags": {"brand": "Dolce & Gabbana", "brand:wikidata": "Q214480", "brand:wikipedia": "en:Dolce & Gabbana", "name": "Dolce & Gabbana", "shop": "clothes"}, "terms": ["d and g", "dg", "dolce and gabana", "dolce and gabanna", "dolce and gabbanna", "dolce y gabana", "dolce y gabanna", "dolce y gabbana", "dolce y gabbanna"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Dorothy Perkins": {"name": "Dorothy Perkins", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/dorothyperkins/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5298588", "shop": "clothes"}, "addTags": {"brand": "Dorothy Perkins", "brand:wikidata": "Q5298588", "brand:wikipedia": "en:Dorothy Perkins", "name": "Dorothy Perkins", "shop": "clothes"}, "countryCodes": ["gb", "gg", "ie", "im"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Dress Barn": {"name": "Dress Barn", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/dressbarn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65090033", "shop": "clothes"}, "addTags": {"brand": "Dress Barn", "brand:wikidata": "Q65090033", "brand:wikipedia": "en:DressBarn", "name": "Dress Barn", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Dressmann": {"name": "Dressmann", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/dressmann.no/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3357081", "shop": "clothes"}, "addTags": {"brand": "Dressmann", "brand:wikidata": "Q3357081", "brand:wikipedia": "en:Dressmann", "name": "Dressmann", "shop": "clothes"}, "countryCodes": ["at", "fi", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Du Pareil au Même": {"name": "Du Pareil au Même", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3040318", "shop": "clothes"}, "addTags": {"brand": "Du Pareil au Même", "brand:wikidata": "Q3040318", "brand:wikipedia": "fr:Du Pareil au Même (entreprise)", "name": "Du Pareil au Même", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Dynamite": {"name": "Dynamite", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Dynamite/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3117385", "shop": "clothes"}, "addTags": {"brand": "Dynamite", "brand:wikidata": "Q3117385", "brand:wikipedia": "en:Groupe Dynamite", "clothes": "women", "name": "Dynamite", "shop": "clothes"}, "countryCodes": ["ca", "jo", "ku", "sa", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Eddie Bauer": {"name": "Eddie Bauer", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/EddieBauer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q842174", "shop": "clothes"}, "addTags": {"brand": "Eddie Bauer", "brand:wikidata": "Q842174", "brand:wikipedia": "en:Eddie Bauer", "name": "Eddie Bauer", "shop": "clothes"}, "countryCodes": ["ca", "jp", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Edinburgh Woollen Mill": {"name": "Edinburgh Woollen Mill", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/edinburghwoollenmill/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16834657", "shop": "clothes"}, "addTags": {"brand": "Edinburgh Woollen Mill", "brand:wikidata": "Q16834657", "brand:wikipedia": "en:Edinburgh Woollen Mill", "name": "Edinburgh Woollen Mill", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Engbers": {"name": "Engbers", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/engbers.maennermode/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1290088", "shop": "clothes"}, "addTags": {"brand": "Engbers", "brand:wikidata": "Q1290088", "brand:wikipedia": "de:Engbers", "name": "Engbers", "shop": "clothes"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Ermenegildo Zegna": {"name": "Ermenegildo Zegna", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ZegnaOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1355904", "shop": "clothes"}, "addTags": {"brand": "Ermenegildo Zegna", "brand:wikidata": "Q1355904", "brand:wikipedia": "en:Ermenegildo Zegna", "clothes": "men", "name": "Ermenegildo Zegna", "shop": "clothes", "short_name": "Zegna"}, "countryCodes": ["ch", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Ernsting's family": {"name": "Ernsting's family", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Ernstingsfamily/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1361016", "shop": "clothes"}, "addTags": {"brand": "Ernsting's family", "brand:wikidata": "Q1361016", "brand:wikipedia": "de:Ernsting’s family", "name": "Ernsting's family", "shop": "clothes"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Esprit": {"name": "Esprit", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/esprit/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q532746", "shop": "clothes"}, "addTags": {"brand": "Esprit", "brand:wikidata": "Q532746", "brand:wikipedia": "en:Esprit Holdings", "name": "Esprit", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Etam": {"name": "Etam", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/etam/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3059202", "shop": "clothes"}, "addTags": {"brand": "Etam", "brand:wikidata": "Q3059202", "brand:wikipedia": "en:Etam Développement", "name": "Etam", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Evans": {"name": "Evans", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Evans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5415877", "shop": "clothes"}, "addTags": {"brand": "Evans", "brand:wikidata": "Q5415877", "brand:wikipedia": "en:Evans (retailer)", "clothes": "women", "name": "Evans", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Evereve": {"name": "Evereve", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/evereveofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q69891997", "shop": "clothes"}, "addTags": {"brand": "Evereve", "brand:wikidata": "Q69891997", "clothes": "women", "name": "Evereve", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Express": {"name": "Express", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/express/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1384784", "shop": "clothes"}, "addTags": {"brand": "Express", "brand:wikidata": "Q1384784", "brand:wikipedia": "en:Express, Inc.", "name": "Express", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Fairweather": {"name": "Fairweather", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/fairweatherclothing/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64861806", "shop": "clothes"}, "addTags": {"brand": "Fairweather", "brand:wikidata": "Q64861806", "clothes": "women", "name": "Fairweather", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Fat Face": {"name": "Fat Face", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/fatfaceusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5437186", "shop": "clothes"}, "addTags": {"brand": "Fat Face", "brand:wikidata": "Q5437186", "brand:wikipedia": "en:Fat Face", "name": "Fat Face", "shop": "clothes"}, "countryCodes": ["gb", "gg", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Fendi": {"name": "Fendi", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Fendi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q926575", "shop": "clothes"}, "addTags": {"brand": "Fendi", "brand:wikidata": "Q926575", "brand:wikipedia": "en:Fendi", "name": "Fendi", "shop": "clothes"}, "countryCodes": ["fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Forever 21": {"name": "Forever 21", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Forever21/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1060537", "shop": "clothes"}, "addTags": {"brand": "Forever 21", "brand:wikidata": "Q1060537", "brand:wikipedia": "en:Forever 21", "name": "Forever 21", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Francesca's": {"name": "Francesca's", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/francescascollectionsboutique/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72982331", "shop": "clothes"}, "addTags": {"brand": "Francesca's", "brand:wikidata": "Q72982331", "clothes": "women;luxury", "name": "Francesca's", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Free People": {"name": "Free People", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/FreePeople/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5499945", "shop": "clothes"}, "addTags": {"brand": "Free People", "brand:wikidata": "Q5499945", "brand:wikipedia": "en:Free People", "name": "Free People", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/French Connection": {"name": "French Connection", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/FrenchConnectionUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q306457", "shop": "clothes"}, "addTags": {"brand": "French Connection", "brand:wikidata": "Q306457", "brand:wikipedia": "en:French Connection (clothing)", "name": "French Connection", "shop": "clothes", "short_name": "FCUK"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Fussl": {"name": "Fussl", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/fussl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24266366", "shop": "clothes"}, "addTags": {"alt_name": "Fussl Modestraße", "brand": "Fussl", "brand:wikidata": "Q24266366", "brand:wikipedia": "de:Fussl Modestraße", "name": "Fussl", "shop": "clothes"}, "countryCodes": ["at", "de"], "terms": ["fussl modestraße"], "matchScore": 2, "suggestion": true}, - "shop/clothes/G-Star Raw": {"name": "G-Star Raw", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/gstarraw/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1484081", "shop": "clothes"}, "addTags": {"brand": "G-Star Raw", "brand:wikidata": "Q1484081", "brand:wikipedia": "en:G-Star Raw", "name": "G-Star Raw", "shop": "clothes"}, "terms": ["g-star"], "matchScore": 2, "suggestion": true}, - "shop/clothes/GU": {"name": "GU", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/g.u.japan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5512642", "shop": "clothes"}, "addTags": {"brand": "GU", "brand:wikidata": "Q5512642", "brand:wikipedia": "en:GU (retailer)", "name": "GU", "shop": "clothes"}, "countryCodes": ["cl", "jp", "tw"], "terms": ["ジーユー"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gabe's": {"name": "Gabe's", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/GabesStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5515554", "shop": "clothes"}, "addTags": {"brand": "Gabe's", "brand:wikidata": "Q5515554", "brand:wikipedia": "en:Gabe's", "name": "Gabe's", "shop": "clothes"}, "countryCodes": ["us"], "terms": ["gabriel brothers"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gant": {"name": "Gant", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/gant/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1493667", "shop": "clothes"}, "addTags": {"brand": "Gant", "brand:wikidata": "Q1493667", "brand:wikipedia": "en:Gant (retailer)", "name": "Gant", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gap": {"name": "Gap", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/GapJapan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q420822", "shop": "clothes"}, "addTags": {"brand": "Gap", "brand:wikidata": "Q420822", "brand:wikipedia": "en:Gap Inc.", "name": "Gap", "shop": "clothes"}, "terms": ["the gap"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gap Factory": {"name": "Gap Factory", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/GapJapan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q420822", "shop": "clothes"}, "addTags": {"brand": "Gap", "brand:wikidata": "Q420822", "brand:wikipedia": "en:Gap Inc.", "name": "Gap Factory", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gap Kids": {"name": "Gap Kids", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/GapJapan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q420822", "shop": "clothes"}, "addTags": {"brand": "Gap", "brand:wikidata": "Q420822", "brand:wikipedia": "en:Gap Inc.", "name": "Gap Kids", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Garage": {"name": "Garage", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Garage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5521860", "shop": "clothes"}, "addTags": {"brand": "Garage", "brand:wikidata": "Q5521860", "brand:wikipedia": "en:Garage (clothing retailer)", "clothes": "women", "name": "Garage", "shop": "clothes"}, "countryCodes": ["am", "ca", "jo", "om", "qa", "sa", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gerry Weber": {"name": "Gerry Weber", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/gerryweber.global/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q873447", "shop": "clothes"}, "addTags": {"brand": "Gerry Weber", "brand:wikidata": "Q873447", "brand:wikipedia": "en:Gerry Weber", "name": "Gerry Weber", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gina Laura": {"name": "Gina Laura", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ginalaura.mode/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2700576", "shop": "clothes"}, "addTags": {"brand": "Gina Laura", "brand:wikidata": "Q2700576", "brand:wikipedia": "de:Gina Laura", "name": "Gina Laura", "shop": "clothes"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gloria Jeans": {"name": "Gloria Jeans", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/gloriajeanscorp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4139985", "shop": "clothes"}, "addTags": {"brand": "Gloria Jeans", "brand:wikidata": "Q4139985", "brand:wikipedia": "ru:Глория Джинс", "name": "Gloria Jeans", "shop": "clothes"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Grain de Malice": {"name": "Grain de Malice", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/GraindeMaliceFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66757157", "shop": "clothes"}, "addTags": {"brand": "Grain de Malice", "brand:wikidata": "Q66757157", "name": "Grain de Malice", "shop": "clothes", "short_name": "GDM"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gucci": {"name": "Gucci", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/GUCCI/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q178516", "shop": "clothes"}, "addTags": {"brand": "Gucci", "brand:wikidata": "Q178516", "brand:wikipedia": "en:Gucci", "name": "Gucci", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Guess": {"name": "Guess", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/GUESS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2470307", "shop": "clothes"}, "addTags": {"brand": "Guess", "brand:wikidata": "Q2470307", "brand:wikipedia": "en:Guess (clothing)", "name": "Guess", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gymboree": {"name": "Gymboree", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Gymboree/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4039771", "shop": "clothes"}, "addTags": {"brand": "Gymboree", "brand:wikidata": "Q4039771", "brand:wikipedia": "en:Gymboree", "name": "Gymboree", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Gémo": {"name": "Gémo", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Gemo.Officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3122954", "shop": "clothes"}, "addTags": {"brand": "Gémo", "brand:wikidata": "Q3122954", "brand:wikipedia": "fr:Gémo", "name": "Gémo", "shop": "clothes"}, "countryCodes": ["be", "ch", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/H&M": {"name": "H&M", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/hmhongkong/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q188326", "shop": "clothes"}, "addTags": {"brand": "H&M", "brand:wikidata": "Q188326", "brand:wikipedia": "en:H&M", "name": "H&M", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Haggar": {"name": "Haggar", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/HaggarClothingCo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5638669", "shop": "clothes"}, "addTags": {"alt_name": "Haggar Clothing Co.", "brand": "Haggar", "brand:wikidata": "Q5638669", "brand:wikipedia": "en:Haggar Clothing", "name": "Haggar", "shop": "clothes"}, "countryCodes": ["us"], "terms": ["haggar clothing"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Hallhuber": {"name": "Hallhuber", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/hallhuberfashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1571714", "shop": "clothes"}, "addTags": {"brand": "Hallhuber", "brand:wikidata": "Q1571714", "brand:wikipedia": "de:Hallhuber (Bekleidungshaus)", "name": "Hallhuber", "shop": "clothes"}, "countryCodes": ["at", "ch", "de", "lu", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Hanna Andersson": {"name": "Hanna Andersson", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ShopHannaAndersson/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17460802", "shop": "clothes"}, "addTags": {"brand": "Hanna Andersson", "brand:wikidata": "Q17460802", "brand:wikipedia": "en:Hanna Andersson", "clothes": "baby;children;women", "name": "Hanna Andersson", "shop": "clothes"}, "countryCodes": ["us"], "terms": ["hanna anderssen"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Hermès": {"name": "Hermès", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/hermesusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q843887", "shop": "clothes"}, "addTags": {"brand": "Hermès", "brand:wikidata": "Q843887", "brand:wikipedia": "en:Hermès", "name": "Hermès", "shop": "clothes"}, "countryCodes": ["ch", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Hobbs": {"name": "Hobbs", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/hobbslondon/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25108740", "shop": "clothes"}, "addTags": {"brand": "Hobbs", "brand:wikidata": "Q25108740", "name": "Hobbs", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Hollister": {"name": "Hollister", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/hollister/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1257477", "shop": "clothes"}, "addTags": {"brand": "Hollister", "brand:wikidata": "Q1257477", "brand:wikipedia": "en:Hollister Co.", "name": "Hollister", "official_name": "Hollister Co.", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Honeys": {"name": "Honeys", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/HoneysOnline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11326592", "shop": "clothes"}, "addTags": {"brand": "Honeys", "brand:en": "Honeys", "brand:ja": "ハニーズ", "brand:wikidata": "Q11326592", "brand:wikipedia": "ja:ハニーズ", "clothes": "women", "name": "Honeys", "name:en": "Honeys", "name:ja": "ハニーズ", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Hot Topic": {"name": "Hot Topic", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/hottopic/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9294032", "shop": "clothes"}, "addTags": {"brand": "Hot Topic", "brand:wikidata": "Q9294032", "brand:wikipedia": "en:Hot Topic", "name": "Hot Topic", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/House": {"name": "House", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/house.clothing/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9294202", "shop": "clothes"}, "addTags": {"brand": "House", "brand:wikidata": "Q9294202", "brand:wikipedia": "pl:House (marka)", "name": "House", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Hugo Boss": {"name": "Hugo Boss", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/hugoboss/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q491627", "shop": "clothes"}, "addTags": {"brand": "Hugo Boss", "brand:wikidata": "Q491627", "brand:wikipedia": "en:Hugo Boss", "name": "Hugo Boss", "shop": "clothes", "short_name": "Boss"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Hunkemöller": {"name": "Hunkemöller", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/hunkemoller/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2604175", "shop": "clothes"}, "addTags": {"brand": "Hunkemöller", "brand:wikidata": "Q2604175", "brand:wikipedia": "en:Hunkemöller", "name": "Hunkemöller", "shop": "clothes"}, "countryCodes": ["at", "be", "de", "dk", "es", "lu", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/IZOD": {"name": "IZOD", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/IZOD/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17152556", "shop": "clothes"}, "addTags": {"brand": "IZOD", "brand:wikidata": "Q17152556", "brand:wikipedia": "en:Izod", "clothes": "men", "name": "IZOD", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Indochino": {"name": "Indochino", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/indochino/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64448127", "shop": "clothes"}, "addTags": {"brand": "Indochino", "brand:wikidata": "Q64448127", "brand:wikipedia": "en:Indochino", "clothes": "suits", "name": "Indochino", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Intimissimi": {"name": "Intimissimi", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/intimissimi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q305404", "shop": "clothes"}, "addTags": {"brand": "Intimissimi", "brand:wikidata": "Q305404", "brand:wikipedia": "en:Intimissimi", "clothes": "underwear", "name": "Intimissimi", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/J.Crew": {"name": "J.Crew", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/jcrew/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5370765", "shop": "clothes"}, "addTags": {"brand": "J.Crew", "brand:wikidata": "Q5370765", "brand:wikipedia": "en:J.Crew", "clothes": "men;women;children", "name": "J.Crew", "shop": "clothes"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/J.Jill": {"name": "J.Jill", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/JJillStyle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64448268", "shop": "clothes"}, "addTags": {"brand": "J.Jill", "brand:wikidata": "Q64448268", "brand:wikipedia": "en:J.Jill", "clothes": "women", "name": "J.Jill", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/JBC": {"name": "JBC", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/jbcfashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2671470", "shop": "clothes"}, "addTags": {"brand": "JBC", "brand:wikidata": "Q2671470", "brand:wikipedia": "nl:JBC", "name": "JBC", "shop": "clothes"}, "countryCodes": ["be", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Jacadi": {"name": "Jacadi", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/JacadiUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3157058", "shop": "clothes"}, "addTags": {"brand": "Jacadi", "brand:wikidata": "Q3157058", "brand:wikipedia": "fr:Jacadi", "clothes": "children", "name": "Jacadi", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Jack & Jones": {"name": "Jack & Jones", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/jackandjonesUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6077665", "shop": "clothes"}, "addTags": {"brand": "Jack & Jones", "brand:wikidata": "Q6077665", "brand:wikipedia": "en:Jack & Jones", "name": "Jack & Jones", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Jack Wills": {"name": "Jack Wills", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/jackwills/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6115814", "shop": "clothes"}, "addTags": {"brand": "Jack Wills", "brand:wikidata": "Q6115814", "brand:wikipedia": "en:Jack Wills", "name": "Jack Wills", "shop": "clothes"}, "countryCodes": ["ae", "gb", "hk", "ie", "kw", "lb", "mo", "sg", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Janie & Jack": {"name": "Janie & Jack", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/janieandjack/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64449634", "shop": "clothes"}, "addTags": {"brand": "Janie & Jack", "brand:wikidata": "Q64449634", "brand:wikipedia": "en:Janie & Jack", "clothes": "children", "name": "Janie & Jack", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Jeans Fritz": {"name": "Jeans Fritz", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/JeansFritz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1686071", "shop": "clothes"}, "addTags": {"brand": "Jeans Fritz", "brand:wikidata": "Q1686071", "brand:wikipedia": "de:Jeans Fritz", "name": "Jeans Fritz", "shop": "clothes"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Jennyfer": {"name": "Jennyfer", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/brand.jennyfer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3177174", "shop": "clothes"}, "addTags": {"brand": "Jennyfer", "brand:wikidata": "Q3177174", "brand:wikipedia": "fr:Jennyfer", "name": "Jennyfer", "shop": "clothes"}, "countryCodes": ["fr", "it", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Jet": {"name": "Jet", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/JetGoodForLife/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61995123", "shop": "clothes"}, "addTags": {"brand": "Jet", "brand:wikidata": "Q61995123", "name": "Jet", "shop": "clothes"}, "countryCodes": ["za"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Jigsaw": {"name": "Jigsaw", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/InsideJigsaw/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6192383", "shop": "clothes"}, "addTags": {"brand": "Jigsaw", "brand:wikidata": "Q6192383", "brand:wikipedia": "en:Jigsaw (clothing retailer)", "name": "Jigsaw", "shop": "clothes"}, "countryCodes": ["au", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/JoJo Maman Bébé": {"name": "JoJo Maman Bébé", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/jojomamanbebe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6204064", "shop": "clothes"}, "addTags": {"brand": "JoJo Maman Bébé", "brand:wikidata": "Q6204064", "clothes": "maternity;babies", "name": "JoJo Maman Bébé", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/JoS. A. Bank": {"name": "JoS. A. Bank", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Jos.A.Bank.Clothiers.Inc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6204078", "shop": "clothes"}, "addTags": {"brand": "JoS. A. Bank", "brand:wikidata": "Q6204078", "brand:wikipedia": "en:JoS. A. Bank Clothiers", "name": "JoS. A. Bank", "official_name": "Jos. A. Bank Clothiers", "shop": "clothes"}, "countryCodes": ["us"], "terms": ["jos bank", "joseph a bank"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Jockey": {"name": "Jockey", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Jockey/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q534235", "shop": "clothes"}, "addTags": {"brand": "Jockey", "brand:wikidata": "Q534235", "brand:wikipedia": "en:Jockey International", "name": "Jockey", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Joe Fresh": {"name": "Joe Fresh", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/joefresh/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6209926", "shop": "clothes"}, "addTags": {"brand": "Joe Fresh", "brand:wikidata": "Q6209926", "brand:wikipedia": "en:Joe Fresh", "name": "Joe Fresh", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Joules": {"name": "Joules", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Joules/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25351738", "shop": "clothes"}, "addTags": {"brand": "Joules", "brand:wikidata": "Q25351738", "brand:wikipedia": "en:Joules (clothing)", "name": "Joules", "shop": "clothes"}, "countryCodes": ["gb", "gg", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Jules": {"name": "Jules", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Julescom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3188386", "shop": "clothes"}, "addTags": {"brand": "Jules", "brand:wikidata": "Q3188386", "brand:wikipedia": "fr:Jules (enseigne)", "clothes": "men", "name": "Jules", "shop": "clothes"}, "countryCodes": ["be", "fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Justice": {"name": "Justice", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Justice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7857512", "shop": "clothes"}, "addTags": {"brand": "Justice", "brand:wikidata": "Q7857512", "brand:wikipedia": "en:Tween Brands", "name": "Justice", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/K&Ö": {"name": "K&Ö", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/KastnerOehler/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1735474", "shop": "clothes"}, "addTags": {"alt_name": "Kastner & Öhler", "brand": "K&Ö", "brand:wikidata": "Q1735474", "brand:wikipedia": "de:Kastner & Öhler", "name": "K&Ö", "shop": "clothes"}, "countryCodes": ["at"], "terms": ["kastner & öhler"], "matchScore": 2, "suggestion": true}, - "shop/clothes/KappAhl": {"name": "KappAhl", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/kappahl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4349016", "shop": "clothes"}, "addTags": {"brand": "KappAhl", "brand:wikidata": "Q4349016", "brand:wikipedia": "sv:Kappahl", "name": "KappAhl", "shop": "clothes"}, "countryCodes": ["fi", "no", "pl", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Karen Millen": {"name": "Karen Millen", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/karenmillen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6369889", "shop": "clothes"}, "addTags": {"brand": "Karen Millen", "brand:wikidata": "Q6369889", "name": "Karen Millen", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Kate Spade New York": {"name": "Kate Spade New York", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/katespadeny/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6375797", "shop": "clothes"}, "addTags": {"brand": "Kate Spade New York", "brand:wikidata": "Q6375797", "brand:wikipedia": "en:Kate Spade New York", "name": "Kate Spade New York", "shop": "clothes", "short_name": "Kate Spade"}, "countryCodes": ["ca", "us"], "terms": ["kate spade ny"], "matchScore": 2, "suggestion": true}, - "shop/clothes/KiK": {"name": "KiK", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/kik/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q883965", "shop": "clothes"}, "addTags": {"brand": "KiK", "brand:wikidata": "Q883965", "brand:wikipedia": "en:KiK", "name": "KiK", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Kiabi": {"name": "Kiabi", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Kiabi.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3196299", "shop": "clothes"}, "addTags": {"brand": "Kiabi", "brand:wikidata": "Q3196299", "brand:wikipedia": "fr:Kiabi", "name": "Kiabi", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Kookaï": {"name": "Kookaï", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1783759", "shop": "clothes"}, "addTags": {"brand": "Kookaï", "brand:wikidata": "Q1783759", "brand:wikipedia": "fr:Kookaï", "name": "Kookaï", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Koton": {"name": "Koton", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/koton/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6063877", "shop": "clothes"}, "addTags": {"brand": "Koton", "brand:wikidata": "Q6063877", "brand:wikipedia": "tr:Koton", "name": "Koton", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/LC Waikiki": {"name": "LC Waikiki", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/lcwaikiki/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3205965", "shop": "clothes"}, "addTags": {"brand": "LC Waikiki", "brand:wikidata": "Q3205965", "brand:wikipedia": "fr:LC Waikiki", "name": "LC Waikiki", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/La Senza": {"name": "La Senza", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/lasenza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3212802", "shop": "clothes"}, "addTags": {"brand": "La Senza", "brand:wikidata": "Q3212802", "brand:wikipedia": "en:La Senza", "name": "La Senza", "shop": "clothes"}, "countryCodes": ["ca", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/La Vie en Rose": {"name": "La Vie en Rose", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/lavieenrose/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4950452", "shop": "clothes"}, "addTags": {"brand": "La Vie en Rose", "brand:wikidata": "Q4950452", "brand:wikipedia": "en:Boutique La Vie en Rose", "clothes": "underwear;women", "name": "La Vie en Rose", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Lacoste": {"name": "Lacoste", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Lacoste/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q309031", "shop": "clothes"}, "addTags": {"brand": "Lacoste", "brand:wikidata": "Q309031", "brand:wikipedia": "en:Lacoste", "name": "Lacoste", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Lane Bryant": {"name": "Lane Bryant", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/LaneBryant/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6485350", "shop": "clothes"}, "addTags": {"brand": "Lane Bryant", "brand:wikidata": "Q6485350", "brand:wikipedia": "en:Lane Bryant", "clothes": "oversize;women", "name": "Lane Bryant", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Laura": {"name": "Laura", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/StyleLaura/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6498590", "shop": "clothes"}, "addTags": {"brand": "Laura", "brand:wikidata": "Q6498590", "brand:wikipedia": "en:Laura (clothing retailer)", "clothes": "women", "name": "Laura", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Laura Ashley": {"name": "Laura Ashley", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/LauraAshleyUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1523089", "shop": "clothes"}, "addTags": {"brand": "Laura Ashley", "brand:wikidata": "Q1523089", "brand:wikipedia": "en:Laura Ashley plc", "name": "Laura Ashley", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Le Château": {"name": "Le Château", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/lechateaustyle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6506731", "shop": "clothes"}, "addTags": {"brand": "Le Château", "brand:wikidata": "Q6506731", "brand:wikipedia": "en:Le Château", "name": "Le Château", "shop": "clothes"}, "countryCodes": ["ae", "ca", "sa"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Le Slip Français": {"name": "Le Slip Français", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/leslipfrancais/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q14594793", "shop": "clothes"}, "addTags": {"brand": "Le Slip Français", "brand:wikidata": "Q14594793", "brand:wikipedia": "fr:Le Slip Français", "name": "Le Slip Français", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Le Temps des Cerises": {"name": "Le Temps des Cerises", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/truffautfr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3162640", "shop": "clothes"}, "addTags": {"brand": "Le Temps des Cerises", "brand:wikidata": "Q3162640", "brand:wikipedia": "fr:Le Temps des cerises (vêtements)", "name": "Le Temps des Cerises", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Levi's": {"name": "Levi's", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Levis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q127962", "shop": "clothes"}, "addTags": {"brand": "Levi's", "brand:wikidata": "Q127962", "brand:wikipedia": "en:Levi Strauss & Co.", "clothes": "denim;men;women", "name": "Levi's", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Lids": {"name": "Lids", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Lids/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19841609", "shop": "clothes"}, "addTags": {"brand": "Lids", "brand:wikidata": "Q19841609", "brand:wikipedia": "en:Lids (store)", "clothes": "hats", "name": "Lids", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Lindex": {"name": "Lindex", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/lindex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1786717", "shop": "clothes"}, "addTags": {"brand": "Lindex", "brand:wikidata": "Q1786717", "brand:wikipedia": "en:Lindex", "name": "Lindex", "shop": "clothes"}, "countryCodes": ["cz", "ee", "fi", "no", "se", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Loft": {"name": "Loft", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/LOFT/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62075137", "shop": "clothes"}, "addTags": {"brand": "Loft", "brand:wikidata": "Q62075137", "clothes": "women", "name": "Loft", "shop": "clothes"}, "terms": ["ann taylor loft", "the loft"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Loro Piana": {"name": "Loro Piana", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/LoroPiana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1686544", "shop": "clothes"}, "addTags": {"brand": "Loro Piana", "brand:wikidata": "Q1686544", "brand:wikipedia": "en:Loro Piana", "name": "Loro Piana", "shop": "clothes"}, "countryCodes": ["fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Louis Vuitton": {"name": "Louis Vuitton", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/LouisVuitton/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q191485", "shop": "clothes"}, "addTags": {"brand": "Louis Vuitton", "brand:wikidata": "Q191485", "brand:wikipedia": "en:Louis Vuitton", "name": "Louis Vuitton", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Lowes": {"name": "Lowes", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/lowesaustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6693996", "shop": "clothes"}, "addTags": {"brand": "Lowes", "brand:wikidata": "Q6693996", "brand:wikipedia": "en:Lowes Menswear", "name": "Lowes", "shop": "clothes"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Lucky Brand": {"name": "Lucky Brand", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/luckybrand/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6697865", "shop": "clothes"}, "addTags": {"brand": "Lucky Brand", "brand:wikidata": "Q6697865", "brand:wikipedia": "en:Lucky Brand Jeans", "name": "Lucky Brand", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": ["lucky brand jeans"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Lululemon": {"name": "Lululemon", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/lululemon/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6702957", "shop": "clothes"}, "addTags": {"brand": "Lululemon", "brand:wikidata": "Q6702957", "brand:wikipedia": "en:Lululemon Athletica", "clothes": "men;women", "name": "Lululemon", "official_name": "Lululemon Athletica", "shop": "clothes"}, "countryCodes": ["au", "ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/M&Co": {"name": "M&Co", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/mandcofashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6711808", "shop": "clothes"}, "addTags": {"brand": "M&Co", "brand:wikidata": "Q6711808", "brand:wikipedia": "en:M&Co.", "name": "M&Co", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/MO": {"name": "MO", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/mo.online.pt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q51882883", "shop": "clothes"}, "addTags": {"brand": "MO", "brand:wikidata": "Q51882883", "brand:wikipedia": "pt:MO (lojas)", "name": "MO", "shop": "clothes"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/MS Mode": {"name": "MS Mode", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/530141134025649/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6718117", "shop": "clothes"}, "addTags": {"brand": "MS Mode", "brand:wikidata": "Q6718117", "brand:wikipedia": "nl:MS Mode", "name": "MS Mode", "shop": "clothes"}, "countryCodes": ["be", "de", "fr", "lu", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Madewell": {"name": "Madewell", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/madewell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64026213", "shop": "clothes"}, "addTags": {"brand": "Madewell", "brand:wikidata": "Q64026213", "clothes": "men;women", "name": "Madewell", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Maidenform": {"name": "Maidenform", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/MaidenformBrands/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6735419", "shop": "clothes"}, "addTags": {"brand": "Maidenform", "brand:wikidata": "Q6735419", "brand:wikipedia": "en:Maidenform", "clothes": "underwear;women", "name": "Maidenform", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Mandee": {"name": "Mandee", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/shopmandee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q71035705", "shop": "clothes"}, "addTags": {"brand": "Mandee", "brand:wikidata": "Q71035705", "clothes": "women", "name": "Mandee", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Mango": {"name": "Mango", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/mango.com/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q136503", "shop": "clothes"}, "addTags": {"brand": "Mango", "brand:wikidata": "Q136503", "brand:wikipedia": "en:Mango (retailer)", "name": "Mango", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Marc O'Polo": {"name": "Marc O'Polo", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/marcopoloru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1892752", "shop": "clothes"}, "addTags": {"brand": "Marc O'Polo", "brand:wikidata": "Q1892752", "brand:wikipedia": "en:Marc O'Polo", "name": "Marc O'Polo", "shop": "clothes"}, "countryCodes": ["at", "be", "ch", "de", "nl", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Marimekko": {"name": "Marimekko", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/marimekkodesignhouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q534903", "shop": "clothes"}, "addTags": {"brand": "Marimekko", "brand:wikidata": "Q534903", "brand:wikipedia": "fi:Marimekko", "name": "Marimekko", "shop": "clothes"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Mark Formelle": {"name": "Mark Formelle", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/markformelle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25381083", "shop": "clothes"}, "addTags": {"brand": "Mark Formelle", "brand:wikidata": "Q25381083", "brand:wikipedia": "ru:Mark Formelle", "name": "Mark Formelle", "shop": "clothes"}, "countryCodes": ["by", "kz", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Mark's": {"name": "Mark's", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/MarksClothing/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6766373", "shop": "clothes"}, "addTags": {"brand": "Mark's", "brand:wikidata": "Q6766373", "brand:wikipedia": "en:Mark's", "name": "Mark's", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Massimo Dutti": {"name": "Massimo Dutti", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/MassimoDuttiOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q788231", "shop": "clothes"}, "addTags": {"brand": "Massimo Dutti", "brand:wikidata": "Q788231", "brand:wikipedia": "en:Massimo Dutti", "name": "Massimo Dutti", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Matalan": {"name": "Matalan", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/shopmatalan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12061509", "shop": "clothes"}, "addTags": {"brand": "Matalan", "brand:wikidata": "Q12061509", "brand:wikipedia": "en:Matalan", "name": "Matalan", "shop": "clothes"}, "countryCodes": ["ae", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Maurices": {"name": "Maurices", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/maurices/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6793571", "shop": "clothes"}, "addTags": {"brand": "Maurices", "brand:wikidata": "Q6793571", "brand:wikipedia": "en:Maurices", "clothes": "women", "name": "Maurices", "shop": "clothes"}, "countryCodes": ["ca", "fr", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Max Mara": {"name": "Max Mara", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/maxmara/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1151774", "shop": "clothes"}, "addTags": {"brand": "Max Mara", "brand:wikidata": "Q1151774", "brand:wikipedia": "en:Max Mara", "name": "Max Mara", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Melanie Lyne": {"name": "Melanie Lyne", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/StyleMelanieLyne/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64861470", "shop": "clothes"}, "addTags": {"brand": "Melanie Lyne", "brand:wikidata": "Q64861470", "clothes": "women", "name": "Melanie Lyne", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Men's Wearhouse": {"name": "Men's Wearhouse", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/MensWearhouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57405513", "shop": "clothes"}, "addTags": {"brand": "Men's Wearhouse", "brand:wikidata": "Q57405513", "brand:wikipedia": "en:Men's Wearhouse", "clothes": "suits", "name": "Men's Wearhouse", "shop": "clothes"}, "countryCodes": ["us"], "terms": ["mens warehouse"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Mexx": {"name": "Mexx", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Mexx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1837290", "shop": "clothes"}, "addTags": {"brand": "Mexx", "brand:wikidata": "Q1837290", "brand:wikipedia": "en:Mexx", "name": "Mexx", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Michael Kors": {"name": "Michael Kors", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/MichaelKors/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19572998", "shop": "clothes"}, "addTags": {"brand": "Michael Kors", "brand:wikidata": "Q19572998", "brand:wikipedia": "en:Capri Holdings", "name": "Michael Kors", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Milavitsa": {"name": "Milavitsa", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Milavitsa.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3575265", "shop": "clothes"}, "addTags": {"brand": "Milavitsa", "brand:be": "Мілавіца", "brand:ru": "Милавица", "brand:wikidata": "Q3575265", "brand:wikipedia": "be:Мілавіца (кампанія)", "clothes": "underwear", "name": "Milavitsa", "name:be": "Мілавіца", "name:ru": "Милавица", "shop": "clothes"}, "countryCodes": ["be"], "terms": ["милавица", "мілавіца"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Mise au Green": {"name": "Mise au Green", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Mise%20Au%20Green.gif&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3316239", "shop": "clothes"}, "addTags": {"brand": "Mise au Green", "brand:wikidata": "Q3316239", "brand:wikipedia": "fr:Mise au green", "name": "Mise au Green", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Miss Selfridge": {"name": "Miss Selfridge", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/missselfridge/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6877374", "shop": "clothes"}, "addTags": {"brand": "Miss Selfridge", "brand:wikidata": "Q6877374", "brand:wikipedia": "en:Miss Selfridge", "clothes": "women", "name": "Miss Selfridge", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Monsoon": {"name": "Monsoon", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/MonsoonUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65007501", "shop": "clothes"}, "addTags": {"brand": "Monsoon", "brand:wikidata": "Q65007501", "name": "Monsoon", "shop": "clothes"}, "countryCodes": ["gb", "gg", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Moores": {"name": "Moores", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/MooresClothing/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6908309", "shop": "clothes"}, "addTags": {"brand": "Moores", "brand:wikidata": "Q6908309", "brand:wikipedia": "en:Moores", "clothes": "men", "name": "Moores", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Moss Bros": {"name": "Moss Bros", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Moss/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6916538", "shop": "clothes"}, "addTags": {"brand": "Moss Bros", "brand:wikidata": "Q6916538", "brand:wikipedia": "en:Moss Bros Group", "clothes": "men", "name": "Moss Bros", "shop": "clothes"}, "countryCodes": ["ae", "gb", "gg", "je"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Motherhood Maternity": {"name": "Motherhood Maternity", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/motherhoodmaternity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q79051139", "shop": "clothes"}, "addTags": {"brand": "Motherhood Maternity", "brand:wikidata": "Q79051139", "clothes": "maternity", "name": "Motherhood Maternity", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Mr Price": {"name": "Mr Price", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/MRPFASHION/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6929120", "shop": "clothes"}, "addTags": {"brand": "Mr Price", "brand:wikidata": "Q6929120", "brand:wikipedia": "en:Mr. Price", "name": "Mr Price", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Mustang": {"name": "Mustang", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/mustangjeans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q221562", "shop": "clothes"}, "addTags": {"brand": "Mustang", "brand:wikidata": "Q221562", "brand:wikipedia": "de:Mustang (Jeans)", "name": "Mustang", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/NKD": {"name": "NKD", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/nkd.friends/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q927272", "shop": "clothes"}, "addTags": {"brand": "NKD", "brand:wikidata": "Q927272", "brand:wikipedia": "de:NKD", "name": "NKD", "shop": "clothes"}, "countryCodes": ["at", "de", "it", "si"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Naf Naf": {"name": "Naf Naf", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/nafnaf.com/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3334188", "shop": "clothes"}, "addTags": {"brand": "Naf Naf", "brand:wikidata": "Q3334188", "brand:wikipedia": "fr:Naf Naf", "name": "Naf Naf", "shop": "clothes"}, "countryCodes": ["ch", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Napapijri": {"name": "Napapijri", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2782017", "shop": "clothes"}, "addTags": {"brand": "Napapijri", "brand:wikidata": "Q2782017", "brand:wikipedia": "en:Napapijri", "name": "Napapijri", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Nautica": {"name": "Nautica", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Nautica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6981479", "shop": "clothes"}, "addTags": {"brand": "Nautica", "brand:wikidata": "Q6981479", "brand:wikipedia": "en:Nautica (clothing company)", "name": "Nautica", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/New Look": {"name": "New Look", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/newlook/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12063852", "shop": "clothes"}, "addTags": {"brand": "New Look", "brand:wikidata": "Q12063852", "brand:wikipedia": "en:New Look (company)", "name": "New Look", "shop": "clothes"}, "countryCodes": ["be", "de", "fr", "gb", "ie", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/New York & Company": {"name": "New York & Company", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/NewYorkandCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7012977", "shop": "clothes"}, "addTags": {"brand": "New York & Company", "brand:wikidata": "Q7012977", "brand:wikipedia": "en:New York & Company", "name": "New York & Company", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/New Yorker": {"name": "New Yorker", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/NewYorker.Fashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q706421", "shop": "clothes"}, "addTags": {"brand": "New Yorker", "brand:wikidata": "Q706421", "brand:wikipedia": "en:New Yorker (clothing)", "name": "New Yorker", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Next": {"name": "Next", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/nextofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q246655", "shop": "clothes"}, "addTags": {"brand": "Next", "brand:wikidata": "Q246655", "brand:wikipedia": "en:Next plc", "name": "Next", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Nike": {"name": "Nike", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/nike/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q483915", "shop": "clothes"}, "addTags": {"brand": "Nike", "brand:wikidata": "Q483915", "brand:wikipedia": "en:Nike, Inc.", "name": "Nike", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Nordstrom Rack": {"name": "Nordstrom Rack", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/NordstromRack/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21463374", "shop": "clothes"}, "addTags": {"brand": "Nordstrom Rack", "brand:wikidata": "Q21463374", "brand:wikipedia": "en:Nordstrom Rack", "name": "Nordstrom Rack", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Northern Reflections": {"name": "Northern Reflections", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/northernreflections/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65947797", "shop": "clothes"}, "addTags": {"brand": "Northern Reflections", "brand:wikidata": "Q65947797", "name": "Northern Reflections", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/OVS": {"name": "OVS", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/OVSGlobalPage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2042514", "shop": "clothes"}, "addTags": {"brand": "OVS", "brand:wikidata": "Q2042514", "brand:wikipedia": "en:OVS (company)", "name": "OVS", "shop": "clothes"}, "countryCodes": ["at", "ch", "fr", "it", "si"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Oasis": {"name": "Oasis", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/oasisfashions/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64532852", "shop": "clothes"}, "addTags": {"brand": "Oasis", "brand:wikidata": "Q64532852", "name": "Oasis", "shop": "clothes"}, "countryCodes": ["es", "gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Okaïdi": {"name": "Okaïdi", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/OkaidiWorld/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3350027", "shop": "clothes"}, "addTags": {"brand": "Okaïdi", "brand:wikidata": "Q3350027", "brand:wikipedia": "fr:Okaïdi", "name": "Okaïdi", "shop": "clothes"}, "countryCodes": ["be", "ch", "es", "fr", "it", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Old Navy": {"name": "Old Navy", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/oldnavy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2735242", "shop": "clothes"}, "addTags": {"brand": "Old Navy", "brand:wikidata": "Q2735242", "brand:wikipedia": "en:Old Navy", "name": "Old Navy", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Only": {"name": "Only", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ONLY/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61799370", "shop": "clothes"}, "addTags": {"brand": "Only", "brand:wikidata": "Q61799370", "name": "Only", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Orchestra": {"name": "Orchestra", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/orchestraUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28042940", "shop": "clothes"}, "addTags": {"brand": "Orchestra", "brand:wikidata": "Q28042940", "brand:wikipedia": "fr:Orchestra Prémaman", "name": "Orchestra", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Orsay": {"name": "Orsay", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/orsay/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q883245", "shop": "clothes"}, "addTags": {"brand": "Orsay", "brand:wikidata": "Q883245", "brand:wikipedia": "de:Orsay (Modeunternehmen)", "name": "Orsay", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Outfit": {"name": "Outfit", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/OutfitFashionUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7112061", "shop": "clothes"}, "addTags": {"brand": "Outfit", "brand:wikidata": "Q7112061", "brand:wikipedia": "en:Outfit (retailer)", "name": "Outfit", "shop": "clothes"}, "countryCodes": ["de", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Oysho": {"name": "Oysho", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/OYSHO/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3327046", "shop": "clothes"}, "addTags": {"brand": "Oysho", "brand:wikidata": "Q3327046", "brand:wikipedia": "en:Oysho", "name": "Oysho", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/PacSun": {"name": "PacSun", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/pacsun/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7121857", "shop": "clothes"}, "addTags": {"brand": "PacSun", "brand:wikidata": "Q7121857", "brand:wikipedia": "en:PacSun", "name": "PacSun", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Palmers": {"name": "Palmers", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/palmers.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1509985", "shop": "clothes"}, "addTags": {"brand": "Palmers", "brand:wikidata": "Q1509985", "brand:wikipedia": "de:Palmers", "name": "Palmers", "shop": "clothes"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Peacocks": {"name": "Peacocks", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/peacocksclothing/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7157762", "shop": "clothes"}, "addTags": {"brand": "Peacocks", "brand:wikidata": "Q7157762", "brand:wikipedia": "en:Peacocks (clothing)", "name": "Peacocks", "shop": "clothes"}, "countryCodes": ["cy", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Peek & Cloppenburg": {"name": "Peek & Cloppenburg", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/peekcloppenburg/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2066959", "shop": "clothes"}, "addTags": {"brand": "Peek & Cloppenburg", "brand:wikidata": "Q2066959", "brand:wikipedia": "en:Peek & Cloppenburg", "name": "Peek & Cloppenburg", "shop": "clothes"}, "countryCodes": ["at", "be", "de", "nl", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Penningtons": {"name": "Penningtons", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/penningtons/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16956527", "shop": "clothes"}, "addTags": {"brand": "Penningtons", "brand:wikidata": "Q16956527", "brand:wikipedia": "en:Penningtons", "clothes": "women", "name": "Penningtons", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Pep": {"name": "Pep", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/PEPSocial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7166182", "shop": "clothes"}, "addTags": {"brand": "Pep", "brand:wikidata": "Q7166182", "brand:wikipedia": "en:Pep (store)", "name": "Pep", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Pep&Co": {"name": "Pep&Co", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/pepandco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24908166", "shop": "clothes"}, "addTags": {"brand": "Pep&Co", "brand:wikidata": "Q24908166", "brand:wikipedia": "en:Pep&Co", "name": "Pep&Co", "shop": "clothes"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Pepco": {"name": "Pepco", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/PEPCOpl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11815580", "shop": "clothes"}, "addTags": {"brand": "Pepco", "brand:wikidata": "Q11815580", "brand:wikipedia": "pl:Pepco", "name": "Pepco", "shop": "clothes"}, "countryCodes": ["cz", "hu", "pl", "ro", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Pepe Jeans": {"name": "Pepe Jeans", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/PepeJeans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q426992", "shop": "clothes"}, "addTags": {"brand": "Pepe Jeans", "brand:wikidata": "Q426992", "brand:wikipedia": "en:Pepe Jeans", "name": "Pepe Jeans", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Petit Bateau": {"name": "Petit Bateau", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/petitbateauus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3377090", "shop": "clothes"}, "addTags": {"brand": "Petit Bateau", "brand:wikidata": "Q3377090", "brand:wikipedia": "en:Petit Bateau", "name": "Petit Bateau", "shop": "clothes"}, "countryCodes": ["be", "de", "fr", "gb", "it", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Phase Eight": {"name": "Phase Eight", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/phaseeight/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17020730", "shop": "clothes"}, "addTags": {"brand": "Phase Eight", "brand:wikidata": "Q17020730", "brand:wikipedia": "en:Phase Eight", "name": "Phase Eight", "shop": "clothes"}, "countryCodes": ["ch", "de", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Piazza Italia": {"name": "Piazza Italia", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/piazzaitaliaofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3902241", "shop": "clothes"}, "addTags": {"brand": "Piazza Italia", "brand:wikidata": "Q3902241", "brand:wikipedia": "it:Piazza Italia (azienda)", "name": "Piazza Italia", "shop": "clothes"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Pierre Cardin": {"name": "Pierre Cardin", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/PIERRECARDINOFFICIAL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22921009", "shop": "clothes"}, "addTags": {"brand": "Pierre Cardin", "brand:wikidata": "Q22921009", "name": "Pierre Cardin", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Pimkie": {"name": "Pimkie", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Pimkie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1758066", "shop": "clothes"}, "addTags": {"brand": "Pimkie", "brand:wikidata": "Q1758066", "brand:wikipedia": "en:Pimkie", "name": "Pimkie", "shop": "clothes"}, "countryCodes": ["at", "be", "de", "es", "fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Pink": {"name": "Pink", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/vspink/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20716793", "shop": "clothes"}, "addTags": {"brand": "Pink", "brand:wikidata": "Q20716793", "brand:wikipedia": "en:Pink (Victoria's Secret)", "clothes": "underwear;women", "name": "Pink", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Plato's Closet": {"name": "Plato's Closet", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/platoscloset/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61779112", "shop": "clothes"}, "addTags": {"brand": "Plato's Closet", "brand:wikidata": "Q61779112", "name": "Plato's Closet", "second_hand": "only", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Polo Ralph Lauren": {"name": "Polo Ralph Lauren", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/RalphLauren/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1641437", "shop": "clothes"}, "addTags": {"brand": "Polo Ralph Lauren", "brand:wikidata": "Q1641437", "brand:wikipedia": "en:Ralph Lauren Corporation", "name": "Polo Ralph Lauren", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Prada": {"name": "Prada", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Prada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q193136", "shop": "clothes"}, "addTags": {"brand": "Prada", "brand:wikidata": "Q193136", "brand:wikipedia": "en:Prada", "name": "Prada", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Primark": {"name": "Primark", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Primark/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q137023", "shop": "clothes"}, "addTags": {"brand": "Primark", "brand:wikidata": "Q137023", "brand:wikipedia": "en:Primark", "name": "Primark", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Promod": {"name": "Promod", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Promod/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3407429", "shop": "clothes"}, "addTags": {"brand": "Promod", "brand:wikidata": "Q3407429", "brand:wikipedia": "en:Promod", "name": "Promod", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Pull & Bear": {"name": "Pull & Bear", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/pullandbear/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q691029", "shop": "clothes"}, "addTags": {"brand": "Pull & Bear", "brand:wikidata": "Q691029", "brand:wikipedia": "en:Pull&Bear", "name": "Pull & Bear", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Puma": {"name": "Puma", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/PUMA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q157064", "shop": "clothes"}, "addTags": {"brand": "Puma", "brand:wikidata": "Q157064", "brand:wikipedia": "en:Puma (brand)", "name": "Puma", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Quiksilver": {"name": "Quiksilver", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/quiksilver/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1329463", "shop": "clothes"}, "addTags": {"brand": "Quiksilver", "brand:wikidata": "Q1329463", "brand:wikipedia": "en:Quiksilver", "name": "Quiksilver", "shop": "clothes"}, "terms": ["quicksilver"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Quiz": {"name": "Quiz", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/887970746378727426/apda4Qe9_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q29995941", "shop": "clothes"}, "addTags": {"brand": "Quiz", "brand:wikidata": "Q29995941", "brand:wikipedia": "en:Quiz (clothing)", "clothes": "women", "name": "Quiz", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/RW&CO.": {"name": "RW&CO.", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/RWandCO/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65965663", "shop": "clothes"}, "addTags": {"brand": "RW&CO.", "brand:wikidata": "Q65965663", "clothes": "women;men", "name": "RW&CO.", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Rainbow": {"name": "Rainbow", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/RainbowApparel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7284708", "shop": "clothes"}, "addTags": {"brand": "Rainbow", "brand:wikidata": "Q7284708", "brand:wikipedia": "en:Rainbow Shops", "name": "Rainbow", "shop": "clothes"}, "countryCodes": ["de", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Reebok": {"name": "Reebok", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ReebokUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q466183", "shop": "clothes"}, "addTags": {"brand": "Reebok", "brand:wikidata": "Q466183", "brand:wikipedia": "en:Reebok", "name": "Reebok", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Reiss": {"name": "Reiss", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Reiss/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7310479", "shop": "clothes"}, "addTags": {"brand": "Reiss", "brand:wikidata": "Q7310479", "brand:wikipedia": "en:Reiss (brand)", "name": "Reiss", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Reitmans": {"name": "Reitmans", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/reitmans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7310506", "shop": "clothes"}, "addTags": {"brand": "Reitmans", "brand:wikidata": "Q7310506", "brand:wikipedia": "en:Reitmans", "name": "Reitmans", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Reserved": {"name": "Reserved", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Reserved/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21809354", "shop": "clothes"}, "addTags": {"brand": "Reserved", "brand:wikidata": "Q21809354", "brand:wikipedia": "en:Reserved", "name": "Reserved", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Ricki's": {"name": "Ricki's", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Rickis.Sizes0to18/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65947929", "shop": "clothes"}, "addTags": {"brand": "Ricki's", "brand:wikidata": "Q65947929", "clothes": "women", "name": "Ricki's", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Riu Paris": {"name": "Riu Paris", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/riuparisofficiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16644311", "shop": "clothes"}, "addTags": {"brand": "Riu Paris", "brand:wikidata": "Q16644311", "brand:wikipedia": "fr:RIU Paris", "clothers": "women", "name": "Riu Paris", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/River Island": {"name": "River Island", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/riverisland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2670328", "shop": "clothes"}, "addTags": {"brand": "River Island", "brand:wikidata": "Q2670328", "brand:wikipedia": "en:River Island", "name": "River Island", "shop": "clothes"}, "countryCodes": ["gb", "ie", "im", "nl", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Robert Graham": {"name": "Robert Graham", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/robertgrahamnyc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18390679", "shop": "clothes"}, "addTags": {"brand": "Robert Graham", "brand:wikidata": "Q18390679", "brand:wikipedia": "en:Robert Graham (fashion brand)", "clothes": "men", "name": "Robert Graham", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Roots": {"name": "Roots", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/roots/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7366633", "shop": "clothes"}, "addTags": {"brand": "Roots", "brand:wikidata": "Q7366633", "brand:wikipedia": "en:Roots Canada", "name": "Roots", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Saint Laurent": {"name": "Saint Laurent", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ysl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2282172", "shop": "clothes"}, "addTags": {"alt_name": "Yves Saint Laurent", "brand": "Saint Laurent", "brand:wikidata": "Q2282172", "brand:wikipedia": "en:Yves Saint Laurent (brand)", "name": "Saint Laurent", "shop": "clothes", "short_name": "YSL"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Saltrock": {"name": "Saltrock", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/saltrocksoul/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7406195", "shop": "clothes"}, "addTags": {"brand": "Saltrock", "brand:wikidata": "Q7406195", "brand:wikipedia": "en:Saltrock", "name": "Saltrock", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Sandro": {"name": "Sandro", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/sandrofrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3472022", "shop": "clothes"}, "addTags": {"brand": "Sandro", "brand:wikidata": "Q3472022", "brand:wikipedia": "fr:Sandro (mode)", "name": "Sandro", "shop": "clothes"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Scotch & Soda": {"name": "Scotch & Soda", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FScotch%20and%20Soda%20logo.gif&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17141914", "shop": "clothes"}, "addTags": {"brand": "Scotch & Soda", "brand:wikidata": "Q17141914", "brand:wikipedia": "en:Scotch and Soda (clothing)", "name": "Scotch & Soda", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Sela": {"name": "Sela", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/sela.shop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62075111", "shop": "clothes"}, "addTags": {"brand": "Sela", "brand:wikidata": "Q62075111", "name": "Sela", "shop": "clothes"}, "countryCodes": ["kg", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Sergent Major": {"name": "Sergent Major", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/sergent.major.officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62521738", "shop": "clothes"}, "addTags": {"brand": "Sergent Major", "brand:wikidata": "Q62521738", "brand:wikipedia": "fr:Sergent Major (entreprise)", "clothes": "babies;children", "name": "Sergent Major", "shop": "clothes"}, "countryCodes": ["be", "de", "es", "fr", "gb", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Sisley": {"name": "Sisley", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Sisley/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12054325", "shop": "clothes"}, "addTags": {"brand": "Sisley", "brand:wikidata": "Q12054325", "brand:wikipedia": "cs:Sisley", "name": "Sisley", "shop": "clothes"}, "countryCodes": ["at", "ch", "de", "hr", "it", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Slaters": {"name": "Slaters", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Slatermenswear/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7538912", "shop": "clothes"}, "addTags": {"brand": "Slaters", "brand:wikidata": "Q7538912", "brand:wikipedia": "en:Slater Menswear", "clothes": "suits", "name": "Slaters", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Soma": {"name": "Soma", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/SomaIntimates/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q69882213", "shop": "clothes"}, "addTags": {"alt_name": "Soma Intimates", "brand": "Soma", "brand:wikidata": "Q69882213", "clothes": "underwear;women", "name": "Soma", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Spanx": {"name": "Spanx", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/SPANX/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1932886", "shop": "clothes"}, "addTags": {"brand": "Spanx", "brand:wikidata": "Q1932886", "brand:wikipedia": "en:Spanx", "clothes": "underwear", "name": "Spanx", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Springfield": {"name": "Springfield", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Springfield/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q958209", "shop": "clothes"}, "addTags": {"brand": "Springfield", "brand:wikidata": "Q958209", "brand:wikipedia": "es:Springfield (cadena de tiendas)", "name": "Springfield", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Stefanel": {"name": "Stefanel", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Stefanel.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2338087", "shop": "clothes"}, "addTags": {"brand": "Stefanel", "brand:wikidata": "Q2338087", "brand:wikipedia": "ro:Stefanel (companie)", "name": "Stefanel", "shop": "clothes"}, "countryCodes": ["at", "de", "fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Stitches": {"name": "Stitches", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/stitchescanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7617652", "shop": "clothes"}, "addTags": {"brand": "Stitches", "brand:wikidata": "Q7617652", "brand:wikipedia": "en:Stitches (store)", "name": "Stitches", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Stradivarius": {"name": "Stradivarius", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/stradivas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3322945", "shop": "clothes"}, "addTags": {"brand": "Stradivarius", "brand:wikidata": "Q3322945", "brand:wikipedia": "en:Stradivarius (clothing brand)", "name": "Stradivarius", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Street One": {"name": "Street One", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/MyStreetOne/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61997265", "shop": "clothes"}, "addTags": {"brand": "Street One", "brand:wikidata": "Q61997265", "name": "Street One", "shop": "clothes"}, "countryCodes": ["at", "be", "ch", "de", "dk", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Suburbia": {"name": "Suburbia", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/moda.suburbia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6134992", "shop": "clothes"}, "addTags": {"brand": "Suburbia", "brand:wikidata": "Q6134992", "brand:wikipedia": "en:Suburbia (department store)", "name": "Suburbia", "shop": "clothes"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Superdry": {"name": "Superdry", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/SuperdryUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1684445", "shop": "clothes"}, "addTags": {"brand": "Superdry", "brand:wikidata": "Q1684445", "brand:wikipedia": "en:Superdry", "name": "Superdry", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Suzy Shier": {"name": "Suzy Shier", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/SuzyShierCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65464976", "shop": "clothes"}, "addTags": {"brand": "Suzy Shier", "brand:wikidata": "Q65464976", "clothes": "women", "name": "Suzy Shier", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/T.M.Lewin": {"name": "T.M.Lewin", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/T.M.Lewin/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16933755", "shop": "clothes"}, "addTags": {"brand": "T.M.Lewin", "brand:wikidata": "Q16933755", "brand:wikipedia": "en:T. M. Lewin", "name": "T.M.Lewin", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Takko": {"name": "Takko", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/TakkoFashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1371302", "shop": "clothes"}, "addTags": {"brand": "Takko", "brand:wikidata": "Q1371302", "brand:wikipedia": "de:Takko", "name": "Takko", "shop": "clothes"}, "countryCodes": ["at", "cz", "de", "hu", "nl"], "terms": ["takko fashion"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Talbots": {"name": "Talbots", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/TALBOTS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7679064", "shop": "clothes"}, "addTags": {"brand": "Talbots", "brand:wikidata": "Q7679064", "brand:wikipedia": "en:Talbots", "name": "Talbots", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Tally Weijl": {"name": "Tally Weijl", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/TALLYWEiJL.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q689695", "shop": "clothes"}, "addTags": {"brand": "Tally Weijl", "brand:wikidata": "Q689695", "brand:wikipedia": "en:Tally Weijl", "name": "Tally Weijl", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Tape à l'Œil": {"name": "Tape à l'Œil", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/tape.a.loeil.worldwide/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30749175", "shop": "clothes"}, "addTags": {"brand": "Tape à l'Œil", "brand:wikidata": "Q30749175", "brand:wikipedia": "fr:Tape à l'œil", "clothes": "children", "name": "Tape à l'Œil", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Tati": {"name": "Tati", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Tati/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3516026", "shop": "clothes"}, "addTags": {"brand": "Tati", "brand:wikidata": "Q3516026", "brand:wikipedia": "fr:Tati (entreprise)", "name": "Tati", "shop": "clothes"}, "countryCodes": ["dz", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Ted Baker": {"name": "Ted Baker", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/TedbakerUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2913458", "shop": "clothes"}, "addTags": {"brand": "Ted Baker", "brand:wikidata": "Q2913458", "brand:wikipedia": "en:Ted Baker", "name": "Ted Baker", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Tezenis": {"name": "Tezenis", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/tezenis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28056374", "shop": "clothes"}, "addTags": {"brand": "Tezenis", "brand:wikidata": "Q28056374", "name": "Tezenis", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/The Children's Place": {"name": "The Children's Place", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/childrensplace/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3520257", "shop": "clothes"}, "addTags": {"alt_name": "Children's Place", "brand": "The Children's Place", "brand:wikidata": "Q3520257", "brand:wikipedia": "en:The Children's Place", "name": "The Children's Place", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/The Kooples": {"name": "The Kooples", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/thekooples/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3521493", "shop": "clothes"}, "addTags": {"brand": "The Kooples", "brand:wikidata": "Q3521493", "brand:wikipedia": "fr:The Kooples", "name": "The Kooples", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/The North Face": {"name": "The North Face", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/thenorthface/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q152784", "shop": "clothes"}, "addTags": {"alt_name": "North Face", "brand": "The North Face", "brand:wikidata": "Q152784", "brand:wikipedia": "en:The North Face", "name": "The North Face", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/The Sting": {"name": "The Sting", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/thesting.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2518794", "shop": "clothes"}, "addTags": {"brand": "The Sting", "brand:wikidata": "Q2518794", "brand:wikipedia": "nl:The Sting Companies", "name": "The Sting", "shop": "clothes"}, "countryCodes": ["be", "de", "gb", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Thyme Maternity": {"name": "Thyme Maternity", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ThymeMaternity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17033572", "shop": "clothes"}, "addTags": {"brand": "Thyme Maternity", "brand:wikidata": "Q17033572", "brand:wikipedia": "en:Thyme Maternity", "clothes": "maternity", "name": "Thyme Maternity", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Tillys": {"name": "Tillys", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Tillys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7802889", "shop": "clothes"}, "addTags": {"brand": "Tillys", "brand:wikidata": "Q7802889", "brand:wikipedia": "en:Tillys", "clothes": "children;men;women", "name": "Tillys", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Timberland": {"name": "Timberland", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/timberland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1539185", "shop": "clothes"}, "addTags": {"brand": "Timberland", "brand:wikidata": "Q1539185", "brand:wikipedia": "en:The Timberland Company", "name": "Timberland", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Tip Top Tailors": {"name": "Tip Top Tailors", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/TipTopTailors/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7808781", "shop": "clothes"}, "addTags": {"brand": "Tip Top Tailors", "brand:wikidata": "Q7808781", "brand:wikipedia": "en:Tip Top Tailors", "clothes": "men", "name": "Tip Top Tailors", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Tom Tailor": {"name": "Tom Tailor", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/tomtailor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q571206", "shop": "clothes"}, "addTags": {"brand": "Tom Tailor", "brand:wikidata": "Q571206", "brand:wikipedia": "en:Tom Tailor", "name": "Tom Tailor", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Tommy Bahama": {"name": "Tommy Bahama", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/tommybahama/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3531299", "shop": "clothes"}, "addTags": {"brand": "Tommy Bahama", "brand:wikidata": "Q3531299", "brand:wikipedia": "en:Tommy Bahama", "name": "Tommy Bahama", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Tommy Hilfiger": {"name": "Tommy Hilfiger", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/tommyhilfiger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q634881", "shop": "clothes"}, "addTags": {"brand": "Tommy Hilfiger", "brand:wikidata": "Q634881", "brand:wikipedia": "en:Tommy Hilfiger (company)", "name": "Tommy Hilfiger", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Topman": {"name": "Topman", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/topmanus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1090880", "shop": "clothes"}, "addTags": {"brand": "Topman", "brand:wikidata": "Q1090880", "brand:wikipedia": "en:Topman", "clothes": "men", "name": "Topman", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Topshop": {"name": "Topshop", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/227518370711659/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1893576", "shop": "clothes"}, "addTags": {"brand": "Topshop", "brand:wikidata": "Q1893576", "brand:wikipedia": "en:Topshop", "clothes": "women", "name": "Topshop", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Torrid": {"name": "Torrid", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Torrid/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7827120", "shop": "clothes"}, "addTags": {"brand": "Torrid", "brand:wikidata": "Q7827120", "brand:wikipedia": "en:Torrid (clothing retailer)", "name": "Torrid", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Tory Burch": {"name": "Tory Burch", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/toryburch/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19988222", "shop": "clothes"}, "addTags": {"brand": "Tory Burch", "brand:wikidata": "Q19988222", "brand:wikipedia": "en:Tory Burch (company)", "name": "Tory Burch", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Triumph": {"name": "Triumph", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/TriumphInternationalUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q671216", "shop": "clothes"}, "addTags": {"brand": "Triumph", "brand:wikidata": "Q671216", "brand:wikipedia": "en:Triumph International", "name": "Triumph", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Truworths": {"name": "Truworths", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/TruworthsFashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24233998", "shop": "clothes"}, "addTags": {"brand": "Truworths", "brand:wikidata": "Q24233998", "brand:wikipedia": "en:Truworths", "name": "Truworths", "shop": "clothes"}, "countryCodes": ["za"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/UNTUCKit": {"name": "UNTUCKit", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/UNTUCKit/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28207006", "shop": "clothes"}, "addTags": {"brand": "UNTUCKit", "brand:wikidata": "Q28207006", "brand:wikipedia": "en:Untuckit", "name": "UNTUCKit", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/USC": {"name": "USC", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/uscfashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7866331", "shop": "clothes"}, "addTags": {"brand": "USC", "brand:wikidata": "Q7866331", "brand:wikipedia": "en:USC (clothing retailer)", "name": "USC", "shop": "clothes"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Ulla Popken": {"name": "Ulla Popken", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/ulla.popken/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2475146", "shop": "clothes"}, "addTags": {"brand": "Ulla Popken", "brand:wikidata": "Q2475146", "brand:wikipedia": "en:Ulla Popken", "name": "Ulla Popken", "shop": "clothes"}, "countryCodes": ["at", "be", "ch", "de", "fr", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Under Armour": {"name": "Under Armour", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/UnderArmour/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2031485", "shop": "clothes"}, "addTags": {"brand": "Under Armour", "brand:wikidata": "Q2031485", "brand:wikipedia": "en:Under Armour", "clothes": "men;women", "name": "Under Armour", "shop": "clothes"}, "terms": ["under armor"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Uniqlo": {"name": "Uniqlo", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/uniqlo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26070", "shop": "clothes"}, "addTags": {"brand": "Uniqlo", "brand:wikidata": "Q26070", "brand:wikipedia": "en:Uniqlo", "name": "Uniqlo", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/United Colors of Benetton": {"name": "United Colors of Benetton", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/BenettonUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q817139", "shop": "clothes"}, "addTags": {"brand": "United Colors of Benetton", "brand:wikidata": "Q817139", "brand:wikipedia": "en:Benetton Group", "name": "United Colors of Benetton", "shop": "clothes", "short_name": "Benetton"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Urban Outfitters": {"name": "Urban Outfitters", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/urbanoutfitters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3552193", "shop": "clothes"}, "addTags": {"brand": "Urban Outfitters", "brand:wikidata": "Q3552193", "brand:wikipedia": "en:Urban Outfitters", "name": "Urban Outfitters", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/V.I.M.": {"name": "V.I.M.", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/VIM.STORES/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q71042495", "shop": "clothes"}, "addTags": {"brand": "V.I.M.", "brand:wikidata": "Q71042495", "clothes": "children;men;women", "name": "V.I.M.", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Van Heusen": {"name": "Van Heusen", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7913397", "shop": "clothes"}, "addTags": {"brand": "Van Heusen", "brand:wikidata": "Q7913397", "brand:wikipedia": "en:Van Heusen", "clothes": "men", "name": "Van Heusen", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Vero Moda": {"name": "Vero Moda", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/bestsellercom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q594721", "shop": "clothes"}, "addTags": {"brand": "Vero Moda", "brand:wikidata": "Q594721", "brand:wikipedia": "en:Bestseller (company)", "name": "Vero Moda", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Vertbaudet": {"name": "Vertbaudet", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/vertbaudet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2518521", "shop": "clothes"}, "addTags": {"brand": "Vertbaudet", "brand:wikidata": "Q2518521", "brand:wikipedia": "fr:Vertbaudet", "clothes": "children", "name": "Vertbaudet", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Victoria's Secret": {"name": "Victoria's Secret", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/victoriassecret/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q332477", "shop": "clothes"}, "addTags": {"brand": "Victoria's Secret", "brand:wikidata": "Q332477", "brand:wikipedia": "en:Victoria's Secret", "clothes": "underwear;women", "name": "Victoria's Secret", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Vilebrequin": {"name": "Vilebrequin", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/VILEBREQUIN/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3558391", "shop": "clothes"}, "addTags": {"brand": "Vilebrequin", "brand:wikidata": "Q3558391", "brand:wikipedia": "en:Vilebrequin", "clothes": "swimwear", "name": "Vilebrequin", "shop": "clothes"}, "countryCodes": ["fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Vineyard Vines": {"name": "Vineyard Vines", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/vineyardvines/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7932495", "shop": "clothes"}, "addTags": {"brand": "Vineyard Vines", "brand:wikidata": "Q7932495", "brand:wikipedia": "en:Vineyard Vines", "name": "Vineyard Vines", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Volcom": {"name": "Volcom", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Volcom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2021416", "shop": "clothes"}, "addTags": {"brand": "Volcom", "brand:wikidata": "Q2021416", "brand:wikipedia": "en:Volcom", "name": "Volcom", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/WE": {"name": "WE", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/wefashionstories/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1987861", "shop": "clothes"}, "addTags": {"brand": "WE", "brand:wikidata": "Q1987861", "brand:wikipedia": "en:WE (clothing)", "name": "WE", "shop": "clothes"}, "countryCodes": ["be", "ch", "de", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/WEGO": {"name": "WEGO", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/wego.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17193890", "shop": "clothes"}, "addTags": {"brand": "WEGO", "brand:en": "WEGO", "brand:ja": "ウィゴー", "brand:wikidata": "Q17193890", "brand:wikipedia": "ja:ウィゴー", "clothes": "men;women", "name": "WEGO", "name:en": "WEGO", "name:ja": "ウィゴー", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Wacoal": {"name": "Wacoal", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/wacoal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q909522", "shop": "clothes"}, "addTags": {"brand": "Wacoal", "brand:wikidata": "Q909522", "brand:wikipedia": "en:Wacoal", "clothes": "underwear", "name": "Wacoal", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Wallis": {"name": "Wallis", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Wallis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7963123", "shop": "clothes"}, "addTags": {"brand": "Wallis", "brand:wikidata": "Q7963123", "brand:wikipedia": "en:Wallis (retailer)", "name": "Wallis", "shop": "clothes"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Warehouse": {"name": "Warehouse", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/WarehouseFashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28135370", "shop": "clothes"}, "addTags": {"brand": "Warehouse", "brand:wikidata": "Q28135370", "name": "Warehouse", "shop": "clothes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Wellensteyn": {"name": "Wellensteyn", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62610375", "shop": "clothes"}, "addTags": {"brand": "Wellensteyn", "brand:wikidata": "Q62610375", "brand:wikipedia": "de:Wellensteyn", "name": "Wellensteyn", "shop": "clothes"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/West 49": {"name": "West 49", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/west49/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7984218", "shop": "clothes"}, "addTags": {"brand": "West 49", "brand:wikidata": "Q7984218", "brand:wikipedia": "en:West 49", "name": "West 49", "shop": "clothes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/White House Black Market": {"name": "White House Black Market", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/WhiteHouseBlackMarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7994858", "shop": "clothes"}, "addTags": {"brand": "White House Black Market", "brand:wikidata": "Q7994858", "brand:wikipedia": "en:White House Black Market", "name": "White House Black Market", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": ["white house | black market"], "matchScore": 2, "suggestion": true}, - "shop/clothes/White Stuff": {"name": "White Stuff", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/WhiteStuffUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7995442", "shop": "clothes"}, "addTags": {"brand": "White Stuff", "brand:wikidata": "Q7995442", "brand:wikipedia": "en:White Stuff Clothing", "name": "White Stuff", "shop": "clothes"}, "countryCodes": ["de", "dk", "gb", "gg"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Wibra": {"name": "Wibra", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/WibraBelgie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q943405", "shop": "clothes"}, "addTags": {"brand": "Wibra", "brand:wikidata": "Q943405", "brand:wikipedia": "en:Wibra", "name": "Wibra", "shop": "clothes"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Wilsons Leather": {"name": "Wilsons Leather", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/wilsonsleather/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8023296", "shop": "clothes"}, "addTags": {"brand": "Wilsons Leather", "brand:wikidata": "Q8023296", "brand:wikipedia": "en:Wilsons Leather", "clothes": "men;women", "name": "Wilsons Leather", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Windsor": {"name": "Windsor", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Windsorstore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72981668", "shop": "clothes"}, "addTags": {"brand": "Windsor", "brand:wikidata": "Q72981668", "clothes": "women", "name": "Windsor", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Winners": {"name": "Winners", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Winners/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q845257", "shop": "clothes"}, "addTags": {"brand": "Winners", "brand:wikidata": "Q845257", "brand:wikipedia": "en:Winners", "name": "Winners", "shop": "clothes"}, "countryCodes": ["ca", "es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Wolford": {"name": "Wolford", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/WolfordFashion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q431607", "shop": "clothes"}, "addTags": {"brand": "Wolford", "brand:wikidata": "Q431607", "brand:wikipedia": "en:Wolford", "name": "Wolford", "shop": "clothes"}, "countryCodes": ["at", "de", "fr", "gb", "it", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Women'secret": {"name": "Women'secret", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/WomenSecret/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16648226", "shop": "clothes"}, "addTags": {"brand": "Women'secret", "brand:wikidata": "Q16648226", "brand:wikipedia": "es:Women'secret", "clothes": "underwear;women", "name": "Women'secret", "shop": "clothes"}, "terms": ["women's secret"], "matchScore": 2, "suggestion": true}, - "shop/clothes/Woolworths": {"name": "Woolworths", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/WoolworthsSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8033997", "shop": "clothes"}, "addTags": {"brand": "Woolworths", "brand:wikidata": "Q8033997", "brand:wikipedia": "en:Woolworths Holdings Limited", "name": "Woolworths", "shop": "clothes"}, "countryCodes": ["za"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/XIOS": {"name": "XIOS", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/xiosamerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66149584", "shop": "clothes"}, "addTags": {"brand": "XIOS", "brand:wikidata": "Q66149584", "clothes": "men", "name": "XIOS", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/XXI Forever": {"name": "XXI Forever", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/Forever21/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1060537", "shop": "clothes"}, "addTags": {"brand": "Forever 21", "brand:wikidata": "Q1060537", "brand:wikipedia": "en:Forever 21", "name": "XXI Forever", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Yamamay": {"name": "Yamamay", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/YamamayOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2599214", "shop": "clothes"}, "addTags": {"brand": "Yamamay", "brand:wikidata": "Q2599214", "brand:wikipedia": "it:Yamamay", "name": "Yamamay", "shop": "clothes"}, "countryCodes": ["es", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Yours Clothing": {"name": "Yours Clothing", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/yoursclothingOFFICIAL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q84163322", "shop": "clothes"}, "addTags": {"brand": "Yours Clothing", "brand:wikidata": "Q84163322", "clothes": "women", "name": "Yours Clothing", "shop": "clothes"}, "countryCodes": ["de", "gb", "gg", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Zadig & Voltaire": {"name": "Zadig & Voltaire", "icon": "maki-clothing-store", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3574548", "shop": "clothes"}, "addTags": {"brand": "Zadig & Voltaire", "brand:wikidata": "Q3574548", "brand:wikipedia": "fr:Zadig & Voltaire", "name": "Zadig & Voltaire", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Zara": {"name": "Zara", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/zara/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q147662", "shop": "clothes"}, "addTags": {"brand": "Zara", "brand:wikidata": "Q147662", "brand:wikipedia": "en:Zara (retailer)", "name": "Zara", "shop": "clothes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Zeeman": {"name": "Zeeman", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/zeemantextielsupers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q184399", "shop": "clothes"}, "addTags": {"brand": "Zeeman", "brand:wikidata": "Q184399", "brand:wikipedia": "en:Zeeman (store)", "name": "Zeeman", "shop": "clothes"}, "countryCodes": ["be", "de", "fr", "lu", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/Zumiez": {"name": "Zumiez", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/zumiez/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8075252", "shop": "clothes"}, "addTags": {"brand": "Zumiez", "brand:wikidata": "Q8075252", "brand:wikipedia": "en:Zumiez", "name": "Zumiez", "shop": "clothes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/mister*lady": {"name": "mister*lady", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/misterlady.community/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18640136", "shop": "clothes"}, "addTags": {"brand": "mister*lady", "brand:wikidata": "Q18640136", "brand:wikipedia": "de:Mister*lady", "name": "mister*lady", "shop": "clothes"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/niko and ...": {"name": "niko and ...", "icon": "maki-clothing-store", "imageURL": "https://pbs.twimg.com/profile_images/898363331433570304/0CV5qtos_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11236730", "shop": "clothes"}, "addTags": {"brand": "niko and ...", "brand:en": "niko and ...", "brand:ja": "ニコアンド", "brand:wikidata": "Q11236730", "brand:wikipedia": "ja:niko and...", "clothes": "men;women", "name": "niko and ...", "name:en": "niko and ...", "name:ja": "ニコアンド", "shop": "clothes"}, "countryCodes": ["jp"], "terms": ["ニコアンド"], "matchScore": 2, "suggestion": true}, - "shop/clothes/rue21": {"name": "rue21", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/rue21/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7377762", "shop": "clothes"}, "addTags": {"brand": "rue21", "brand:wikidata": "Q7377762", "brand:wikipedia": "en:Rue21", "name": "rue21", "shop": "clothes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/s.Oliver": {"name": "s.Oliver", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/s.OliverGlobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q265056", "shop": "clothes"}, "addTags": {"brand": "s.Oliver", "brand:wikidata": "Q265056", "brand:wikipedia": "en:S.Oliver", "name": "s.Oliver", "shop": "clothes"}, "countryCodes": ["at", "be", "de", "fr", "hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/しまむら": {"name": "しまむら", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/shimamuragroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7758173", "shop": "clothes"}, "addTags": {"brand": "しまむら", "brand:en": "Shimamura", "brand:ja": "しまむら", "brand:wikidata": "Q7758173", "brand:wikipedia": "ja:しまむら", "clothes": "women", "name": "しまむら", "name:en": "Shimamura", "name:ja": "しまむら", "official_name": "ファッションセンターしまむら", "official_name:en": "Fashion Center Shimamura", "official_name:ja": "ファッションセンターしまむら", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/はるやま": {"name": "はるやま", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/haruyama.co.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11275918", "shop": "clothes"}, "addTags": {"brand": "はるやま", "brand:en": "Haruyama", "brand:ja": "はるやま", "brand:wikidata": "Q11275918", "brand:wikipedia": "ja:はるやま商事", "name": "はるやま", "name:en": "Haruyama", "name:ja": "はるやま", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/アベイル": {"name": "アベイル", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/avail.gr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11284759", "shop": "clothes"}, "addTags": {"brand": "アベイル", "brand:en": "Avail", "brand:ja": "アベイル", "brand:wikidata": "Q11284759", "name": "アベイル", "name:en": "Avail", "name:ja": "アベイル", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/コナカ": {"name": "コナカ", "icon": "maki-clothing-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKonaka%20yokohama.JPG&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11302278", "shop": "clothes"}, "addTags": {"brand": "コナカ", "brand:en": "Konaka", "brand:ja": "コナカ", "brand:wikidata": "Q11302278", "brand:wikipedia": "jp:コナカ", "name": "コナカ", "name:en": "Konaka", "name:ja": "コナカ", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/ユニクロ": {"name": "ユニクロ", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/uniqlo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26070", "shop": "clothes"}, "addTags": {"brand": "ユニクロ", "brand:en": "UNIQLO", "brand:ja": "ユニクロ", "brand:wikidata": "Q26070", "brand:wikipedia": "en:Uniqlo", "name": "ユニクロ", "name:en": "UNIQLO", "name:ja": "ユニクロ", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/ライトオン": {"name": "ライトオン", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/righton.co.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11346416", "shop": "clothes"}, "addTags": {"brand": "ライトオン", "brand:en": "Right-on", "brand:ja": "ライトオン", "brand:wikidata": "Q11346416", "brand:wikipedia": "ja:ライトオン", "name": "ライトオン", "name:en": "Right-on", "name:ja": "ライトオン", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/ワークマン": {"name": "ワークマン", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/306869439836144/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11351660", "shop": "clothes"}, "addTags": {"brand": "ワークマン", "brand:en": "Workman", "brand:ja": "ワークマン", "brand:wikidata": "Q11351660", "brand:wikipedia": "ja:ワークマン", "name": "ワークマン", "name:en": "Workman", "name:ja": "ワークマン", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/clothes/洋服の青山": {"name": "洋服の青山", "icon": "maki-clothing-store", "imageURL": "https://graph.facebook.com/AoyamaOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11661241", "shop": "clothes"}, "addTags": {"brand": "洋服の青山", "brand:en": "Aoyama Tailor", "brand:ja": "洋服の青山", "brand:wikidata": "Q11661241", "brand:wikipedia": "ja:青山商事", "name": "洋服の青山", "name:en": "Aoyama Tailor", "name:ja": "洋服の青山", "shop": "clothes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/coffee/Nespresso": {"name": "Nespresso", "icon": "temaki-coffee", "imageURL": "https://graph.facebook.com/nespresso/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q301301", "shop": "coffee"}, "addTags": {"brand": "Nespresso", "brand:wikidata": "Q301301", "brand:wikipedia": "en:Nespresso", "name": "Nespresso", "shop": "coffee"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/coffee/Tchibo": {"name": "Tchibo", "icon": "temaki-coffee", "imageURL": "https://graph.facebook.com/tchibo.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q564213", "shop": "coffee"}, "addTags": {"brand": "Tchibo", "brand:wikidata": "Q564213", "brand:wikipedia": "de:Tchibo", "name": "Tchibo", "shop": "coffee"}, "countryCodes": ["at", "ch", "cz", "de", "pl", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/computer/DNS": {"name": "DNS", "icon": "fas-laptop", "imageURL": "https://graph.facebook.com/dnsshop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4036922", "shop": "computer"}, "addTags": {"alt_name": "ДНС", "brand": "DNS", "brand:en": "DNS", "brand:ru": "ДНС", "brand:wikidata": "Q4036922", "brand:wikipedia": "ru:DNS (компания)", "name": "DNS", "name:en": "DNS", "name:ru": "ДНС", "shop": "computer"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/computer/LDLC": {"name": "LDLC", "icon": "fas-laptop", "imageURL": "https://graph.facebook.com/GroupeLDLC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3117461", "shop": "computer"}, "addTags": {"brand": "LDLC", "brand:wikidata": "Q3117461", "brand:wikipedia": "fr:Groupe LDLC", "name": "LDLC", "shop": "computer"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/computer/PCデポ": {"name": "PCデポ", "icon": "fas-laptop", "imageURL": "https://pbs.twimg.com/profile_images/675844064617500672/cRKpJEb3_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11331723", "shop": "computer"}, "addTags": {"brand": "PCデポ", "brand:en": "PC Depot", "brand:ja": "PCデポ", "brand:wikidata": "Q11331723", "brand:wikipedia": "ja:ピーシーデポコーポレーション", "name": "PCデポ", "name:en": "PC Depot", "name:ja": "PCデポ", "shop": "computer"}, "countryCodes": ["jp"], "terms": ["pc depot", "ピーシーデポ"], "matchScore": 2, "suggestion": true}, - "shop/computer/じゃんぱら": {"name": "じゃんぱら", "icon": "fas-laptop", "imageURL": "https://graph.facebook.com/janparapr01/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11306198", "shop": "computer"}, "addTags": {"brand": "じゃんぱら", "brand:en": "Janpara", "brand:ja": "じゃんぱら", "brand:wikidata": "Q11306198", "brand:wikipedia": "ja:じゃんぱら", "name": "じゃんぱら", "name:en": "Janpara", "name:ja": "じゃんぱら", "shop": "computer"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/computer/アプライド": {"name": "アプライド", "icon": "fas-laptop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FApplied%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11284742", "shop": "computer"}, "addTags": {"brand": "アプライド", "brand:en": "Applied", "brand:ja": "アプライド", "brand:wikidata": "Q11284742", "brand:wikipedia": "ja:アプライド", "name": "アプライド", "name:en": "Applied", "name:ja": "アプライド", "shop": "computer"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/computer/イオシス": {"name": "イオシス", "icon": "fas-laptop", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17988651", "shop": "computer"}, "addTags": {"brand": "イオシス", "brand:en": "IOSYS", "brand:ja": "イオシス", "brand:wikidata": "Q17988651", "brand:wikipedia": "ja:イオシス (株式会社)", "name": "イオシス", "name:en": "IOSYS", "name:ja": "イオシス", "shop": "computer"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/computer/ツクモ": {"name": "ツクモ", "icon": "fas-laptop", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q29793996", "shop": "computer"}, "addTags": {"brand": "ツクモ", "brand:en": "TSUKUMO", "brand:ja": "ツクモ", "brand:wikidata": "Q29793996", "brand:wikipedia": "ja:九十九電機", "name": "ツクモ", "name:en": "TSUKUMO", "name:ja": "ツクモ", "shop": "computer"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/Adyar Ananda Bhavan": {"name": "Adyar Ananda Bhavan", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/a2b.officialpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15178238", "shop": "confectionery"}, "addTags": {"brand": "Adyar Ananda Bhavan", "brand:wikidata": "Q15178238", "brand:wikipedia": "en:Adyar Ananda Bhavan", "name": "Adyar Ananda Bhavan", "shop": "confectionery"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/Hemmakvall": {"name": "Hemmakvall", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/hemmakvall/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10521791", "shop": "confectionery"}, "addTags": {"brand": "Hemmakväll", "brand:wikidata": "Q10521791", "brand:wikipedia": "sv:Hemmakväll", "name": "Hemmakväll", "shop": "confectionery"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/Hotel Chocolat": {"name": "Hotel Chocolat", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/HotelChocolat/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5911369", "shop": "confectionery"}, "addTags": {"brand": "Hotel Chocolat", "brand:wikidata": "Q5911369", "brand:wikipedia": "en:Hotel Chocolat", "name": "Hotel Chocolat", "shop": "confectionery"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/Hussel": {"name": "Hussel", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/HusselConfiserie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17123688", "shop": "confectionery"}, "addTags": {"brand": "Hussel", "brand:wikidata": "Q17123688", "brand:wikipedia": "de:Hussel", "name": "Hussel", "shop": "confectionery"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/Jamin": {"name": "Jamin", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/jaminonline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2291848", "shop": "confectionery"}, "addTags": {"brand": "Jamin", "brand:wikidata": "Q2291848", "brand:wikipedia": "nl:Jamin", "name": "Jamin", "shop": "confectionery"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/Kilwins": {"name": "Kilwins", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/KilwinsChocolatesFudgeandIceCream/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q38250832", "shop": "confectionery"}, "addTags": {"brand": "Kilwins", "brand:wikidata": "Q38250832", "brand:wikipedia": "en:Kilwins", "cuisine": "chocolate;ice_cream;popcorn", "name": "Kilwins", "shop": "confectionery"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/Rocky Mountain Chocolate Factory": {"name": "Rocky Mountain Chocolate Factory", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/myrmcf/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7355878", "shop": "confectionery"}, "addTags": {"brand": "Rocky Mountain Chocolate Factory", "brand:wikidata": "Q7355878", "brand:wikipedia": "en:Rocky Mountain Chocolate Factory", "name": "Rocky Mountain Chocolate Factory", "shop": "confectionery"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/See's Candies": {"name": "See's Candies", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/Sees.Candies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2103510", "shop": "confectionery"}, "addTags": {"brand": "See's Candies", "brand:wikidata": "Q2103510", "brand:wikipedia": "en:See's Candies", "name": "See's Candies", "shop": "confectionery"}, "countryCodes": ["us"], "terms": ["sees candy"], "matchScore": 2, "suggestion": true}, - "shop/confectionery/Thorntons": {"name": "Thorntons", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/Thorntons.Official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q683102", "shop": "confectionery"}, "addTags": {"brand": "Thorntons", "brand:wikidata": "Q683102", "brand:wikipedia": "en:Thorntons", "name": "Thorntons", "shop": "confectionery"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/Вацак": {"name": "Вацак", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/Vatsak.KD/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30966576", "shop": "confectionery"}, "addTags": {"brand": "Вацак", "brand:wikidata": "Q30966576", "brand:wikipedia": "uk:Кондитерський Дім «Вацак»", "name": "Вацак", "shop": "confectionery"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/シャトレーゼ": {"name": "シャトレーゼ", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/chateraise.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11307696", "shop": "confectionery"}, "addTags": {"brand": "シャトレーゼ", "brand:en": "Chateraise", "brand:ja": "シャトレーゼ", "brand:wikidata": "Q11307696", "brand:wikipedia": "ja:シャトレーゼ", "name": "シャトレーゼ", "name:en": "Chateraise", "name:ja": "シャトレーゼ", "shop": "confectionery"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/不二家": {"name": "不二家", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/FUJIYA.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q858452", "shop": "confectionery"}, "addTags": {"brand": "不二家", "brand:en": "Fujiya", "brand:ja": "不二家", "brand:wikidata": "Q858452", "brand:wikipedia": "ja:不二家", "name": "不二家", "name:en": "Fujiya", "name:ja": "不二家", "shop": "confectionery"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/confectionery/銀座コージーコーナー": {"name": "銀座コージーコーナー", "icon": "maki-confectionery", "imageURL": "https://graph.facebook.com/GINZA.CozyCorner/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11649983", "shop": "confectionery"}, "addTags": {"brand": "銀座コージーコーナー", "brand:en": "Ginza Cozy Corner", "brand:ja": "銀座コージーコーナー", "brand:wikidata": "Q11649983", "brand:wikipedia": "ja:銀座コージーコーナー", "name": "銀座コージーコーナー", "name:en": "Ginza Cozy Corner", "name:ja": "銀座コージーコーナー", "shop": "confectionery"}, "countryCodes": ["jp"], "terms": ["コージーコーナー"], "matchScore": 2, "suggestion": true}, - "shop/convenience/10-11": {"name": "10-11", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65336720", "shop": "convenience"}, "addTags": {"brand": "10-11", "brand:wikidata": "Q65336720", "brand:wikipedia": "is:10-11", "name": "10-11", "shop": "convenience"}, "countryCodes": ["is"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/1st Stop": {"name": "1st Stop", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65706152", "shop": "convenience"}, "addTags": {"brand": "1st Stop", "brand:wikidata": "Q65706152", "name": "1st Stop", "shop": "convenience"}, "countryCodes": ["us"], "terms": ["first stop"], "matchScore": 2, "suggestion": true}, - "shop/convenience/3COINS": {"name": "3COINS", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/3COINS.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60997353", "shop": "convenience"}, "addTags": {"alt_name": "スリーコインズ", "brand": "3COINS", "brand:wikidata": "Q60997353", "brand:wikipedia": "ja:3COINS", "name": "3COINS", "shop": "convenience"}, "countryCodes": ["jp"], "terms": ["スリーコインズ"], "matchScore": 2, "suggestion": true}, - "shop/convenience/7-Eleven": {"name": "7-Eleven", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q259340", "shop": "convenience"}, "addTags": {"brand": "7-Eleven", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "7-Eleven", "shop": "convenience"}, "terms": ["7-11", "seven eleven"], "matchScore": 2, "suggestion": true}, - "shop/convenience/759 Store": {"name": "759 Store", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/759StoreHK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10846179", "shop": "convenience"}, "addTags": {"brand": "759 Store", "brand:wikidata": "Q10846179", "brand:wikipedia": "en:759 Store", "name": "759 Store", "shop": "convenience"}, "countryCodes": ["hk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/76": {"name": "76", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/76gas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1658320", "shop": "convenience"}, "addTags": {"brand": "76", "brand:wikidata": "Q1658320", "brand:wikipedia": "en:76 (gas station)", "name": "76", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/8 à Huit": {"name": "8 à Huit", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/fashion8a8/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2818601", "shop": "convenience"}, "addTags": {"brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "fr:8 à Huit", "name": "8 à Huit", "shop": "convenience"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/99 Speedmart": {"name": "99 Speedmart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/99speedmartMY/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62075061", "shop": "convenience"}, "addTags": {"brand": "99 Speedmart", "brand:wikidata": "Q62075061", "name": "99 Speedmart", "shop": "convenience"}, "countryCodes": ["br", "my", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/ABC (Hawaii)": {"name": "ABC (Hawaii)", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/abcstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4650251", "shop": "convenience"}, "addTags": {"brand": "ABC", "brand:wikidata": "Q4650251", "brand:wikipedia": "en:ABC Stores (Hawaii)", "name": "ABC", "shop": "convenience"}, "countryCodes": ["us"], "terms": ["abc stores"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Aibė": {"name": "Aibė", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1022952", "shop": "convenience"}, "addTags": {"brand": "Aibė", "brand:wikidata": "Q1022952", "brand:wikipedia": "de:Aibė", "name": "Aibė", "shop": "convenience"}, "countryCodes": ["lt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Albert Heijn to go": {"name": "Albert Heijn to go", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ahtogo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q77971185", "shop": "convenience"}, "addTags": {"brand": "Albert Heijn to go", "brand:wikidata": "Q77971185", "brand:wikipedia": "en:Albert Heijn", "name": "Albert Heijn to go", "official_name": "AH to go", "shop": "convenience"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Alepa": {"name": "Alepa", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/alepaan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4716167", "shop": "convenience"}, "addTags": {"brand": "Alepa", "brand:wikidata": "Q4716167", "brand:wikipedia": "fi:Alepa", "name": "Alepa", "shop": "convenience"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Alfamidi": {"name": "Alfamidi", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/alfamidiku/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12471462", "shop": "convenience"}, "addTags": {"brand": "Alfamidi", "brand:wikidata": "Q12471462", "brand:wikipedia": "id:Alfamidi", "name": "Alfamidi", "shop": "convenience"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Allsup's": {"name": "Allsup's", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/allsups940/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4733292", "shop": "convenience"}, "addTags": {"brand": "Allsup's", "brand:wikidata": "Q4733292", "brand:wikipedia": "en:Allsup's", "name": "Allsup's", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/AmeriStop": {"name": "AmeriStop", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ameristopreynoldsburg/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66048258", "shop": "convenience"}, "addTags": {"brand": "AmeriStop", "brand:wikidata": "Q66048258", "name": "AmeriStop", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Amoco": {"name": "Amoco", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Amoco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q465952", "shop": "convenience"}, "addTags": {"brand": "Amoco", "brand:wikidata": "Q465952", "brand:wikipedia": "en:Amoco", "name": "Amoco", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Aral": {"name": "Aral", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/araldeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q565734", "shop": "convenience"}, "addTags": {"brand": "Aral", "brand:wikidata": "Q565734", "brand:wikipedia": "en:Aral AG", "name": "Aral", "shop": "convenience"}, "countryCodes": ["de"], "terms": ["aral tankstelle"], "matchScore": 2, "suggestion": true}, - "shop/convenience/BP Shop": {"name": "BP Shop", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/bp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q152057", "shop": "convenience"}, "addTags": {"brand": "BP Shop", "brand:wikidata": "Q152057", "brand:wikipedia": "en:BP", "name": "BP Shop", "shop": "convenience"}, "countryCodes": ["au", "ch", "fr", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Bakmaz": {"name": "Bakmaz", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/bakmazofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65132948", "shop": "convenience"}, "addTags": {"brand": "Bakmaz", "brand:wikidata": "Q65132948", "brand:wikipedia": "hr:Bakmaz", "name": "Bakmaz", "shop": "convenience"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Best-one": {"name": "Best-one", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/107890284043812/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4896532", "shop": "convenience"}, "addTags": {"brand": "Best-one", "brand:wikidata": "Q4896532", "brand:wikipedia": "en:Best-one", "name": "Best-one", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Buc-ee's": {"name": "Buc-ee's", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/bucees/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4982335", "shop": "convenience"}, "addTags": {"brand": "Buc-ee's", "brand:wikidata": "Q4982335", "brand:wikipedia": "en:Buc-ee's", "name": "Buc-ee's", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Budgens": {"name": "Budgens", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/DiscoverBudgens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4985016", "shop": "convenience"}, "addTags": {"brand": "Budgens", "brand:wikidata": "Q4985016", "brand:wikipedia": "en:Budgens", "name": "Budgens", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/CBA": {"name": "CBA", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCBA%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q779845", "shop": "convenience"}, "addTags": {"brand": "CBA", "brand:wikidata": "Q779845", "brand:wikipedia": "en:CBA (food retail)", "name": "CBA", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/COOP Jednota": {"name": "COOP Jednota", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/COOPJednota/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q41629254", "shop": "convenience"}, "addTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "convenience"}, "countryCodes": ["cz", "sk"], "terms": ["jednota"], "matchScore": 2, "suggestion": true}, - "shop/convenience/CU": {"name": "CU", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CU.BGFretail.cvs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12580836", "shop": "convenience"}, "addTags": {"brand": "CU", "brand:wikidata": "Q12580836", "brand:wikipedia": "ko:CU (편의점)", "name": "CU", "shop": "convenience"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Carrefour Express": {"name": "Carrefour Express", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/expresshoria/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2940190", "shop": "convenience"}, "addTags": {"brand": "Carrefour Express", "brand:wikidata": "Q2940190", "brand:wikipedia": "fr:Carrefour Express", "name": "Carrefour Express", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Casey's General Store": {"name": "Casey's General Store", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/caseys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2940968", "shop": "convenience"}, "addTags": {"brand": "Casey's General Store", "brand:wikidata": "Q2940968", "brand:wikipedia": "en:Casey's General Stores", "name": "Casey's General Store", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Casino Shop": {"name": "Casino Shop", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89029601", "shop": "convenience"}, "addTags": {"brand": "Casino Shop", "brand:wikidata": "Q89029601", "name": "Casino Shop", "shop": "convenience"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Centra": {"name": "Centra", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CentraIreland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q747678", "shop": "convenience"}, "addTags": {"brand": "Centra", "brand:wikidata": "Q747678", "brand:wikipedia": "en:Centra", "name": "Centra", "shop": "convenience"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Chata Polska": {"name": "Chata Polska", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/chatapolskasklepy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994406", "shop": "convenience"}, "addTags": {"brand": "Chata Polska", "brand:wikidata": "Q61994406", "name": "Chata Polska", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Cheers": {"name": "Cheers", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CheersSG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64154066", "shop": "convenience"}, "addTags": {"brand": "Cheers", "brand:wikidata": "Q64154066", "name": "Cheers", "opening_hours": "24/7", "shop": "convenience"}, "countryCodes": ["sg", "vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Chevron": {"name": "Chevron", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Chevron/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q319642", "shop": "convenience"}, "addTags": {"brand": "Chevron", "brand:wikidata": "Q319642", "brand:wikipedia": "en:Chevron Corporation", "name": "Chevron", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Circle K": {"name": "Circle K", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CircleKStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3268010", "shop": "convenience"}, "addTags": {"brand": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "Circle K", "shop": "convenience"}, "terms": ["ok", "ok-mart"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Citgo": {"name": "Citgo", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CITGOPetroleumCorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2974437", "shop": "convenience"}, "addTags": {"brand": "Citgo", "brand:wikidata": "Q2974437", "brand:wikipedia": "en:Citgo", "name": "Citgo", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Clark's Pump-N-Shop": {"name": "Clark's Pump-N-Shop", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/clarkspumpnshop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65118218", "shop": "convenience"}, "addTags": {"brand": "Clark's Pump-N-Shop", "brand:wikidata": "Q65118218", "name": "Clark's Pump-N-Shop", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Co-op Food": {"name": "Co-op Food", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1243828928134995968/AN-8Ptzi_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3277439", "shop": "convenience"}, "addTags": {"brand": "Co-op Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "Co-op Food", "shop": "convenience"}, "countryCodes": ["gb"], "terms": ["coop", "cooperative food", "the co-operative food", "the cooperative"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Co-op (Canada)": {"name": "Co-op (Canada)", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CoopCRS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5440676", "shop": "convenience"}, "addTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "convenience"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/CocciMarket": {"name": "CocciMarket", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCoccimarket%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90020480", "shop": "convenience"}, "addTags": {"brand": "CocciMarket", "brand:wikidata": "Q90020480", "name": "CocciMarket", "shop": "convenience"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/CocciMarket City": {"name": "CocciMarket City", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCoccimarket%20city%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90020481", "shop": "convenience"}, "addTags": {"brand": "CocciMarket City", "brand:wikidata": "Q90020481", "name": "CocciMarket City", "shop": "convenience"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Coles Express": {"name": "Coles Express", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ColesExpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5144653", "shop": "convenience"}, "addTags": {"brand": "Coles Express", "brand:wikidata": "Q5144653", "brand:wikipedia": "en:Coles Express", "name": "Coles Express", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Conoco": {"name": "Conoco", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/conoco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1126518", "shop": "convenience"}, "addTags": {"brand": "Conoco", "brand:wikidata": "Q1126518", "brand:wikipedia": "en:Conoco", "name": "Conoco", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Convenient Food Mart": {"name": "Convenient Food Mart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/convenientfoodmarts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5166143", "shop": "convenience"}, "addTags": {"brand": "Convenient Food Mart", "brand:wikidata": "Q5166143", "brand:wikipedia": "en:Convenient Food Mart", "name": "Convenient Food Mart", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Coop Pronto": {"name": "Coop Pronto", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/209094172456220/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1129777", "shop": "convenience"}, "addTags": {"brand": "Coop Pronto", "brand:wikidata": "Q1129777", "brand:wikipedia": "de:Coop Mineraloel", "name": "Coop Pronto", "shop": "convenience"}, "countryCodes": ["ch", "li"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Coop (Schweiz)": {"name": "Coop (Schweiz)", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/coop.ch/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q432564", "shop": "convenience"}, "addTags": {"brand": "Coop", "brand:wikidata": "Q432564", "brand:wikipedia": "de:Coop (Schweiz)", "name": "Coop", "shop": "convenience"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Costcutter": {"name": "Costcutter", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/costcutter/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5175072", "shop": "convenience"}, "addTags": {"brand": "Costcutter", "brand:wikidata": "Q5175072", "brand:wikipedia": "en:Costcutter", "name": "Costcutter", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Couche-Tard": {"name": "Couche-Tard", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CoucheTardQc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2836957", "shop": "convenience"}, "addTags": {"brand": "Couche-Tard", "brand:wikidata": "Q2836957", "brand:wikipedia": "en:Alimentation Couche-Tard", "name": "Couche-Tard", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Cruizers": {"name": "Cruizers", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CruizersStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66134801", "shop": "convenience"}, "addTags": {"brand": "Cruizers", "brand:wikidata": "Q66134801", "name": "Cruizers", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Cumberland Farms": {"name": "Cumberland Farms", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CumberlandFarms/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1143685", "shop": "convenience"}, "addTags": {"brand": "Cumberland Farms", "brand:wikidata": "Q1143685", "brand:wikipedia": "en:Cumberland Farms", "name": "Cumberland Farms", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Daisy Mart": {"name": "Daisy Mart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/DaisyMart.Kamel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994934", "shop": "convenience"}, "addTags": {"brand": "Daisy Mart", "brand:wikidata": "Q61994934", "name": "Daisy Mart", "shop": "convenience"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Dari Mart": {"name": "Dari Mart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/darimart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5222675", "shop": "convenience"}, "addTags": {"brand": "Dari Mart", "brand:wikidata": "Q5222675", "brand:wikipedia": "en:Dari Mart", "name": "Dari Mart", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Delikatesy Centrum": {"name": "Delikatesy Centrum", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Delikatesypl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11693824", "shop": "convenience"}, "addTags": {"brand": "Delikatesy Centrum", "brand:wikidata": "Q11693824", "brand:wikipedia": "pl:Delikatesy Centrum", "name": "Delikatesy Centrum", "shop": "convenience"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/ExtraMile": {"name": "ExtraMile", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ExtraMileExtras/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64224605", "shop": "convenience"}, "addTags": {"brand": "ExtraMile", "brand:wikidata": "Q64224605", "name": "ExtraMile", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/FamilyMart": {"name": "FamilyMart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/familymart.japan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1191685", "shop": "convenience"}, "addTags": {"brand": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "FamilyMart", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Four Square": {"name": "Four Square", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/FourSquareNZ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5475558", "shop": "convenience"}, "addTags": {"brand": "Four Square", "brand:wikidata": "Q5475558", "brand:wikipedia": "en:Four Square (supermarket)", "name": "Four Square", "shop": "convenience"}, "countryCodes": ["nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Franprix": {"name": "Franprix", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/franprix/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2420096", "shop": "convenience"}, "addTags": {"brand": "Franprix", "brand:wikidata": "Q2420096", "brand:wikipedia": "fr:Franprix", "name": "Franprix", "shop": "convenience"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Freshmarket": {"name": "Freshmarket", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16546326", "shop": "convenience"}, "addTags": {"brand": "Freshmarket", "brand:wikidata": "Q16546326", "brand:wikipedia": "pl:Freshmarket", "name": "Freshmarket", "shop": "convenience"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/GS25": {"name": "GS25", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/funGS25/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q624041", "shop": "convenience"}, "addTags": {"brand": "GS25", "brand:wikidata": "Q624041", "brand:wikipedia": "ko:GS25", "name": "GS25", "shop": "convenience"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Groszek": {"name": "Groszek", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Sklepy.Groszek/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9280965", "shop": "convenience"}, "addTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "convenience"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Hasty Market": {"name": "Hasty Market", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/607684929288087/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58022603", "shop": "convenience"}, "addTags": {"brand": "Hasty Market", "brand:wikidata": "Q58022603", "name": "Hasty Market", "shop": "convenience"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Holiday": {"name": "Holiday", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/holidaystations/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5880490", "shop": "convenience"}, "addTags": {"brand": "Holiday", "brand:wikidata": "Q5880490", "brand:wikipedia": "en:Holiday Stationstores", "name": "Holiday", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Huck's Food & Fuel": {"name": "Huck's Food & Fuel", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/GoToHucks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56276328", "shop": "convenience"}, "addTags": {"brand": "Huck's Food & Fuel", "brand:wikidata": "Q56276328", "brand:wikipedia": "en:Huck's Food & Fuel", "name": "Huck's Food & Fuel", "shop": "convenience", "short_name": "Huck's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Hursts": {"name": "Hursts", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q80975681", "shop": "convenience"}, "addTags": {"brand": "Hursts", "brand:wikidata": "Q80975681", "name": "Hursts", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Husky": {"name": "Husky", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/huskyenergy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q702049", "shop": "convenience"}, "addTags": {"brand": "Husky", "brand:wikidata": "Q702049", "brand:wikipedia": "en:Husky Energy", "name": "Husky", "shop": "convenience"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Indomaret": {"name": "Indomaret", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/IndomaretMudahdanHemat/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4262825", "shop": "convenience"}, "addTags": {"brand": "Indomaret", "brand:wikidata": "Q4262825", "brand:wikipedia": "en:Indomaret", "name": "Indomaret", "shop": "convenience"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Intermarché Contact": {"name": "Intermarché Contact", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1242150382085779463/Cmm3JM1n_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3153200", "shop": "convenience"}, "addTags": {"brand": "Intermarché Contact", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Contact", "shop": "convenience"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Irving": {"name": "Irving", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/irvingoil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1673286", "shop": "convenience"}, "addTags": {"brand": "Irving", "brand:wikidata": "Q1673286", "brand:wikipedia": "en:Irving Oil", "name": "Irving", "shop": "convenience"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Jacksons": {"name": "Jacksons", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/JacksonsFoodStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64617393", "shop": "convenience"}, "addTags": {"brand": "Jacksons", "brand:wikidata": "Q64617393", "name": "Jacksons", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Jiffy": {"name": "Jiffy", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16770436", "shop": "convenience"}, "addTags": {"brand": "Jiffy", "brand:wikidata": "Q16770436", "brand:wikipedia": "th:จิฟฟี่", "name": "Jiffy", "shop": "convenience"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Joker": {"name": "Joker", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/JokerNorge/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q716328", "shop": "convenience"}, "addTags": {"brand": "Joker", "brand:wikidata": "Q716328", "brand:wikipedia": "en:Joker (store)", "name": "Joker", "shop": "convenience"}, "countryCodes": ["no"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/K-Market": {"name": "K-Market", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/KMarketSuomi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11868562", "shop": "convenience"}, "addTags": {"brand": "K-Market", "brand:wikidata": "Q11868562", "brand:wikipedia": "fi:K-Market", "name": "K-Market", "shop": "convenience"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Kangaroo Express": {"name": "Kangaroo Express", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/KangarooExpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61747408", "shop": "convenience"}, "addTags": {"brand": "Kangaroo Express", "brand:wikidata": "Q61747408", "name": "Kangaroo Express", "shop": "convenience", "short_name": "Kangaroo"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Konzum (Balkans)": {"name": "Konzum (Balkans)", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKonzum%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q518563", "shop": "convenience"}, "addTags": {"brand": "Konzum", "brand:wikidata": "Q518563", "brand:wikipedia": "hr:Konzum", "name": "Konzum", "shop": "convenience"}, "countryCodes": ["ba", "hr", "rs"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Kum & Go": {"name": "Kum & Go", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/kumandgo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6443340", "shop": "convenience"}, "addTags": {"brand": "Kum & Go", "brand:wikidata": "Q6443340", "brand:wikipedia": "en:Kum & Go", "name": "Kum & Go", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Kwik Shop": {"name": "Kwik Shop", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/kwikshopstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6450417", "shop": "convenience"}, "addTags": {"brand": "Kwik Shop", "brand:wikidata": "Q6450417", "brand:wikipedia": "en:Kwik Shop", "name": "Kwik Shop", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Kwik Trip": {"name": "Kwik Trip", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/KwikTrip/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6450420", "shop": "convenience"}, "addTags": {"brand": "Kwik Trip", "brand:wikidata": "Q6450420", "brand:wikipedia": "en:Kwik Trip", "name": "Kwik Trip", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/La Vie Claire": {"name": "La Vie Claire", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Lavieclaire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3213589", "shop": "convenience"}, "addTags": {"brand": "La Vie Claire", "brand:wikidata": "Q3213589", "brand:wikipedia": "fr:La Vie Claire", "name": "La Vie Claire", "organic": "only", "shop": "convenience"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Lawson": {"name": "Lawson", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/lawson.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1557223", "shop": "convenience"}, "addTags": {"brand": "Lawson", "brand:wikidata": "Q1557223", "brand:wikipedia": "en:Lawson (store)", "name": "Lawson", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Le Petit Casino": {"name": "Le Petit Casino", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLe%20petit%20casino%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89029249", "shop": "convenience"}, "addTags": {"brand": "Le Petit Casino", "brand:wikidata": "Q89029249", "name": "Le Petit Casino", "shop": "convenience"}, "countryCodes": ["fr"], "terms": ["petit casino"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Lewiatan": {"name": "Lewiatan", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/psh.lewiatan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11755396", "shop": "convenience"}, "addTags": {"brand": "Lewiatan", "brand:wikidata": "Q11755396", "brand:wikipedia": "pl:Lewiatan (sieć handlowa)", "name": "Lewiatan", "shop": "convenience"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Lifestyle Express": {"name": "Lifestyle Express", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/324527018203312/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994869", "shop": "convenience"}, "addTags": {"brand": "Lifestyle Express", "brand:wikidata": "Q61994869", "name": "Lifestyle Express", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Little Waitrose": {"name": "Little Waitrose", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/waitroseandpartners/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q771734", "shop": "convenience"}, "addTags": {"brand": "Little Waitrose", "brand:wikidata": "Q771734", "brand:wikipedia": "en:Waitrose & Partners", "name": "Little Waitrose", "shop": "convenience"}, "countryCodes": ["gb", "je"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Loaf 'N Jug": {"name": "Loaf 'N Jug", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/loafnjugstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6663398", "shop": "convenience"}, "addTags": {"brand": "Loaf 'N Jug", "brand:wikidata": "Q6663398", "brand:wikipedia": "en:Loaf 'N Jug", "name": "Loaf 'N Jug", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Londis (Ireland)": {"name": "Londis (Ireland)", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/londisireland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21015800", "shop": "convenience"}, "addTags": {"brand": "Londis", "brand:wikidata": "Q21015800", "brand:wikipedia": "en:Londis (Ireland)", "name": "Londis", "shop": "convenience"}, "countryCodes": ["ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Londis (UK)": {"name": "Londis (UK)", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/102483611097059/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21008564", "shop": "convenience"}, "addTags": {"brand": "Londis", "brand:wikidata": "Q21008564", "brand:wikipedia": "en:Londis (United Kingdom)", "name": "Londis", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Love's": {"name": "Love's", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/lovestravelstops/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1872496", "shop": "convenience"}, "addTags": {"brand": "Love's", "brand:wikidata": "Q1872496", "brand:wikipedia": "en:Love's Travel Stops & Country Stores", "name": "Love's", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/M&S Simply Food": {"name": "M&S Simply Food", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/MarksandSpencer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q714491", "shop": "convenience"}, "addTags": {"brand": "M&S Simply Food", "brand:wikidata": "Q714491", "brand:wikipedia": "en:Marks & Spencer", "name": "M&S Simply Food", "shop": "convenience"}, "terms": ["marks & spencer simply food"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Mac's": {"name": "Mac's", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/MacsBigBaypointRoad/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4043527", "shop": "convenience"}, "addTags": {"brand": "Mac's", "brand:wikidata": "Q4043527", "brand:wikipedia": "en:Mac's Convenience Stores", "name": "Mac's", "shop": "convenience"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Mace (Ireland)": {"name": "Mace (Ireland)", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/MACEIreland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q75236910", "shop": "convenience"}, "addTags": {"brand": "Mace", "brand:wikidata": "Q75236910", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "countryCodes": ["ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Mace (Northern Ireland)": {"name": "Mace (Northern Ireland)", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/MACENorthernIreland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q75238536", "shop": "convenience"}, "addTags": {"brand": "Mace", "brand:wikidata": "Q75238536", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Mace (UK)": {"name": "Mace (UK)", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/maces.stores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q75240338", "shop": "convenience"}, "addTags": {"brand": "Mace", "brand:wikidata": "Q75240338", "brand:wikipedia": "en:Mace (shop)", "name": "Mace", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Marathon": {"name": "Marathon", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/MarathonPetroleumCorporation/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q458363", "shop": "convenience"}, "addTags": {"brand": "Marathon", "brand:wikidata": "Q458363", "brand:wikipedia": "en:Marathon Petroleum", "name": "Marathon", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Maverik": {"name": "Maverik", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/maverikadventure/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64149010", "shop": "convenience"}, "addTags": {"brand": "Maverik", "brand:wikidata": "Q64149010", "brand:wikipedia": "en:Maverik, Inc.", "name": "Maverik", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Małpka Express": {"name": "Małpka Express", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/malpkaexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18431946", "shop": "convenience"}, "addTags": {"brand": "Małpka Express", "brand:wikidata": "Q18431946", "brand:wikipedia": "pl:Małpka Express", "name": "Małpka Express", "shop": "convenience"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/McColl's": {"name": "McColl's", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/YourMcColls/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16997477", "shop": "convenience"}, "addTags": {"brand": "McColl's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "McColl's", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Mercator": {"name": "Mercator", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Mercator/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q738412", "shop": "convenience"}, "addTags": {"brand": "Mercator", "brand:wikidata": "Q738412", "brand:wikipedia": "en:Mercator (retail)", "name": "Mercator", "shop": "convenience"}, "countryCodes": ["ba", "hr", "me", "mk", "rs", "si"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Migrolino": {"name": "Migrolino", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/migrolino/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56745088", "shop": "convenience"}, "addTags": {"brand": "Migrolino", "brand:wikidata": "Q56745088", "brand:wikipedia": "de:Migrolino", "name": "Migrolino", "shop": "convenience"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Milk-Agro": {"name": "Milk-Agro", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/milkagro.sk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64173785", "shop": "convenience"}, "addTags": {"brand": "Milk-Agro", "brand:wikidata": "Q64173785", "name": "Milk-Agro", "shop": "convenience"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Mini Mix": {"name": "Mini Mix", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/mixmarkt.eu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q327854", "shop": "convenience"}, "addTags": {"brand": "Mini Mix", "brand:wikidata": "Q327854", "brand:wikipedia": "de:Mix Markt", "name": "Mini Mix", "shop": "convenience"}, "countryCodes": ["at", "be", "cy", "cz", "de", "es", "fr", "gb", "gr", "it", "me", "nl", "pt"], "terms": ["mini mix markt"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Ministop": {"name": "Ministop", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/875897219508871168/OZ1swK9c_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1038929", "shop": "convenience"}, "addTags": {"brand": "Ministop", "brand:wikidata": "Q1038929", "brand:wikipedia": "en:Ministop", "name": "Ministop", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Minit Mart": {"name": "Minit Mart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/MinitMartOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18154470", "shop": "convenience"}, "addTags": {"brand": "Minit Mart", "brand:wikidata": "Q18154470", "brand:wikipedia": "en:Minit Mart Foods Inc.", "name": "Minit Mart", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Mobil Mart": {"name": "Mobil Mart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ExxonandMobilStations/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3088656", "shop": "convenience"}, "addTags": {"brand": "Mobil Mart", "brand:wikidata": "Q3088656", "brand:wikipedia": "en:Mobil", "name": "Mobil Mart", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Monop'": {"name": "Monop'", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89913683", "shop": "convenience"}, "addTags": {"brand": "Monop'", "brand:wikidata": "Q89913683", "name": "Monop'", "shop": "convenience"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/MrMax": {"name": "MrMax", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/mrmaxrecruit/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11342034", "shop": "convenience"}, "addTags": {"alt_name": "ミスターマックス", "brand": "MrMax", "brand:wikidata": "Q11342034", "brand:wikipedia": "ja:ミスターマックス", "name": "MrMax", "shop": "convenience"}, "countryCodes": ["jp"], "terms": ["ミスターマックス"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Nasz Sklep": {"name": "Nasz Sklep", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/356733814830329/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62070369", "shop": "convenience"}, "addTags": {"brand": "Nasz Sklep", "brand:wikidata": "Q62070369", "name": "Nasz Sklep", "shop": "convenience"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Neste K": {"name": "Neste K", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/nestebensis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q42901270", "shop": "convenience"}, "addTags": {"brand": "Neste K", "brand:wikidata": "Q42901270", "brand:wikipedia": "fi:Neste K", "name": "Neste K", "shop": "convenience"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/NewDays": {"name": "NewDays", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/NEWDAYSKIOSK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11234763", "shop": "convenience"}, "addTags": {"alt_name": "ニューデイズ", "brand": "NewDays", "brand:wikidata": "Q11234763", "brand:wikipedia": "ja:NewDays", "name": "NewDays", "shop": "convenience"}, "countryCodes": ["jp"], "terms": ["newdays ミニ"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Nisa": {"name": "Nisa", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/nisalocally/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16999069", "shop": "convenience"}, "addTags": {"brand": "Nisa", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Nisa Local": {"name": "Nisa Local", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/nisalocally/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16999069", "shop": "convenience"}, "addTags": {"brand": "Nisa Local", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa Local", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/OK Market": {"name": "OK Market", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/okmarketcl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6047736", "shop": "convenience"}, "addTags": {"brand": "OK Market", "brand:wikidata": "Q6047736", "brand:wikipedia": "es:OK Market", "name": "OK Market", "shop": "convenience"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/OK便利店": {"name": "OK便利店", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CircleKStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3268010", "shop": "convenience"}, "addTags": {"brand": "OK便利店", "brand:en": "Circle K", "brand:wikidata": "Q3268010", "brand:wikipedia": "zh:OK便利店", "name": "OK便利店", "name:en": "Circle K", "shop": "convenience"}, "countryCodes": ["cn", "hk", "mo"], "terms": ["ok便利商店", "ok便利店 circle k"], "matchScore": 2, "suggestion": true}, - "shop/convenience/OK超商": {"name": "OK超商", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/okmart.tw/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10851968", "shop": "convenience"}, "addTags": {"brand": "OK超商", "brand:en": "OK mart", "brand:wikidata": "Q10851968", "brand:wikipedia": "zh:OK超商", "name": "OK超商", "name:en": "OK mart", "shop": "convenience"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/On the Run": {"name": "On the Run", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/OntheRunUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16931259", "shop": "convenience"}, "addTags": {"brand": "On the Run", "brand:wikidata": "Q16931259", "brand:wikipedia": "en:On the Run (convenience store)", "name": "On the Run", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/One Stop": {"name": "One Stop", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/933786043735830534/dehdJCDU_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65954217", "shop": "convenience"}, "addTags": {"brand": "One Stop", "brand:wikidata": "Q65954217", "name": "One Stop", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Orlen": {"name": "Orlen", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ORLENOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q971649", "shop": "convenience"}, "addTags": {"brand": "Orlen", "brand:wikidata": "Q971649", "brand:wikipedia": "en:PKN Orlen", "name": "Orlen", "shop": "convenience"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Oxxo": {"name": "Oxxo", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/OXXOTiendas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1342538", "shop": "convenience"}, "addTags": {"brand": "Oxxo", "brand:wikidata": "Q1342538", "brand:wikipedia": "es:Oxxo", "name": "Oxxo", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Petro-Canada": {"name": "Petro-Canada", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/petrocanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1208279", "shop": "convenience"}, "addTags": {"brand": "Petro-Canada", "brand:wikidata": "Q1208279", "brand:wikipedia": "en:Petro-Canada", "name": "Petro-Canada", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Plaid Pantry": {"name": "Plaid Pantry", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/plaidpantryOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7200591", "shop": "convenience"}, "addTags": {"brand": "Plaid Pantry", "brand:wikidata": "Q7200591", "brand:wikipedia": "en:Plaid Pantry", "name": "Plaid Pantry", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Premier": {"name": "Premier", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/552086468839997441/Ok2vWsQl_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7240340", "shop": "convenience"}, "addTags": {"brand": "Premier", "brand:wikidata": "Q7240340", "brand:wikipedia": "en:Premier Stores", "name": "Premier", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Proxi": {"name": "Proxi", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3408522", "shop": "convenience"}, "addTags": {"brand": "Proxi", "brand:wikidata": "Q3408522", "brand:wikipedia": "fr:Proxi", "name": "Proxi", "shop": "convenience"}, "countryCodes": ["ch", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Quality Mart": {"name": "Quality Mart", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/QualityMart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66134834", "shop": "convenience"}, "addTags": {"brand": "Quality Mart", "brand:wikidata": "Q66134834", "name": "Quality Mart", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/QuickChek": {"name": "QuickChek", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1235227251131678722/4FZ60T1d_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7271689", "shop": "convenience"}, "addTags": {"brand": "QuickChek", "brand:wikidata": "Q7271689", "brand:wikipedia": "en:QuickChek", "name": "QuickChek", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/QuikTrip": {"name": "QuikTrip", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Quiktrip/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7271953", "shop": "convenience"}, "addTags": {"brand": "QuikTrip", "brand:wikidata": "Q7271953", "brand:wikipedia": "en:QuikTrip", "name": "QuikTrip", "shop": "convenience", "short_name": "QT"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/RaceTrac": {"name": "RaceTrac", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/RaceTrac/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q735942", "shop": "convenience"}, "addTags": {"brand": "RaceTrac", "brand:wikidata": "Q735942", "brand:wikipedia": "en:RaceTrac", "name": "RaceTrac", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/RaceWay": {"name": "RaceWay", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/720219901323849/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q73039084", "shop": "convenience"}, "addTags": {"brand": "RaceWay", "brand:wikidata": "Q73039084", "name": "RaceWay", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Rewe To Go": {"name": "Rewe To Go", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Rewe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16968817", "shop": "convenience"}, "addTags": {"brand": "Rewe To Go", "brand:wikidata": "Q16968817", "brand:wikipedia": "en:REWE", "name": "Rewe To Go", "shop": "convenience"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Rotten Robbie": {"name": "Rotten Robbie", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/rottenrobbies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87378070", "shop": "convenience"}, "addTags": {"brand": "Rotten Robbie", "brand:wikidata": "Q87378070", "name": "Rotten Robbie", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Royal Farms": {"name": "Royal Farms", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Royalfarmsstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7374169", "shop": "convenience"}, "addTags": {"brand": "Royal Farms", "brand:wikidata": "Q7374169", "brand:wikipedia": "en:Royal Farms", "name": "Royal Farms", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Rutter's": {"name": "Rutter's", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/rutters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7383544", "shop": "convenience"}, "addTags": {"brand": "Rutter's", "brand:wikidata": "Q7383544", "brand:wikipedia": "en:Rutter's", "name": "Rutter's", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Sainsbury's Local": {"name": "Sainsbury's Local", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/sainsburys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13218434", "shop": "convenience"}, "addTags": {"brand": "Sainsbury's Local", "brand:wikidata": "Q13218434", "brand:wikipedia": "en:Sainsbury's Local", "name": "Sainsbury's Local", "shop": "convenience"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Sale": {"name": "Sale", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSale%20wordmark.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11892046", "shop": "convenience"}, "addTags": {"brand": "Sale", "brand:wikidata": "Q11892046", "brand:wikipedia": "fi:Sale", "name": "Sale", "shop": "convenience"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Sheetz": {"name": "Sheetz", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/sheetz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7492551", "shop": "convenience"}, "addTags": {"brand": "Sheetz", "brand:wikidata": "Q7492551", "brand:wikipedia": "en:Sheetz", "name": "Sheetz", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Shell": {"name": "Shell", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Shell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q154950", "shop": "convenience"}, "addTags": {"brand": "Shell", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Shell Select": {"name": "Shell Select", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Shell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q154950", "shop": "convenience"}, "addTags": {"brand": "Shell Select", "brand:wikidata": "Q154950", "brand:wikipedia": "en:Royal Dutch Shell", "name": "Shell Select", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Siwa": {"name": "Siwa", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSiwa%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11893827", "shop": "convenience"}, "addTags": {"brand": "Siwa", "brand:wikidata": "Q11893827", "brand:wikipedia": "fi:Siwa", "name": "Siwa", "shop": "convenience"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Spar": {"name": "Spar", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/639011130107633664/nLN6cXfa_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q610492", "shop": "convenience"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Spar Express": {"name": "Spar Express", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/639011130107633664/nLN6cXfa_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q610492", "shop": "convenience"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar Express", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Speedway": {"name": "Speedway", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/SpeedwayStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7575683", "shop": "convenience"}, "addTags": {"brand": "Speedway", "brand:wikidata": "Q7575683", "brand:wikipedia": "en:Speedway LLC", "name": "Speedway", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Społem": {"name": "Społem", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/SpolemSpoldzielczoscSpozywcow/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11826043", "shop": "convenience"}, "addTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Star Mart": {"name": "Star Mart", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994857", "shop": "convenience"}, "addTags": {"brand": "Star Mart", "brand:wikidata": "Q61994857", "name": "Star Mart", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Stewart's Shops": {"name": "Stewart's Shops", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/YourStewarts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7615690", "shop": "convenience"}, "addTags": {"brand": "Stewart's Shops", "brand:wikidata": "Q7615690", "brand:wikipedia": "en:Stewart's Shops", "name": "Stewart's Shops", "shop": "convenience"}, "countryCodes": ["us"], "terms": ["stewarts"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Stripes": {"name": "Stripes", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/stripesstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7624135", "shop": "convenience"}, "addTags": {"brand": "Stripes", "brand:wikidata": "Q7624135", "brand:wikipedia": "en:Stripes Convenience Stores", "name": "Stripes", "shop": "convenience"}, "countryCodes": ["cl", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Studenac": {"name": "Studenac", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/studenac/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65156084", "shop": "convenience"}, "addTags": {"brand": "Studenac", "brand:wikidata": "Q65156084", "brand:wikipedia": "hr:Studenac", "name": "Studenac", "shop": "convenience"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Sunoco": {"name": "Sunoco", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/GoSunoco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1423218", "shop": "convenience"}, "addTags": {"brand": "Sunoco", "brand:wikidata": "Q1423218", "brand:wikipedia": "en:Sunoco", "name": "Sunoco", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/TA": {"name": "TA", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/TravelCentersOfAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7835892", "shop": "convenience"}, "addTags": {"brand": "TA", "brand:wikidata": "Q7835892", "brand:wikipedia": "en:TravelCenters of America", "name": "TA", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Tesco": {"name": "Tesco", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/1183230681723205/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q487494", "shop": "convenience"}, "addTags": {"brand": "Tesco", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Tesco Express": {"name": "Tesco Express", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/1183230681723205/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q487494", "shop": "convenience"}, "addTags": {"brand": "Tesco Express", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco Express", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Texaco": {"name": "Texaco", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/TexacoWithTechron/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q775060", "shop": "convenience"}, "addTags": {"brand": "Texaco", "brand:wikidata": "Q775060", "brand:wikipedia": "en:Texaco", "name": "Texaco", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Thorntons": {"name": "Thorntons", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/thorntonsllc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7796584", "shop": "convenience"}, "addTags": {"brand": "Thorntons", "brand:wikidata": "Q7796584", "brand:wikipedia": "en:Thorntons LLC", "name": "Thorntons", "shop": "convenience"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Tiger Mart": {"name": "Tiger Mart", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57643977", "shop": "convenience"}, "addTags": {"brand": "Tiger Mart", "brand:wikidata": "Q57643977", "name": "Tiger Mart", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Tommy": {"name": "Tommy", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/tommyprodavaonice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12643718", "shop": "convenience"}, "addTags": {"brand": "Tommy", "brand:wikidata": "Q12643718", "brand:wikipedia": "hr:Tommy", "name": "Tommy", "shop": "convenience"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Total": {"name": "Total", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/TotalUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q154037", "shop": "convenience"}, "addTags": {"brand": "Total", "brand:wikidata": "Q154037", "brand:wikipedia": "fr:Total (entreprise)", "name": "Total", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Turkey Hill": {"name": "Turkey Hill", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/turkeyhillmm/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q42376970", "shop": "convenience"}, "addTags": {"brand": "Turkey Hill", "brand:wikidata": "Q42376970", "brand:wikipedia": "en:Turkey Hill Minit Markets", "name": "Turkey Hill", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Ultramar": {"name": "Ultramar", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ultramarcanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3548078", "shop": "convenience"}, "addTags": {"brand": "Ultramar", "brand:wikidata": "Q3548078", "brand:wikipedia": "en:Ultramar", "name": "Ultramar", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/United": {"name": "United", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/unitedpetroleum/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28224393", "shop": "convenience"}, "addTags": {"brand": "United", "brand:wikidata": "Q28224393", "brand:wikipedia": "en:United Petroleum", "name": "United", "shop": "convenience"}, "countryCodes": ["au"], "terms": ["united petroleum"], "matchScore": 2, "suggestion": true}, - "shop/convenience/United Dairy Farmers": {"name": "United Dairy Farmers", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/UnitedDairyFarmers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7887677", "shop": "convenience"}, "addTags": {"amenity": "ice_cream", "brand": "United Dairy Farmers", "brand:wikidata": "Q7887677", "brand:wikipedia": "en:United Dairy Farmers", "name": "United Dairy Farmers", "shop": "convenience", "short_name": "UDF"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Utile": {"name": "Utile", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ULesCommercants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2529029", "shop": "convenience"}, "addTags": {"brand": "Utile", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Utile", "shop": "convenience"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Valero": {"name": "Valero", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/valeroenergy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1283291", "shop": "convenience"}, "addTags": {"brand": "Valero", "brand:wikidata": "Q1283291", "brand:wikipedia": "en:Valero Energy", "name": "Valero", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/VinMart+": {"name": "VinMart+", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/sieuthivinmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60245505", "shop": "convenience"}, "addTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart+", "shop": "convenience"}, "countryCodes": ["vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Vival": {"name": "Vival", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/vivalvoiron/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7937525", "shop": "convenience"}, "addTags": {"brand": "Vival", "brand:wikidata": "Q7937525", "brand:wikipedia": "en:Vival (shop)", "name": "Vival", "shop": "convenience"}, "countryCodes": ["fr", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Waitrose": {"name": "Waitrose", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/waitroseandpartners/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q771734", "shop": "convenience"}, "addTags": {"brand": "Waitrose", "brand:wikidata": "Q771734", "brand:wikipedia": "en:Waitrose & Partners", "name": "Waitrose", "shop": "convenience"}, "countryCodes": ["gb", "je"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Wawa": {"name": "Wawa", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/wawa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5936320", "shop": "convenience"}, "addTags": {"brand": "Wawa", "brand:wikidata": "Q5936320", "brand:wikipedia": "en:Wawa (company)", "name": "Wawa", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Weltladen": {"name": "Weltladen", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1640782", "shop": "convenience"}, "addTags": {"brand": "Weltladen", "brand:wikidata": "Q1640782", "brand:wikipedia": "de:Weltladen", "name": "Weltladen", "shop": "convenience"}, "countryCodes": ["at", "ch", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Woolworths Petrol": {"name": "Woolworths Petrol", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/woolworths/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5023980", "shop": "convenience"}, "addTags": {"brand": "Caltex", "brand:wikidata": "Q5023980", "brand:wikipedia": "en:Caltex Woolworths", "name": "Woolworths Petrol", "shop": "convenience"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/abc (Poland)": {"name": "abc (Poland)", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/abcsklepy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11683985", "shop": "convenience"}, "addTags": {"brand": "abc", "brand:wikidata": "Q11683985", "brand:wikipedia": "pl:Abc (sieć handlowa)", "name": "abc", "shop": "convenience"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/ampm": {"name": "ampm", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/ampm/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q306960", "shop": "convenience"}, "addTags": {"brand": "ampm", "brand:wikidata": "Q306960", "brand:wikipedia": "en:Ampm", "name": "ampm", "shop": "convenience"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/miniピアゴ": {"name": "miniピアゴ", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMini%20PIAGO%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11188499", "shop": "convenience"}, "addTags": {"brand": "miniピアゴ", "brand:en": "mini Piago", "brand:ja": "miniピアゴ", "brand:wikidata": "Q11188499", "brand:wikipedia": "ja:Miniピアゴ", "name": "miniピアゴ", "name:en": "mini Piago", "name:ja": "miniピアゴ", "shop": "convenience"}, "countryCodes": ["jp"], "terms": ["ミニピアゴ"], "matchScore": 2, "suggestion": true}, - "shop/convenience/uSmile 昆仑好客": {"name": "uSmile 昆仑好客", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/113494673346645/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66480830", "shop": "convenience"}, "addTags": {"brand": "uSmile 昆仑好客", "brand:en": "uSmile", "brand:wikidata": "Q66480830", "brand:zh": "昆仑好客", "name": "uSmile 昆仑好客", "name:en": "uSmile", "name:zh": "昆仑好客", "shop": "convenience"}, "countryCodes": ["cn"], "terms": ["usmile", "usmile 便利店", "昆仑好", "昆仑好客"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Żabka": {"name": "Żabka", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/zabkapolska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2589061", "shop": "convenience"}, "addTags": {"brand": "Żabka", "brand:wikidata": "Q2589061", "brand:wikipedia": "pl:Żabka (sieć sklepów)", "name": "Żabka", "shop": "convenience"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/ВкусВилл": {"name": "ВкусВилл", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/vkusvill.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57271676", "shop": "convenience"}, "addTags": {"brand": "ВкусВилл", "brand:wikidata": "Q57271676", "brand:wikipedia": "ru:Вкусвилл", "name": "ВкусВилл", "shop": "convenience"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Гроздь": {"name": "Гроздь", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/grozdmag/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21638412", "shop": "convenience"}, "addTags": {"brand": "Гроздь", "brand:wikidata": "Q21638412", "brand:wikipedia": "ru:Гроздь (сеть магазинов)", "name": "Гроздь", "shop": "convenience"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Доброном": {"name": "Доброном", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/Eurooptby/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2565040", "shop": "convenience"}, "addTags": {"brand": "Доброном", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Eurotorg", "name": "Доброном", "shop": "convenience"}, "countryCodes": ["by", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Евроопт Market": {"name": "Евроопт Market", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65455869", "shop": "convenience"}, "addTags": {"brand": "Евроопт Market", "brand:wikidata": "Q65455869", "name": "Евроопт Market", "name:ru": "Евроопт Маркет", "shop": "convenience"}, "countryCodes": ["by"], "terms": ["евроопт маркет"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Евроопт Минимаркет": {"name": "Евроопт Минимаркет", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65455911", "shop": "convenience"}, "addTags": {"brand": "Евроопт Минимаркет", "brand:wikidata": "Q65455911", "name": "Евроопт Минимаркет", "shop": "convenience"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Копеечка": {"name": "Копеечка", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q68207105", "shop": "convenience"}, "addTags": {"brand": "Копеечка", "brand:wikidata": "Q68207105", "name": "Копеечка", "shop": "convenience"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Копейка": {"name": "Копейка", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1783878", "shop": "convenience"}, "addTags": {"brand": "Копейка", "brand:en": "Kopeyka", "brand:wikidata": "Q1783878", "brand:wikipedia": "en:Kopeyka (supermarket)", "name": "Копейка", "name:en": "Kopeyka", "shop": "convenience"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Магнит": {"name": "Магнит", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/magnitretail/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q940518", "shop": "convenience"}, "addTags": {"brand": "Магнит", "brand:en": "Magnit", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит", "name:en": "Magnit", "shop": "convenience"}, "terms": ["магнит у дома"], "matchScore": 2, "suggestion": true}, - "shop/convenience/Мария-Ра": {"name": "Мария-Ра", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/mariarashop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4281631", "shop": "convenience"}, "addTags": {"brand": "Мария-Ра", "brand:wikidata": "Q4281631", "brand:wikipedia": "ru:Мария-Ра", "name": "Мария-Ра", "shop": "convenience"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/Сильпо": {"name": "Сильпо", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/silpo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4419434", "shop": "convenience"}, "addTags": {"brand": "Сильпо", "brand:wikidata": "Q4419434", "brand:wikipedia": "ru:Сильпо", "name": "Сильпо", "shop": "convenience"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/จิฟฟี่": {"name": "จิฟฟี่", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16770436", "shop": "convenience"}, "addTags": {"brand": "จิฟฟี่", "brand:en": "Jiffy", "brand:th": "จิฟฟี่", "brand:wikidata": "Q16770436", "brand:wikipedia": "th:จิฟฟี่", "name": "จิฟฟี่", "name:en": "Jiffy", "name:th": "จิฟฟี่", "shop": "convenience"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/アンスリー": {"name": "アンスリー", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/499731979613401089/GBBgiBnb_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17192555", "shop": "convenience"}, "addTags": {"alt_name:en": "Ansuri", "brand": "アンスリー", "brand:en": "an3", "brand:ja": "アンスリー", "brand:wikidata": "Q17192555", "brand:wikipedia": "ja:アンスリー", "name": "アンスリー", "name:en": "An3", "name:ja": "アンスリー", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/コミュニティ・ストア": {"name": "コミュニティ・ストア", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCommunity%20Store%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11302585", "shop": "convenience"}, "addTags": {"brand": "コミュニティ・ストア", "brand:en": "Community Store", "brand:ja": "コミュニティ・ストア", "brand:wikidata": "Q11302585", "brand:wikipedia": "ja:コミュニティ・ストア", "name": "コミュニティ・ストア", "name:en": "Community Store", "name:ja": "コミュニティ・ストア", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/サンクス": {"name": "サンクス", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FUny.group.JPG&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16141064", "shop": "convenience"}, "addTags": {"brand": "サンクス", "brand:en": "Sunkus", "brand:ja": "サンクス", "brand:wikidata": "Q16141064", "brand:wikipedia": "ja:サークルKサンクス", "name": "サンクス", "name:en": "Sunkus", "name:ja": "サンクス", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/サークルK": {"name": "サークルK", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/CircleKStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3268010", "shop": "convenience"}, "addTags": {"brand": "サークルK", "brand:en": "Circle K", "brand:ja": "サークルK", "brand:wikidata": "Q3268010", "brand:wikipedia": "en:Circle K", "name": "サークルK", "name:en": "Circle K", "name:ja": "サークルK", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/スリーエフ": {"name": "スリーエフ", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/875645560073539585/X1oFVQef_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11313419", "shop": "convenience"}, "addTags": {"brand": "スリーエフ", "brand:en": "Three F", "brand:ja": "スリーエフ", "brand:wikidata": "Q11313419", "brand:wikipedia": "ja:スリーエフ", "name": "スリーエフ", "name:en": "Three F", "name:ja": "スリーエフ", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/セイコーマート": {"name": "セイコーマート", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/1019751731402379264/OudcSFFt_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11314123", "shop": "convenience"}, "addTags": {"brand": "セイコーマート", "brand:en": "Seicomart", "brand:ja": "セイコーマート", "brand:wikidata": "Q11314123", "brand:wikipedia": "ja:セイコーマート", "name": "セイコーマート", "name:en": "Seicomart", "name:ja": "セイコーマート", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/セブン-イレブン": {"name": "セブン-イレブン", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q259340", "shop": "convenience"}, "addTags": {"brand": "セブン-イレブン", "brand:en": "7-Eleven", "brand:ja": "セブン-イレブン", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "セブン-イレブン", "name:en": "7-Eleven", "name:ja": "セブン-イレブン", "official_name:en": "Seven-Eleven", "shop": "convenience"}, "countryCodes": ["jp"], "terms": ["セブンイレブン(7-11)", "セブンイレブン(seven-eleven)"], "matchScore": 2, "suggestion": true}, - "shop/convenience/セーブオン": {"name": "セーブオン", "icon": "fas-shopping-basket", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSave%20On%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11314868", "shop": "convenience"}, "addTags": {"brand": "セーブオン", "brand:en": "Save On", "brand:ja": "セーブオン", "brand:wikidata": "Q11314868", "brand:wikipedia": "ja:セーブオン", "name": "セーブオン", "name:en": "Save On", "name:ja": "セーブオン", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/デイリーヤマザキ": {"name": "デイリーヤマザキ", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/2355699395/mzlxm9bws5rxrs44z484_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5209392", "shop": "convenience"}, "addTags": {"brand": "デイリーヤマザキ", "brand:en": "Daily Yamazaki", "brand:ja": "デイリーヤマザキ", "brand:wikidata": "Q5209392", "brand:wikipedia": "en:Daily Yamazaki", "name": "デイリーヤマザキ", "name:en": "Daily Yamazaki", "name:ja": "デイリーヤマザキ", "shop": "convenience"}, "countryCodes": ["jp"], "terms": ["デイリーストア"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ナチュラルローソン": {"name": "ナチュラルローソン", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11323850", "shop": "convenience"}, "addTags": {"brand": "ナチュラルローソン", "brand:en": "NATURAL LAWSON", "brand:ja": "ナチュラルローソン", "brand:wikidata": "Q11323850", "brand:wikipedia": "ja:ナチュラルローソン", "name": "ナチュラルローソン", "name:en": "Natural Lawson", "name:ja": "ナチュラルローソン", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/ファミリーマート": {"name": "ファミリーマート", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/familymart.japan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1191685", "shop": "convenience"}, "addTags": {"brand": "ファミリーマート", "brand:en": "FamilyMart", "brand:ja": "ファミリーマート", "brand:wikidata": "Q1191685", "brand:wikipedia": "en:FamilyMart", "name": "ファミリーマート", "name:en": "FamilyMart", "name:ja": "ファミリーマート", "shop": "convenience"}, "countryCodes": ["jp"], "terms": ["ファミマ"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ポプラ": {"name": "ポプラ", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/826586791058644992/chXkmxnQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7229380", "shop": "convenience"}, "addTags": {"brand": "ポプラ", "brand:en": "Poplar", "brand:ja": "ポプラ", "brand:wikidata": "Q7229380", "brand:wikipedia": "ja:ポプラ (コンビニエンスストア)", "name": "ポプラ", "name:en": "Poplar", "name:ja": "ポプラ", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/ミニストップ": {"name": "ミニストップ", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/875897219508871168/OZ1swK9c_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1038929", "shop": "convenience"}, "addTags": {"brand": "ミニストップ", "brand:en": "Ministop", "brand:ja": "ミニストップ", "brand:wikidata": "Q1038929", "brand:wikipedia": "ja:ミニストップ", "name": "ミニストップ", "name:en": "Ministop", "name:ja": "ミニストップ", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/ヤマザキショップ": {"name": "ヤマザキショップ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11345131", "shop": "convenience"}, "addTags": {"brand": "ヤマザキショップ", "brand:ja": "ヤマザキショップ", "brand:wikidata": "Q11345131", "brand:wikipedia": "ja:ヤマザキショップ", "name": "ヤマザキショップ", "name:en": "Yamazaki Shop", "name:ja": "ヤマザキショップ", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/ローソン": {"name": "ローソン", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/lawson.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1557223", "shop": "convenience"}, "addTags": {"brand": "ローソン", "brand:en": "LAWSON", "brand:ja": "ローソン", "brand:wikidata": "Q1557223", "brand:wikipedia": "ja:ローソン", "name": "ローソン", "name:en": "Lawson", "name:ja": "ローソン", "shop": "convenience"}, "countryCodes": ["jp"], "terms": ["ローソン"], "matchScore": 2, "suggestion": true}, - "shop/convenience/ローソンストア100": {"name": "ローソンストア100", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/875652208217411585/B2Uc8iMy_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11350960", "shop": "convenience"}, "addTags": {"brand": "ローソンストア100", "brand:en": "LAWSON STORE 100", "brand:ja": "ローソンストア100", "brand:wikidata": "Q11350960", "brand:wikipedia": "ja:ローソンストア100", "name": "ローソンストア100", "name:en": "Lawson Store 100", "name:ja": "ローソンストア100", "shop": "convenience"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/ローソン・スリーエフ": {"name": "ローソン・スリーエフ", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24866804", "shop": "convenience"}, "addTags": {"brand": "ローソン・スリーエフ", "brand:en": "LAWSON・Three F", "brand:ja": "ローソン・スリーエフ", "brand:wikidata": "Q24866804", "brand:wikipedia": "ja:ローソン・スリーエフ", "name": "ローソン・スリーエフ", "name:en": "Lawson・Three F", "name:ja": "ローソン・スリーエフ", "shop": "convenience"}, "countryCodes": ["jp"], "terms": ["lawson+スリーエフ", "ローソン・スリーエフ"], "matchScore": 2, "suggestion": true}, - "shop/convenience/全家": {"name": "全家", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/familymart.japan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1191685", "shop": "convenience"}, "addTags": {"brand": "全家", "brand:en": "FamilyMart", "brand:wikidata": "Q1191685", "brand:wikipedia": "zh:FamilyMart", "name": "全家", "name:en": "FamilyMart", "shop": "convenience"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/全家便利商店": {"name": "全家便利商店", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10891564", "shop": "convenience"}, "addTags": {"brand": "全家便利商店", "brand:en": "FamilyMart", "brand:wikidata": "Q10891564", "brand:wikipedia": "zh:全家便利商店", "name": "全家便利商店", "name:en": "FamilyMart", "shop": "convenience"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/萊爾富": {"name": "萊爾富", "icon": "fas-shopping-basket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11326216", "shop": "convenience"}, "addTags": {"brand": "萊爾富", "brand:en": "Hi-Life", "brand:wikidata": "Q11326216", "brand:wikipedia": "zh:萊爾富", "name": "萊爾富", "name:en": "Hi-Life", "shop": "convenience"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/미니스톱": {"name": "미니스톱", "icon": "fas-shopping-basket", "imageURL": "https://pbs.twimg.com/profile_images/875897219508871168/OZ1swK9c_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1038929", "shop": "convenience"}, "addTags": {"brand": "미니스톱", "brand:ko": "미니스톱", "brand:wikidata": "Q1038929", "brand:wikipedia": "en:Ministop", "name": "미니스톱", "name:ko": "미니스톱", "shop": "convenience"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/convenience/세븐일레븐": {"name": "세븐일레븐", "icon": "fas-shopping-basket", "imageURL": "https://graph.facebook.com/7ElevenMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q259340", "shop": "convenience"}, "addTags": {"brand": "세븐일레븐", "brand:en": "7-Eleven", "brand:ko": "세븐일레븐", "brand:wikidata": "Q259340", "brand:wikipedia": "en:7-Eleven", "name": "세븐일레븐", "name:en": "7-Eleven", "name:ko": "세븐일레븐", "shop": "convenience"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/copyshop/FaxCopy": {"name": "FaxCopy", "icon": "fas-print", "imageURL": "https://graph.facebook.com/faxcopy.sk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90990574", "shop": "copyshop"}, "addTags": {"brand": "FaxCopy", "brand:wikidata": "Q90990574", "name": "FaxCopy", "shop": "copyshop"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/copyshop/FedEx Office": {"name": "FedEx Office", "icon": "fas-print", "imageURL": "https://graph.facebook.com/FedExOffice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q474379", "shop": "copyshop"}, "addTags": {"brand": "FedEx Office", "brand:wikidata": "Q474379", "brand:wikipedia": "en:FedEx Office", "name": "FedEx Office", "shop": "copyshop"}, "countryCodes": ["us"], "terms": ["fedex office print and ship center"], "matchScore": 2, "suggestion": true}, - "shop/copyshop/Minuteman Press": {"name": "Minuteman Press", "icon": "fas-print", "imageURL": "https://graph.facebook.com/MinutemanPressFranchise/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64866081", "shop": "copyshop"}, "addTags": {"brand": "Minuteman Press", "brand:wikidata": "Q64866081", "name": "Minuteman Press", "shop": "copyshop"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/copyshop/Sir Speedy": {"name": "Sir Speedy", "icon": "fas-print", "imageURL": "https://graph.facebook.com/SirSpeedyCorporate/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17088225", "shop": "copyshop"}, "addTags": {"brand": "Sir Speedy", "brand:wikidata": "Q17088225", "brand:wikipedia": "en:Sir Speedy", "name": "Sir Speedy", "shop": "copyshop"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/copyshop/アクセア": {"name": "アクセア", "icon": "fas-print", "imageURL": "https://graph.facebook.com/accea/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90043156", "shop": "copyshop"}, "addTags": {"brand": "アクセア", "brand:en": "Accea", "brand:ja": "アクセア", "brand:wikidata": "Q90043156", "name": "アクセア", "name:en": "Accea", "name:ja": "アクセア", "shop": "copyshop"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Aveda": {"name": "Aveda", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/Aveda/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4827965", "shop": "cosmetics"}, "addTags": {"brand": "Aveda", "brand:wikidata": "Q4827965", "brand:wikipedia": "en:Aveda", "name": "Aveda", "shop": "cosmetics"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Bath & Body Works": {"name": "Bath & Body Works", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/bathandbodyworks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q810773", "shop": "cosmetics"}, "addTags": {"brand": "Bath & Body Works", "brand:wikidata": "Q810773", "brand:wikipedia": "en:Bath & Body Works", "name": "Bath & Body Works", "shop": "cosmetics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Jurlique": {"name": "Jurlique", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/jurlique.us/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17008691", "shop": "cosmetics"}, "addTags": {"brand": "Jurlique", "brand:wikidata": "Q17008691", "brand:wikipedia": "en:Jurlique", "name": "Jurlique", "shop": "cosmetics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/KIKO Milano": {"name": "KIKO Milano", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/KikoMilanoGlobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3812045", "shop": "cosmetics"}, "addTags": {"brand": "KIKO Milano", "brand:wikidata": "Q3812045", "brand:wikipedia": "it:KIKO", "name": "KIKO Milano", "shop": "cosmetics"}, "countryCodes": ["be", "de", "es", "fr", "gb", "nl"], "terms": ["kiko"], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Kiehl's": {"name": "Kiehl's", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/KiehlsUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3196447", "shop": "cosmetics"}, "addTags": {"brand": "Kiehl's", "brand:wikidata": "Q3196447", "brand:wikipedia": "en:Kiehl's", "name": "Kiehl's", "shop": "cosmetics"}, "countryCodes": ["ca", "us"], "terms": ["kiehl's since 1851"], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/L'Occitane": {"name": "L'Occitane", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/loccitaneusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1880676", "shop": "cosmetics"}, "addTags": {"brand": "L'Occitane", "brand:wikidata": "Q1880676", "brand:wikipedia": "en:L'Occitane en Provence", "name": "L'Occitane", "shop": "cosmetics"}, "terms": ["l'occitane en provence"], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Lush": {"name": "Lush", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/LUSHJAPAN/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1585448", "shop": "cosmetics"}, "addTags": {"brand": "Lush", "brand:wikidata": "Q1585448", "brand:wikipedia": "en:Lush (company)", "name": "Lush", "shop": "cosmetics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/MAC Cosmetics": {"name": "MAC Cosmetics", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/MACcosmetics/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2624442", "shop": "cosmetics"}, "addTags": {"brand": "MAC Cosmetics", "brand:wikidata": "Q2624442", "brand:wikipedia": "en:MAC Cosmetics", "name": "MAC Cosmetics", "shop": "cosmetics", "short_name": "M·A·C"}, "countryCodes": ["ca", "de", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Nature Republic": {"name": "Nature Republic", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/naturerepublic.kr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16935507", "shop": "cosmetics"}, "addTags": {"brand": "Nature Republic", "brand:wikidata": "Q16935507", "brand:wikipedia": "en:Nature Republic", "name": "Nature Republic", "shop": "cosmetics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Nocibé": {"name": "Nocibé", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/nocibe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3342592", "shop": "cosmetics"}, "addTags": {"brand": "Nocibé", "brand:wikidata": "Q3342592", "brand:wikipedia": "fr:Nocibé", "name": "Nocibé", "shop": "cosmetics"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Origins": {"name": "Origins", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/Origins/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6643229", "shop": "cosmetics"}, "addTags": {"brand": "Origins", "brand:wikidata": "Q6643229", "brand:wikipedia": "en:Origins (cosmetics)", "name": "Origins", "shop": "cosmetics"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Rituals": {"name": "Rituals", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/RitualsCosmetics/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62874140", "shop": "cosmetics"}, "addTags": {"brand": "Rituals", "brand:wikidata": "Q62874140", "name": "Rituals", "shop": "cosmetics"}, "countryCodes": ["be", "ch", "de", "es", "gb", "nl", "se", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Saje": {"name": "Saje", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/SajeWellness/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q44631749", "shop": "cosmetics"}, "addTags": {"brand": "Saje", "brand:wikidata": "Q44631749", "brand:wikipedia": "en:Saje Natural Wellness", "name": "Saje", "shop": "cosmetics"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Sephora": {"name": "Sephora", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/sephoraturkiye/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2408041", "shop": "cosmetics"}, "addTags": {"brand": "Sephora", "brand:wikidata": "Q2408041", "brand:wikipedia": "en:Sephora", "name": "Sephora", "shop": "cosmetics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/The Body Shop": {"name": "The Body Shop", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/TheBodyShopUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q837851", "shop": "cosmetics"}, "addTags": {"brand": "The Body Shop", "brand:wikidata": "Q837851", "brand:wikipedia": "en:The Body Shop", "name": "The Body Shop", "shop": "cosmetics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Ulta Beauty": {"name": "Ulta Beauty", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/UltaBeauty/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7880076", "shop": "cosmetics"}, "addTags": {"brand": "Ulta Beauty", "brand:wikidata": "Q7880076", "brand:wikipedia": "en:Ulta Beauty", "name": "Ulta Beauty", "shop": "cosmetics"}, "countryCodes": ["us"], "terms": ["ulta"], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/bareMinerals": {"name": "bareMinerals", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/bareminerals/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66740659", "shop": "cosmetics"}, "addTags": {"brand": "bareMinerals", "brand:wikidata": "Q66740659", "name": "bareMinerals", "shop": "cosmetics"}, "countryCodes": ["au", "ca", "dk", "gb", "ie", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Л'Этуаль": {"name": "Л'Этуаль", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/letoile.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18400706", "shop": "cosmetics"}, "addTags": {"brand": "Л'Этуаль", "brand:wikidata": "Q18400706", "brand:wikipedia": "ru:Л’Этуаль", "name": "Л'Этуаль", "shop": "cosmetics"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/cosmetics/Магнит Косметик": {"name": "Магнит Косметик", "icon": "temaki-lipstick", "imageURL": "https://graph.facebook.com/magnitretail/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q940518", "shop": "cosmetics"}, "addTags": {"brand": "Магнит Косметик", "brand:en": "Magnit Cosmetics", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит Косметик", "name:en": "Magnit Cosmetics", "shop": "cosmetics"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Atwoods": {"name": "Atwoods", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/Atwoods.Ranch.and.Home.Stores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4818874", "shop": "country_store"}, "addTags": {"brand": "Atwoods", "brand:wikidata": "Q4818874", "brand:wikipedia": "en:Atwoods", "name": "Atwoods", "shop": "country_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Blain's Farm & Fleet": {"name": "Blain's Farm & Fleet", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/BlainsFarmandFleet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4923906", "shop": "country_store"}, "addTags": {"brand": "Blain's Farm & Fleet", "brand:wikidata": "Q4923906", "brand:wikipedia": "en:Blain's Farm & Fleet", "name": "Blain's Farm & Fleet", "shop": "country_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Bomgaars": {"name": "Bomgaars", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/BomgaarsSupply.Corporate/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22059070", "shop": "country_store"}, "addTags": {"brand": "Bomgaars", "brand:wikidata": "Q22059070", "brand:wikipedia": "en:Bomgaars", "name": "Bomgaars", "shop": "country_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Fleet Farm": {"name": "Fleet Farm", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/fleetfarm/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6859973", "shop": "country_store"}, "addTags": {"brand": "Fleet Farm", "brand:wikidata": "Q6859973", "brand:wikipedia": "en:Fleet Farm", "name": "Fleet Farm", "shop": "country_store"}, "countryCodes": ["us"], "terms": ["mills fleet farm"], "matchScore": 2, "suggestion": true}, - "shop/country_store/Grange Co-op": {"name": "Grange Co-op", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/grangecoop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5595639", "shop": "country_store"}, "addTags": {"brand": "Grange Co-op", "brand:wikidata": "Q5595639", "brand:wikipedia": "en:Grange Cooperative", "name": "Grange Co-op", "shop": "country_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Home of Economy": {"name": "Home of Economy", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/Homeofeconomy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5889100", "shop": "country_store"}, "addTags": {"brand": "Home of Economy", "brand:wikidata": "Q5889100", "brand:wikipedia": "en:Home of Economy", "name": "Home of Economy", "shop": "country_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Norbys Farm Fleet": {"name": "Norbys Farm Fleet", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/norbysfarmfleet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7050461", "shop": "country_store"}, "addTags": {"brand": "Norbys Farm Fleet", "brand:wikidata": "Q7050461", "brand:wikipedia": "en:Norby's Farm Fleet", "name": "Norbys Farm Fleet", "shop": "country_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Orscheln Farm & Home": {"name": "Orscheln Farm & Home", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/orschelnfarmandhome/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22060331", "shop": "country_store"}, "addTags": {"brand": "Orscheln Farm & Home", "brand:wikidata": "Q22060331", "brand:wikipedia": "en:Orscheln Farm & Home", "name": "Orscheln Farm & Home", "shop": "country_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Peavey Mart": {"name": "Peavey Mart", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/PeaveyMart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7158483", "shop": "country_store"}, "addTags": {"brand": "Peavey Mart", "brand:wikidata": "Q7158483", "brand:wikipedia": "en:Peavey Mart", "name": "Peavey Mart", "shop": "country_store"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Rural King": {"name": "Rural King", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/RuralKing/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7380525", "shop": "country_store"}, "addTags": {"brand": "Rural King", "brand:wikidata": "Q7380525", "brand:wikipedia": "en:Rural King", "name": "Rural King", "shop": "country_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Stock+Field": {"name": "Stock+Field", "icon": "fas-hat-cowboy-side", "imageURL": "https://pbs.twimg.com/profile_images/1157008042975793152/gK8uX_ni_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q84572995", "shop": "country_store"}, "addTags": {"brand": "Stock+Field", "brand:wikidata": "Q84572995", "name": "Stock+Field", "shop": "country_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/TSC Stores": {"name": "TSC Stores", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/TSCStoresCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62720230", "shop": "country_store"}, "addTags": {"brand": "TSC Stores", "brand:wikidata": "Q62720230", "name": "TSC Stores", "shop": "country_store"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Theisen's": {"name": "Theisen's", "icon": "fas-hat-cowboy-side", "imageURL": "https://pbs.twimg.com/profile_images/743446346414227456/6V3KBxMe_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7777850", "shop": "country_store"}, "addTags": {"brand": "Theisen's", "brand:wikidata": "Q7777850", "brand:wikipedia": "en:Theisen's", "name": "Theisen's", "shop": "country_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/country_store/Tractor Supply Company": {"name": "Tractor Supply Company", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/TractorSupplyCo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15109925", "shop": "country_store"}, "addTags": {"brand": "Tractor Supply Company", "brand:wikidata": "Q15109925", "brand:wikipedia": "en:Tractor Supply Company", "name": "Tractor Supply Company", "shop": "country_store"}, "countryCodes": ["us"], "terms": ["tractor supply co"], "matchScore": 2, "suggestion": true}, - "shop/country_store/Wynnstay": {"name": "Wynnstay", "icon": "fas-hat-cowboy-side", "imageURL": "https://graph.facebook.com/WynnstayCountryStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63016351", "shop": "country_store"}, "addTags": {"brand": "Wynnstay", "brand:wikidata": "Q63016351", "name": "Wynnstay", "shop": "country_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/craft/A.C. Moore": {"name": "A.C. Moore", "icon": "fas-cut", "imageURL": "https://graph.facebook.com/acmoore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4647066", "shop": "craft"}, "addTags": {"brand": "A.C. Moore", "brand:wikidata": "Q4647066", "brand:wikipedia": "en:A.C. Moore", "name": "A.C. Moore", "shop": "craft"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/craft/Hobby Lobby": {"name": "Hobby Lobby", "icon": "fas-cut", "imageURL": "https://graph.facebook.com/HobbyLobby/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5874938", "shop": "craft"}, "addTags": {"brand": "Hobby Lobby", "brand:wikidata": "Q5874938", "brand:wikipedia": "en:Hobby Lobby", "name": "Hobby Lobby", "shop": "craft"}, "countryCodes": ["in", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/craft/Hobbycraft": {"name": "Hobbycraft", "icon": "fas-cut", "imageURL": "https://graph.facebook.com/HobbycraftUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16984508", "shop": "craft"}, "addTags": {"brand": "Hobbycraft", "brand:wikidata": "Q16984508", "brand:wikipedia": "en:Hobbycraft", "name": "Hobbycraft", "shop": "craft"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/craft/Jo-Ann": {"name": "Jo-Ann", "icon": "fas-cut", "imageURL": "https://graph.facebook.com/JoAnn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6203968", "shop": "craft"}, "addTags": {"brand": "Jo-Ann", "brand:wikidata": "Q6203968", "brand:wikipedia": "en:Jo-Ann Stores", "name": "Jo-Ann", "shop": "craft"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/craft/Michaels": {"name": "Michaels", "icon": "fas-cut", "imageURL": "https://graph.facebook.com/Michaels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6835667", "shop": "craft"}, "addTags": {"brand": "Michaels", "brand:wikidata": "Q6835667", "brand:wikipedia": "en:Michaels", "name": "Michaels", "shop": "craft"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/craft/Woodcraft": {"name": "Woodcraft", "icon": "fas-cut", "imageURL": "https://graph.facebook.com/WoodcraftWoodworking/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22026341", "shop": "craft"}, "addTags": {"brand": "Woodcraft", "brand:wikidata": "Q22026341", "brand:wikipedia": "en:Woodcraft Supply", "name": "Woodcraft", "shop": "craft"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/dairy/Veronika": {"name": "Veronika", "icon": "fas-cheese", "imageURL": "https://graph.facebook.com/minimljekaraveronika/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87399724", "shop": "dairy"}, "addTags": {"brand": "Veronika", "brand:wikidata": "Q87399724", "name": "Veronika", "shop": "dairy"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/deli/ほっともっと": {"name": "ほっともっと", "icon": "temaki-meat", "imageURL": "https://graph.facebook.com/hottomotto/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10850949", "shop": "deli"}, "addTags": {"brand": "ほっともっと", "brand:en": "Hotto Motto", "brand:ja": "ほっともっと", "brand:wikidata": "Q10850949", "brand:wikipedia": "ja:ほっともっと", "name": "ほっともっと", "name:en": "Hotto Motto", "name:ja": "ほっともっと", "shop": "deli"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/deli/京樽": {"name": "京樽", "icon": "temaki-meat", "imageURL": "https://graph.facebook.com/kyotaru.sushi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11374503", "shop": "deli"}, "addTags": {"brand": "京樽", "brand:en": "Kyotaru", "brand:ja": "京樽", "brand:wikidata": "Q11374503", "brand:wikipedia": "ja:京樽", "name": "京樽", "name:en": "Kyotaru", "name:ja": "京樽", "shop": "deli"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Barneys New York": {"name": "Barneys New York", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BarneysNY/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q59465", "shop": "department_store"}, "addTags": {"brand": "Barneys New York", "brand:wikidata": "Q59465", "brand:wikipedia": "en:Barneys New York", "name": "Barneys New York", "shop": "department_store"}, "countryCodes": ["us"], "terms": ["barneys"], "matchScore": 2, "suggestion": true}, - "shop/department_store/Beales": {"name": "Beales", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/LoveBeales/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4876141", "shop": "department_store"}, "addTags": {"brand": "Beales", "brand:wikidata": "Q4876141", "brand:wikipedia": "en:Beales (department store)", "name": "Beales", "shop": "department_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Bealls (Florida-based)": {"name": "Bealls (Florida-based)", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BeallsCorp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4876153", "shop": "department_store"}, "addTags": {"brand": "Bealls", "brand:wikidata": "Q4876153", "brand:wikipedia": "en:Bealls (Florida)", "name": "Bealls", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Bealls (Texas-based)": {"name": "Bealls (Texas-based)", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Beallstx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4876156", "shop": "department_store"}, "addTags": {"brand": "Bealls", "brand:wikidata": "Q4876156", "brand:wikipedia": "en:Bealls (Texas)", "name": "Bealls", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Belk": {"name": "Belk", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Belk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q127428", "shop": "department_store"}, "addTags": {"brand": "Belk", "brand:wikidata": "Q127428", "brand:wikipedia": "en:Belk", "name": "Belk", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Bi-Mart": {"name": "Bi-Mart", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BiMart.Membership.Discount.Stores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4902331", "shop": "department_store"}, "addTags": {"brand": "Bi-Mart", "brand:wikidata": "Q4902331", "brand:wikipedia": "en:Bi-Mart", "name": "Bi-Mart", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Big Lots": {"name": "Big Lots", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/biglots/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4905973", "shop": "department_store"}, "addTags": {"brand": "Big Lots", "brand:wikidata": "Q4905973", "brand:wikipedia": "en:Big Lots", "name": "Big Lots", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Big W": {"name": "Big W", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BIGWaustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4906646", "shop": "department_store"}, "addTags": {"brand": "Big W", "brand:wikidata": "Q4906646", "brand:wikipedia": "en:Big W", "name": "Big W", "shop": "department_store"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Bloomingdale's": {"name": "Bloomingdale's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Bloomingdales/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q283383", "shop": "department_store"}, "addTags": {"brand": "Bloomingdale's", "brand:wikidata": "Q283383", "brand:wikipedia": "en:Bloomingdale's", "name": "Bloomingdale's", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Boscov's": {"name": "Boscov's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/boscovs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4947190", "shop": "department_store"}, "addTags": {"brand": "Boscov's", "brand:wikidata": "Q4947190", "brand:wikipedia": "en:Boscov's", "name": "Boscov's", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Boyes": {"name": "Boyes", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/boyesstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7958471", "shop": "department_store"}, "addTags": {"brand": "Boyes", "brand:wikidata": "Q7958471", "brand:wikipedia": "en:Boyes (retailer)", "name": "Boyes", "shop": "department_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/BrightHouse": {"name": "BrightHouse", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/BrightHouseUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4967357", "shop": "department_store"}, "addTags": {"brand": "BrightHouse", "brand:wikidata": "Q4967357", "brand:wikipedia": "en:BrightHouse (retailer)", "name": "BrightHouse", "shop": "department_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Canadian Tire": {"name": "Canadian Tire", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Canadiantire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1032400", "shop": "department_store"}, "addTags": {"brand": "Canadian Tire", "brand:wikidata": "Q1032400", "brand:wikipedia": "en:Canadian Tire", "name": "Canadian Tire", "shop": "department_store"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Casas Bahia": {"name": "Casas Bahia", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/CasasBahia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5048048", "shop": "department_store"}, "addTags": {"brand": "Casas Bahia", "brand:wikidata": "Q5048048", "brand:wikipedia": "en:Casas Bahia", "name": "Casas Bahia", "shop": "department_store"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Century 21": {"name": "Century 21", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/century21stores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5063125", "shop": "department_store"}, "addTags": {"brand": "Century 21", "brand:wikidata": "Q5063125", "brand:wikipedia": "en:Century 21 (department store)", "name": "Century 21", "shop": "department_store"}, "countryCodes": ["us"], "terms": ["c21"], "matchScore": 2, "suggestion": true}, - "shop/department_store/Coppel": {"name": "Coppel", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/tiendascoppel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2497795", "shop": "department_store"}, "addTags": {"brand": "Coppel", "brand:wikidata": "Q2497795", "brand:wikipedia": "en:Coppel", "name": "Coppel", "shop": "department_store"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/David Jones": {"name": "David Jones", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/davidjonesstore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5235753", "shop": "department_store"}, "addTags": {"brand": "David Jones", "brand:wikidata": "Q5235753", "brand:wikipedia": "en:David Jones Limited", "name": "David Jones", "shop": "department_store"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Debenhams": {"name": "Debenhams", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Debenhams/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1181484", "shop": "department_store"}, "addTags": {"brand": "Debenhams", "brand:wikidata": "Q1181484", "brand:wikipedia": "en:Debenhams", "name": "Debenhams", "shop": "department_store"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Dillard's": {"name": "Dillard's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Dillards/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q844805", "shop": "department_store"}, "addTags": {"brand": "Dillard's", "brand:wikidata": "Q844805", "brand:wikipedia": "en:Dillard's", "name": "Dillard's", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/El Corte Inglés": {"name": "El Corte Inglés", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/elcorteingles/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q623133", "shop": "department_store"}, "addTags": {"brand": "El Corte Inglés", "brand:wikidata": "Q623133", "brand:wikipedia": "en:El Corte Inglés", "name": "El Corte Inglés", "shop": "department_store"}, "countryCodes": ["es"], "terms": ["corte ingles"], "matchScore": 2, "suggestion": true}, - "shop/department_store/Falabella": {"name": "Falabella", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/falabellachile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5135229", "shop": "department_store"}, "addTags": {"brand": "Falabella", "brand:wikidata": "Q5135229", "brand:wikipedia": "en:Falabella (retail store)", "name": "Falabella", "shop": "department_store"}, "terms": ["saga falabella"], "matchScore": 2, "suggestion": true}, - "shop/department_store/Galeria Kaufhof": {"name": "Galeria Kaufhof", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/GaleriaKarstadtKaufhof/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q322598", "shop": "department_store"}, "addTags": {"brand": "Galeria Kaufhof", "brand:wikidata": "Q322598", "brand:wikipedia": "en:Galeria Kaufhof", "name": "Galeria Kaufhof", "shop": "department_store"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Giant Tiger": {"name": "Giant Tiger", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/GiantTiger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5558429", "shop": "department_store"}, "addTags": {"brand": "Giant Tiger", "brand:wikidata": "Q5558429", "brand:wikipedia": "en:Giant Tiger", "name": "Giant Tiger", "shop": "department_store"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Goody's": {"name": "Goody's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Goodys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5583733", "shop": "department_store"}, "addTags": {"brand": "Goody's", "brand:wikidata": "Q5583733", "brand:wikipedia": "en:Goody's (store)", "name": "Goody's", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Gordmans": {"name": "Gordmans", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/gordmans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5584725", "shop": "department_store"}, "addTags": {"brand": "Gordmans", "brand:wikidata": "Q5584725", "brand:wikipedia": "en:Gordmans", "name": "Gordmans", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/HEMA": {"name": "HEMA", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/hema/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q903805", "shop": "department_store"}, "addTags": {"brand": "HEMA", "brand:wikidata": "Q903805", "brand:wikipedia": "en:HEMA (store)", "name": "HEMA", "shop": "department_store"}, "countryCodes": ["ae", "at", "be", "de", "es", "fr", "gb", "lu", "nl", "qa"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Harvey Norman": {"name": "Harvey Norman", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/HarveyNormanAU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4040441", "shop": "department_store"}, "addTags": {"brand": "Harvey Norman", "brand:wikidata": "Q4040441", "brand:wikipedia": "en:Harvey Norman", "name": "Harvey Norman", "shop": "department_store"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Havan": {"name": "Havan", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Havanoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10294065", "shop": "department_store"}, "addTags": {"brand": "Havan", "brand:wikidata": "Q10294065", "brand:wikipedia": "pt:Havan", "name": "Havan", "shop": "department_store"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/House of Fraser": {"name": "House of Fraser", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/864122487742894081/uHEBHKzj_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5928422", "shop": "department_store"}, "addTags": {"brand": "House of Fraser", "brand:wikidata": "Q5928422", "brand:wikipedia": "en:House of Fraser", "name": "House of Fraser", "shop": "department_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Hudson's Bay": {"name": "Hudson's Bay", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/hudsonsbay/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q641129", "shop": "department_store"}, "addTags": {"alt_name": "The Bay", "brand": "Hudson's Bay", "brand:wikidata": "Q641129", "brand:wikipedia": "en:Hudson's Bay (retailer)", "name": "Hudson's Bay", "shop": "department_store"}, "countryCodes": ["ca", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/JCPenney": {"name": "JCPenney", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/jcp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q920037", "shop": "department_store"}, "addTags": {"brand": "JCPenney", "brand:wikidata": "Q920037", "brand:wikipedia": "en:J. C. Penney", "name": "JCPenney", "official_name": "J.C. Penney Company", "shop": "department_store"}, "countryCodes": ["us"], "terms": ["jcpenny"], "matchScore": 2, "suggestion": true}, - "shop/department_store/John Lewis": {"name": "John Lewis", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/JohnLewisandPartners/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1918981", "shop": "department_store"}, "addTags": {"brand": "John Lewis", "brand:wikidata": "Q1918981", "brand:wikipedia": "en:John Lewis & Partners", "name": "John Lewis", "official_name": "John Lewis & Partners", "shop": "department_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Karstadt": {"name": "Karstadt", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/karstadt1881/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q182910", "shop": "department_store"}, "addTags": {"brand": "Karstadt", "brand:wikidata": "Q182910", "brand:wikipedia": "en:Karstadt", "name": "Karstadt", "shop": "department_store"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Kmart (Australia)": {"name": "Kmart (Australia)", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/KmartAustralia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6421682", "shop": "department_store"}, "addTags": {"brand": "Kmart", "brand:wikidata": "Q6421682", "brand:wikipedia": "en:Kmart Australia", "name": "Kmart", "shop": "department_store"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Kmart (USA)": {"name": "Kmart (USA)", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/kmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1753080", "shop": "department_store"}, "addTags": {"brand": "Kmart", "brand:wikidata": "Q1753080", "brand:wikipedia": "en:Kmart", "name": "Kmart", "shop": "department_store"}, "countryCodes": ["us"], "terms": ["k-mart"], "matchScore": 2, "suggestion": true}, - "shop/department_store/Kohl's": {"name": "Kohl's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/kohls/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q967265", "shop": "department_store"}, "addTags": {"brand": "Kohl's", "brand:wikidata": "Q967265", "brand:wikipedia": "en:Kohl's", "name": "Kohl's", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Lojas Americanas": {"name": "Lojas Americanas", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/lojasamericanas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3064093", "shop": "department_store"}, "addTags": {"brand": "Lojas Americanas", "brand:wikidata": "Q3064093", "brand:wikipedia": "en:Lojas Americanas", "name": "Lojas Americanas", "shop": "department_store"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Lord & Taylor": {"name": "Lord & Taylor", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/lordandtaylor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2749082", "shop": "department_store"}, "addTags": {"brand": "Lord & Taylor", "brand:wikidata": "Q2749082", "brand:wikipedia": "en:Lord & Taylor", "name": "Lord & Taylor", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Lotte Department Store": {"name": "Lotte Department Store", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/LOTTEshopping/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q489905", "shop": "department_store"}, "addTags": {"brand": "Lotte Department Store", "brand:wikidata": "Q489905", "brand:wikipedia": "en:Lotte Department Store", "name": "Lotte Department Store", "shop": "department_store"}, "terms": ["lotte"], "matchScore": 2, "suggestion": true}, - "shop/department_store/M&S Outlet": {"name": "M&S Outlet", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/MarksandSpencer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q714491", "shop": "department_store"}, "addTags": {"brand": "M&S Outlet", "brand:wikidata": "Q714491", "brand:wikipedia": "en:Marks & Spencer", "name": "M&S Outlet", "shop": "department_store"}, "terms": ["marks & spencer outlet"], "matchScore": 2, "suggestion": true}, - "shop/department_store/Macy's": {"name": "Macy's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Macys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q629269", "shop": "department_store"}, "addTags": {"brand": "Macy's", "brand:wikidata": "Q629269", "brand:wikipedia": "en:Macy's", "name": "Macy's", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Manor": {"name": "Manor", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Manor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q382686", "shop": "department_store"}, "addTags": {"brand": "Manor", "brand:wikidata": "Q382686", "brand:wikipedia": "en:Manor (department store)", "name": "Manor", "shop": "department_store"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Marks & Spencer": {"name": "Marks & Spencer", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/MarksandSpencer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q714491", "shop": "department_store"}, "addTags": {"brand": "Marks & Spencer", "brand:wikidata": "Q714491", "brand:wikipedia": "en:Marks & Spencer", "name": "Marks & Spencer", "shop": "department_store"}, "countryCodes": ["gb", "gr", "ie"], "terms": ["m and s"], "matchScore": 2, "suggestion": true}, - "shop/department_store/Marshalls": {"name": "Marshalls", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Marshalls/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15903261", "shop": "department_store"}, "addTags": {"brand": "Marshalls", "brand:wikidata": "Q15903261", "brand:wikipedia": "en:Marshalls", "name": "Marshalls", "shop": "department_store"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Muji": {"name": "Muji", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/707190474159824897/L8PTBztE_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q708789", "shop": "department_store"}, "addTags": {"brand": "Muji", "brand:en": "Muji", "brand:ja": "無印良品", "brand:wikidata": "Q708789", "brand:wikipedia": "en:Muji", "name": "Muji", "name:en": "Muji", "name:ja": "無印良品", "shop": "department_store"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Myer": {"name": "Myer", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/myer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1110323", "shop": "department_store"}, "addTags": {"brand": "Myer", "brand:wikidata": "Q1110323", "brand:wikipedia": "en:Myer", "name": "Myer", "shop": "department_store"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Neiman Marcus": {"name": "Neiman Marcus", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/neimanmarcus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q743497", "shop": "department_store"}, "addTags": {"brand": "Neiman Marcus", "brand:wikidata": "Q743497", "brand:wikipedia": "en:Neiman Marcus", "name": "Neiman Marcus", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Nordstrom": {"name": "Nordstrom", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Nordstrom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q174310", "shop": "department_store"}, "addTags": {"brand": "Nordstrom", "brand:wikidata": "Q174310", "brand:wikipedia": "en:Nordstrom", "name": "Nordstrom", "shop": "department_store"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Oechsle": {"name": "Oechsle", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/tiendasoechsle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6049096", "shop": "department_store"}, "addTags": {"brand": "Oechsle", "brand:wikidata": "Q6049096", "brand:wikipedia": "es:Oechsle", "name": "Oechsle", "shop": "department_store"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/París": {"name": "París", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TiendasParis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20812805", "shop": "department_store"}, "addTags": {"brand": "París", "brand:wikidata": "Q20812805", "brand:wikipedia": "en:París (retail store)", "name": "París", "shop": "department_store"}, "countryCodes": ["cl", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Printemps": {"name": "Printemps", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Printemps/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1535260", "shop": "department_store"}, "addTags": {"brand": "Printemps", "brand:wikidata": "Q1535260", "brand:wikipedia": "fr:Printemps (grands magasins)", "name": "Printemps", "shop": "department_store"}, "countryCodes": ["ad", "cn", "fr", "jp", "sa"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Ripley": {"name": "Ripley", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ripleychile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3433040", "shop": "department_store"}, "addTags": {"brand": "Ripley", "brand:wikidata": "Q3433040", "brand:wikipedia": "en:Ripley S.A.", "name": "Ripley", "shop": "department_store"}, "countryCodes": ["cl", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Ross": {"name": "Ross", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/RossDressforLess/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3442791", "shop": "department_store"}, "addTags": {"brand": "Ross", "brand:wikidata": "Q3442791", "brand:wikipedia": "en:Ross Stores", "name": "Ross", "official_name": "Ross Dress for Less", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Saks Fifth Avenue": {"name": "Saks Fifth Avenue", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/saks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2723882", "shop": "department_store"}, "addTags": {"brand": "Saks Fifth Avenue", "brand:wikidata": "Q2723882", "brand:wikipedia": "en:Saks Fifth Avenue", "name": "Saks Fifth Avenue", "shop": "department_store"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Saks Off 5th": {"name": "Saks Off 5th", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/saks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2723882", "shop": "department_store"}, "addTags": {"brand": "Saks Off 5th", "brand:wikidata": "Q2723882", "brand:wikipedia": "en:Saks Fifth Avenue", "name": "Saks Off 5th", "shop": "department_store"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Sears": {"name": "Sears", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/sears/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6499202", "shop": "department_store"}, "addTags": {"brand": "Sears", "brand:wikidata": "Q6499202", "brand:wikipedia": "en:Sears", "name": "Sears", "shop": "department_store"}, "countryCodes": ["mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Sears Hometown": {"name": "Sears Hometown", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SearsHometownStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q69926963", "shop": "department_store"}, "addTags": {"brand": "Sears Hometown", "brand:wikidata": "Q69926963", "name": "Sears Hometown", "shop": "department_store"}, "countryCodes": ["us"], "terms": ["sears hometown store", "sears hometown stores"], "matchScore": 2, "suggestion": true}, - "shop/department_store/Sears Outlet": {"name": "Sears Outlet", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Sears.Outlet.Stores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20080412", "shop": "department_store"}, "addTags": {"brand": "Sears Outlet", "brand:wikidata": "Q20080412", "name": "Sears Outlet", "shop": "department_store"}, "countryCodes": ["us"], "terms": ["sears outlet store", "sears outlet stores"], "matchScore": 2, "suggestion": true}, - "shop/department_store/Shopko": {"name": "Shopko", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ShopkoOptical/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7501155", "shop": "department_store"}, "addTags": {"brand": "Shopko", "brand:wikidata": "Q7501155", "brand:wikipedia": "en:Shopko", "name": "Shopko", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Shoppers Stop": {"name": "Shoppers Stop", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ShopkoOptical/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7501155", "shop": "department_store"}, "addTags": {"brand": "Shoppers Stop", "brand:wikidata": "Q7501155", "brand:wikipedia": "en:Shoppers Stop", "name": "Shoppers Stop", "shop": "department_store"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Stein Mart": {"name": "Stein Mart", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/SteinMart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7606770", "shop": "department_store"}, "addTags": {"brand": "Stein Mart", "brand:wikidata": "Q7606770", "brand:wikipedia": "en:Stein Mart", "name": "Stein Mart", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Stockmann": {"name": "Stockmann", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/StockmannCOM/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1543093", "shop": "department_store"}, "addTags": {"brand": "Stockmann", "brand:wikidata": "Q1543093", "brand:wikipedia": "fi:Stockmann", "name": "Stockmann", "shop": "department_store"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/TJ Maxx": {"name": "TJ Maxx", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/tjmaxx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10860683", "shop": "department_store"}, "addTags": {"brand": "TJ Maxx", "brand:wikidata": "Q10860683", "brand:wikipedia": "en:TJ Maxx", "name": "TJ Maxx", "shop": "department_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/TK Maxx": {"name": "TK Maxx", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/tkmaxx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23823668", "shop": "department_store"}, "addTags": {"brand": "TK Maxx", "brand:wikidata": "Q23823668", "brand:wikipedia": "en:TK Maxx", "name": "TK Maxx", "shop": "department_store"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Target (Australia)": {"name": "Target (Australia)", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/targetaus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7685854", "shop": "department_store"}, "addTags": {"brand": "Target", "brand:wikidata": "Q7685854", "brand:wikipedia": "en:Target Australia", "name": "Target", "shop": "department_store"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Target (USA)": {"name": "Target (USA)", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/target/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1046951", "shop": "department_store"}, "addTags": {"brand": "Target", "brand:wikidata": "Q1046951", "brand:wikipedia": "en:Target Corporation", "name": "Target", "shop": "department_store"}, "countryCodes": ["us"], "terms": ["super target"], "matchScore": 2, "suggestion": true}, - "shop/department_store/The Warehouse": {"name": "The Warehouse", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TheWarehouseNZ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3566291", "shop": "department_store"}, "addTags": {"brand": "The Warehouse", "brand:wikidata": "Q3566291", "brand:wikipedia": "en:The Warehouse Group", "name": "The Warehouse", "shop": "department_store"}, "countryCodes": ["nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Walmart": {"name": "Walmart", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q483551", "shop": "department_store"}, "addTags": {"brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "name": "Walmart", "shop": "department_store"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/Woolworth": {"name": "Woolworth", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/WoolworthDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q183538", "shop": "department_store"}, "addTags": {"brand": "Woolworth", "brand:wikidata": "Q183538", "brand:wikipedia": "de:Woolworth Deutschland", "name": "Woolworth", "shop": "department_store"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/dd's Discounts": {"name": "dd's Discounts", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ddsdiscounts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q83743863", "shop": "department_store"}, "addTags": {"brand": "dd's Discounts", "brand:wikidata": "Q83743863", "name": "dd's Discounts", "shop": "department_store"}, "countryCodes": ["us"], "terms": ["dd's"], "matchScore": 2, "suggestion": true}, - "shop/department_store/Åhléns": {"name": "Åhléns", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ahlens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q270851", "shop": "department_store"}, "addTags": {"brand": "Åhléns", "brand:wikidata": "Q270851", "brand:wikipedia": "sv:Åhléns", "name": "Åhléns", "shop": "department_store"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/東急ハンズ": {"name": "東急ハンズ", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TokyuHandsInc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q859212", "shop": "department_store"}, "addTags": {"brand": "東急ハンズ", "brand:en": "Tokyu Hands", "brand:ja": "東急ハンズ", "brand:wikidata": "Q859212", "brand:wikipedia": "ja:東急ハンズ", "name": "東急ハンズ", "name:en": "Tokyu Hands", "name:ja": "東急ハンズ", "shop": "department_store"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/department_store/無印良品": {"name": "無印良品", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/707190474159824897/L8PTBztE_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q708789", "shop": "department_store"}, "addTags": {"brand": "無印良品", "brand:en": "Muji", "brand:ja": "無印良品", "brand:wikidata": "Q708789", "brand:wikipedia": "ja:無印良品", "name": "無印良品", "name:en": "Muji", "name:ja": "無印良品", "official_name:en": "Ryohin Keikaku", "shop": "department_store"}, "countryCodes": ["jp", "tw"], "terms": ["良品計画"], "matchScore": 2, "suggestion": true}, - "shop/department_store/롯데백화점": {"name": "롯데백화점", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/LOTTEshopping/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q489905", "shop": "department_store"}, "addTags": {"brand": "롯데백화점", "brand:ko": "롯데백화점", "brand:wikidata": "Q489905", "brand:wikipedia": "ko:롯데백화점", "name": "롯데백화점", "name:en": "Lotte Department Store", "name:ko": "롯데백화점", "shop": "department_store"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Ace Hardware": {"name": "Ace Hardware", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/acehardware/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4672981", "shop": "doityourself"}, "addTags": {"brand": "Ace Hardware", "brand:wikidata": "Q4672981", "brand:wikipedia": "en:Ace Hardware", "name": "Ace Hardware", "shop": "doityourself"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/B&Q": {"name": "B&Q", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/bandq/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q707602", "shop": "doityourself"}, "addTags": {"brand": "B&Q", "brand:wikidata": "Q707602", "brand:wikipedia": "en:B&Q", "name": "B&Q", "shop": "doityourself"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Bauhaus": {"name": "Bauhaus", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q672043", "shop": "doityourself"}, "addTags": {"brand": "Bauhaus", "brand:wikidata": "Q672043", "brand:wikipedia": "en:Bauhaus (company)", "name": "Bauhaus", "shop": "doityourself"}, "countryCodes": ["at", "bg", "ch", "cz", "de", "dk", "ee", "es", "fi", "hr", "hu", "is", "lu", "nl", "no", "se", "si", "sk", "tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Biltema": {"name": "Biltema", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/BiltemaSverige/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3355552", "shop": "doityourself"}, "addTags": {"brand": "Biltema", "brand:wikidata": "Q3355552", "brand:wikipedia": "en:Biltema", "name": "Biltema", "shop": "doityourself"}, "countryCodes": ["dk", "fi", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Brico": {"name": "Brico", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/brico.be/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2510786", "shop": "doityourself"}, "addTags": {"brand": "Brico", "brand:wikidata": "Q2510786", "brand:wikipedia": "en:Brico", "name": "Brico", "shop": "doityourself"}, "countryCodes": ["be", "fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Brico Dépôt": {"name": "Brico Dépôt", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/BricoDepotFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2889702", "shop": "doityourself"}, "addTags": {"brand": "Brico Dépôt", "brand:wikidata": "Q2889702", "brand:wikipedia": "fr:Brico Dépôt", "name": "Brico Dépôt", "shop": "doityourself"}, "countryCodes": ["es", "fr", "pt", "ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Bricoman": {"name": "Bricoman", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/BricomanFrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2925142", "shop": "doityourself"}, "addTags": {"brand": "Bricoman", "brand:wikidata": "Q2925142", "brand:wikipedia": "it:Bricoman", "name": "Bricoman", "shop": "doityourself"}, "countryCodes": ["fr", "it", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Bricomarché": {"name": "Bricomarché", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Bricomarche/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2925147", "shop": "doityourself"}, "addTags": {"brand": "Bricomarché", "brand:wikidata": "Q2925147", "brand:wikipedia": "en:Bricomarché", "name": "Bricomarché", "shop": "doityourself"}, "countryCodes": ["fr", "pl", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Bricorama": {"name": "Bricorama", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/BricoramaFR/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2925146", "shop": "doityourself"}, "addTags": {"brand": "Bricorama", "brand:wikidata": "Q2925146", "brand:wikipedia": "en:Bricorama", "name": "Bricorama", "shop": "doityourself"}, "countryCodes": ["es", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Bunnings Warehouse": {"name": "Bunnings Warehouse", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/1405732718/hammer_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4997829", "shop": "doityourself"}, "addTags": {"brand": "Bunnings Warehouse", "brand:wikidata": "Q4997829", "brand:wikipedia": "en:Bunnings Warehouse", "name": "Bunnings Warehouse", "shop": "doityourself"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Castorama": {"name": "Castorama", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/castorama/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q966971", "shop": "doityourself"}, "addTags": {"brand": "Castorama", "brand:wikidata": "Q966971", "brand:wikipedia": "en:Castorama", "name": "Castorama", "shop": "doityourself"}, "countryCodes": ["fr", "pl", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Clas Ohlson": {"name": "Clas Ohlson", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/clasohlsonsverige/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3356220", "shop": "doityourself"}, "addTags": {"brand": "Clas Ohlson", "brand:wikidata": "Q3356220", "brand:wikipedia": "en:Clas Ohlson", "name": "Clas Ohlson", "shop": "doityourself"}, "countryCodes": ["fi", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Easy": {"name": "Easy", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/EasyHomecenter/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5331091", "shop": "doityourself"}, "addTags": {"brand": "Easy", "brand:wikidata": "Q5331091", "brand:wikipedia": "en:Easy (store)", "name": "Easy", "shop": "doityourself"}, "countryCodes": ["ar", "cl", "co"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Gamma": {"name": "Gamma", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/gamma.be/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2294120", "shop": "doityourself"}, "addTags": {"brand": "Gamma", "brand:wikidata": "Q2294120", "brand:wikipedia": "en:Gamma (store)", "name": "Gamma", "shop": "doityourself"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Globus Baumarkt": {"name": "Globus Baumarkt", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Globus.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q457503", "shop": "doityourself"}, "addTags": {"brand": "Globus Baumarkt", "brand:wikidata": "Q457503", "brand:wikipedia": "de:Globus Holding", "name": "Globus Baumarkt", "shop": "doityourself"}, "countryCodes": ["de", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Hagebaumarkt": {"name": "Hagebaumarkt", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/hagebau/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1568279", "shop": "doityourself"}, "addTags": {"brand": "Hagebaumarkt", "brand:wikidata": "Q1568279", "brand:wikipedia": "de:Hagebau", "name": "Hagebaumarkt", "shop": "doityourself"}, "countryCodes": ["at", "be", "ch", "de", "es", "fr", "lu", "nl"], "terms": ["hagebau"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Hammer": {"name": "Hammer", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/hammerzuhause/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q52159668", "shop": "doityourself"}, "addTags": {"brand": "Hammer", "brand:wikidata": "Q52159668", "brand:wikipedia": "de:Hammer (Fachmarktkette)", "name": "Hammer", "shop": "doityourself"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Hellweg": {"name": "Hellweg", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Hellweg.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1603084", "shop": "doityourself"}, "addTags": {"brand": "Hellweg", "brand:wikidata": "Q1603084", "brand:wikipedia": "de:Hellweg (Baumarkt)", "name": "Hellweg", "shop": "doityourself"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Home Building Centre (Canada)": {"name": "Home Building Centre (Canada)", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homehardwarestores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3139611", "shop": "doityourself"}, "addTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Building Centre", "shop": "doityourself"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Home Hardware Building Centre (Canada)": {"name": "Home Hardware Building Centre (Canada)", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homehardwarestores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3139611", "shop": "doityourself"}, "addTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Hardware Building Centre", "shop": "doityourself"}, "countryCodes": ["ca"], "terms": ["home hardware"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Home Timber & Hardware (Australia)": {"name": "Home Timber & Hardware (Australia)", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/hometimberandhardware/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17006984", "shop": "doityourself"}, "addTags": {"alt_name": "Home Hardware", "brand": "Home Timber & Hardware", "brand:wikidata": "Q17006984", "brand:wikipedia": "en:Home Timber & Hardware", "name": "Home Timber & Hardware", "shop": "doityourself", "short_name": "Home"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Homebase": {"name": "Homebase", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homebase/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9293447", "shop": "doityourself"}, "addTags": {"brand": "Homebase", "brand:wikidata": "Q9293447", "brand:wikipedia": "en:Homebase", "name": "Homebase", "shop": "doityourself"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Hornbach": {"name": "Hornbach", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/hornbach.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q685926", "shop": "doityourself"}, "addTags": {"brand": "Hornbach", "brand:wikidata": "Q685926", "brand:wikipedia": "en:Hornbach (retailer)", "name": "Hornbach", "shop": "doityourself"}, "countryCodes": ["at", "ch", "cz", "de", "lu", "nl", "ro", "se", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Hubo": {"name": "Hubo", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/hubo.be/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3142153", "shop": "doityourself"}, "addTags": {"brand": "Hubo", "brand:wikidata": "Q3142153", "brand:wikipedia": "en:Hubo Belgium", "name": "Hubo", "shop": "doityourself"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Jewson": {"name": "Jewson", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/jewsonuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6190226", "shop": "doityourself"}, "addTags": {"brand": "Jewson", "brand:wikidata": "Q6190226", "brand:wikipedia": "en:Jewson", "name": "Jewson", "shop": "doityourself"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Jula": {"name": "Jula", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FJula%20logga.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10541151", "shop": "doityourself"}, "addTags": {"brand": "Jula", "brand:wikidata": "Q10541151", "brand:wikipedia": "sv:Jula (företag)", "name": "Jula", "shop": "doityourself"}, "countryCodes": ["no", "pl", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Karwei": {"name": "Karwei", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/karwei/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2097480", "shop": "doityourself"}, "addTags": {"brand": "Karwei", "brand:wikidata": "Q2097480", "brand:wikipedia": "en:Karwei", "name": "Karwei", "shop": "doityourself"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Lapeyre": {"name": "Lapeyre", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Lapeyre/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3117467", "shop": "doityourself"}, "addTags": {"brand": "Lapeyre", "brand:wikidata": "Q3117467", "brand:wikipedia": "fr:Groupe Lapeyre", "name": "Lapeyre", "shop": "doityourself"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Leroy Merlin": {"name": "Leroy Merlin", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/leroymerlin/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q889624", "shop": "doityourself"}, "addTags": {"brand": "Leroy Merlin", "brand:wikidata": "Q889624", "brand:wikipedia": "en:Leroy Merlin", "name": "Leroy Merlin", "shop": "doityourself"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Lowe's": {"name": "Lowe's", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/lowes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1373493", "shop": "doityourself"}, "addTags": {"brand": "Lowe's", "brand:wikidata": "Q1373493", "brand:wikipedia": "en:Lowe's", "name": "Lowe's", "shop": "doityourself"}, "countryCodes": ["ca", "mx", "us"], "terms": ["lowes home improvement"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Menards": {"name": "Menards", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/MenardsHomeImprovement/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1639897", "shop": "doityourself"}, "addTags": {"brand": "Menards", "brand:wikidata": "Q1639897", "brand:wikipedia": "en:Menards", "name": "Menards", "shop": "doityourself"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Mitre 10": {"name": "Mitre 10", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/224109081130110/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6882393", "shop": "doityourself"}, "addTags": {"brand": "Mitre 10", "brand:wikidata": "Q6882393", "brand:wikipedia": "en:Mitre 10", "name": "Mitre 10", "shop": "doityourself"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Mr.Bricolage": {"name": "Mr.Bricolage", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/mr.bricolagefrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3141657", "shop": "doityourself"}, "addTags": {"brand": "Mr.Bricolage", "brand:wikidata": "Q3141657", "brand:wikipedia": "fr:Mr Bricolage", "name": "Mr.Bricolage", "shop": "doityourself"}, "countryCodes": ["be", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/OBI": {"name": "OBI", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/obirussia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q300518", "shop": "doityourself"}, "addTags": {"brand": "OBI", "brand:wikidata": "Q300518", "brand:wikipedia": "en:Obi (store)", "name": "OBI", "shop": "doityourself"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Praktiker": {"name": "Praktiker", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/984505914908905/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q680214", "shop": "doityourself"}, "addTags": {"brand": "Praktiker", "brand:wikidata": "Q680214", "brand:wikipedia": "en:Praktiker", "name": "Praktiker", "shop": "doityourself"}, "countryCodes": ["bg", "gr", "hu", "ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Praxis": {"name": "Praxis", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/praxis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2741995", "shop": "doityourself"}, "addTags": {"brand": "Praxis", "brand:wikidata": "Q2741995", "brand:wikipedia": "nl:Praxis (winkel)", "name": "Praxis", "shop": "doityourself"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Promart": {"name": "Promart", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/PROMARTHomecenter/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17626095", "shop": "doityourself"}, "addTags": {"brand": "Promart", "brand:wikidata": "Q17626095", "brand:wikipedia": "en:Promart", "name": "Promart", "shop": "doityourself"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Rona": {"name": "Rona", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/ronainc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3415283", "shop": "doityourself"}, "addTags": {"brand": "Rona", "brand:wikidata": "Q3415283", "brand:wikipedia": "en:Rona, Inc.", "name": "Rona", "shop": "doityourself"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/SUPER VIVA Home": {"name": "SUPER VIVA Home", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLIXIL%20VIVA%20LOGO.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11229278", "shop": "doityourself"}, "addTags": {"brand": "VIVA Home", "brand:en": "VIVA Home", "brand:ja": "ビバホーム", "brand:wikidata": "Q11229278", "brand:wikipedia": "ja:LIXILビバ", "name": "SUPER VIVA Home", "name:en": "SUPER VIVA Home", "name:ja": "スーパービバホーム", "shop": "doityourself", "short_name:en": "SVH"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Screwfix": {"name": "Screwfix", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Screwfix/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7439115", "shop": "doityourself"}, "addTags": {"brand": "Screwfix", "brand:wikidata": "Q7439115", "brand:wikipedia": "en:Screwfix", "name": "Screwfix", "shop": "doityourself"}, "countryCodes": ["de", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Sodimac": {"name": "Sodimac", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homecenter/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7553274", "shop": "doityourself"}, "addTags": {"brand": "Sodimac", "brand:wikidata": "Q7553274", "brand:wikipedia": "es:Sodimac", "name": "Sodimac", "shop": "doityourself"}, "countryCodes": ["ar", "br", "cl", "co", "mx", "pe", "uy"], "terms": ["sodimac constructor"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Tekzen": {"name": "Tekzen", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/tekzenturkiye/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25475379", "shop": "doityourself"}, "addTags": {"brand": "Tekzen", "brand:wikidata": "Q25475379", "brand:wikipedia": "tr:Tekzen", "name": "Tekzen", "shop": "doityourself"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/The Home Depot": {"name": "The Home Depot", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homedepot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q864407", "shop": "doityourself"}, "addTags": {"alt_name": "Home Depot", "brand": "The Home Depot", "brand:wikidata": "Q864407", "brand:wikipedia": "en:The Home Depot", "name": "The Home Depot", "shop": "doityourself"}, "countryCodes": ["ca", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Toolstation": {"name": "Toolstation", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/ToolstationUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7824103", "shop": "doityourself"}, "addTags": {"brand": "Toolstation", "brand:wikidata": "Q7824103", "brand:wikipedia": "en:Toolstation", "name": "Toolstation", "shop": "doityourself"}, "countryCodes": ["fr", "gb", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Toom Baumarkt": {"name": "Toom Baumarkt", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/toom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2442970", "shop": "doityourself"}, "addTags": {"brand": "Toom Baumarkt", "brand:wikidata": "Q2442970", "brand:wikipedia": "de:Toom Baumarkt", "name": "Toom Baumarkt", "shop": "doityourself"}, "countryCodes": ["de"], "terms": ["toom"], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Travis Perkins": {"name": "Travis Perkins", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/TravisPerkinsPlcUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2450664", "shop": "doityourself"}, "addTags": {"brand": "Travis Perkins", "brand:wikidata": "Q2450664", "brand:wikipedia": "en:Travis Perkins", "name": "Travis Perkins", "shop": "doityourself"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/VIVA Home": {"name": "VIVA Home", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLIXIL%20VIVA%20LOGO.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11229278", "shop": "doityourself"}, "addTags": {"brand": "VIVA Home", "brand:en": "VIVA Home", "brand:ja": "ビバホーム", "brand:wikidata": "Q11229278", "brand:wikipedia": "ja:LIXILビバ", "name": "VIVA Home", "name:en": "VIVA Home", "name:ja": "ビバホーム", "shop": "doityourself", "short_name:en": "VH"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Weldom": {"name": "Weldom", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Weldom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16683226", "shop": "doityourself"}, "addTags": {"brand": "Weldom", "brand:wikidata": "Q16683226", "brand:wikipedia": "fr:Weldom", "name": "Weldom", "shop": "doityourself"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Wickes": {"name": "Wickes", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Wickes.co.uk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7998350", "shop": "doityourself"}, "addTags": {"brand": "Wickes", "brand:wikidata": "Q7998350", "brand:wikipedia": "en:Wickes", "name": "Wickes", "shop": "doityourself"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/jem & fix": {"name": "jem & fix", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/jemogfix/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12319200", "shop": "doityourself"}, "addTags": {"brand": "jem & fix", "brand:wikidata": "Q12319200", "brand:wikipedia": "da:Jem & fix", "name": "jem & fix", "shop": "doityourself"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/Леруа Мерлен": {"name": "Леруа Мерлен", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/leroymerlin/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q889624", "shop": "doityourself"}, "addTags": {"brand": "Леруа Мерлен", "brand:en": "Leroy Merlin", "brand:wikidata": "Q889624", "brand:wikipedia": "en:Leroy Merlin", "name": "Леруа Мерлен", "name:en": "Leroy Merlin", "shop": "doityourself"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/アマノ": {"name": "アマノ", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11284890", "shop": "doityourself"}, "addTags": {"brand": "アマノ", "brand:en": "Amano", "brand:ja": "アマノ", "brand:wikidata": "Q11284890", "brand:wikipedia": "ja:アマノ", "name": "アマノ", "name:en": "Amano", "name:ja": "アマノ", "shop": "doityourself"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/カインズホーム": {"name": "カインズホーム", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/cainzfun/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11293852", "shop": "doityourself"}, "addTags": {"brand": "カインズホーム", "brand:en": "Cainz Home", "brand:ja": "カインズホーム", "brand:wikidata": "Q11293852", "brand:wikipedia": "ja:カインズ", "name": "カインズホーム", "name:en": "Cainz Home", "name:ja": "カインズホーム", "shop": "doityourself"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/ケーヨー": {"name": "ケーヨー", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11301462", "shop": "doityourself"}, "addTags": {"brand": "ケーヨー", "brand:en": "Keiyo", "brand:ja": "ケーヨー", "brand:wikidata": "Q11301462", "brand:wikipedia": "ja:ケーヨー", "name": "ケーヨー", "name:en": "Keiyo", "name:ja": "ケーヨー", "shop": "doityourself"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/コメリ": {"name": "コメリ", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/saiengardenclub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11302690", "shop": "doityourself"}, "addTags": {"brand": "コメリ", "brand:en": "Komeri", "brand:ja": "コメリ", "brand:wikidata": "Q11302690", "brand:wikipedia": "ja:コメリ", "name": "コメリ", "name:en": "Komeri", "name:ja": "コメリ", "shop": "doityourself"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/コーナン": {"name": "コーナン", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/kohnan.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11303403", "shop": "doityourself"}, "addTags": {"brand": "コーナン", "brand:en": "Kohnan", "brand:ja": "コーナン", "brand:wikidata": "Q11303403", "brand:wikipedia": "ja:コーナン", "name": "コーナン", "name:en": "Kohnan", "name:ja": "コーナン", "shop": "doityourself"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/doityourself/ナフコ": {"name": "ナフコ", "icon": "temaki-tools", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11323981", "shop": "doityourself"}, "addTags": {"brand": "ナフコ", "brand:en": "Nafco", "brand:ja": "ナフコ", "brand:wikidata": "Q11323981", "brand:wikipedia": "ja:ナフコ (ホームセンター)", "name": "ナフコ", "name:en": "Nafco", "name:ja": "ナフコ", "shop": "doityourself"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/5àsec": {"name": "5àsec", "icon": "temaki-clothes_hanger", "imageURL": "https://graph.facebook.com/5aSecBrasil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2817899", "shop": "dry_cleaning"}, "addTags": {"brand": "5àsec", "brand:wikidata": "Q2817899", "brand:wikipedia": "fr:5àsec", "name": "5àsec", "shop": "dry_cleaning"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/Johnsons": {"name": "Johnsons", "icon": "temaki-clothes_hanger", "imageURL": "https://graph.facebook.com/johnsoncleaners/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6268527", "shop": "dry_cleaning"}, "addTags": {"brand": "Johnsons", "brand:wikidata": "Q6268527", "brand:wikipedia": "en:Johnsons Cleaners UK", "name": "Johnsons", "shop": "dry_cleaning"}, "countryCodes": ["gb"], "terms": ["johnson", "johnsons cleaners"], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/Martinizing Dry Cleaning": {"name": "Martinizing Dry Cleaning", "icon": "temaki-clothes_hanger", "imageURL": "https://graph.facebook.com/MartinizingDryClean/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6777169", "shop": "dry_cleaning"}, "addTags": {"brand": "Martinizing Dry Cleaning", "brand:wikidata": "Q6777169", "brand:wikipedia": "en:Martinizing Dry Cleaning", "name": "Martinizing Dry Cleaning", "shop": "dry_cleaning"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/Tide Cleaners": {"name": "Tide Cleaners", "icon": "temaki-clothes_hanger", "imageURL": "https://graph.facebook.com/tidedrycleaners/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66048841", "shop": "dry_cleaning"}, "addTags": {"brand": "Tide Cleaners", "brand:wikidata": "Q66048841", "name": "Tide Cleaners", "shop": "dry_cleaning"}, "countryCodes": ["us"], "terms": ["tide", "tide dry cleaners"], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/Диана": {"name": "Диана", "icon": "temaki-clothes_hanger", "imageURL": "https://graph.facebook.com/diana.dryclean/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62105088", "shop": "dry_cleaning"}, "addTags": {"brand": "Диана", "brand:wikidata": "Q62105088", "name": "Диана", "shop": "dry_cleaning"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/タカケンサンシャイン": {"name": "タカケンサンシャイン", "icon": "temaki-clothes_hanger", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11315914", "shop": "dry_cleaning"}, "addTags": {"brand": "タカケンサンシャイン", "brand:en": "Takaken Sunshine", "brand:ja": "タカケンサンシャイン", "brand:wikidata": "Q11315914", "brand:wikipedia": "ja:タカケンサンシャイン", "name": "タカケンサンシャイン", "name:en": "Takaken Sunshine", "name:ja": "タカケンサンシャイン", "shop": "dry_cleaning"}, "countryCodes": ["jp"], "terms": ["タカケンクリーング"], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/ダイヤクリーニング": {"name": "ダイヤクリーニング", "icon": "temaki-clothes_hanger", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11316968", "shop": "dry_cleaning"}, "addTags": {"brand": "ダイヤクリーニング", "brand:en": "Dia Cleaning", "brand:ja": "ダイヤクリーニング", "brand:wikidata": "Q11316968", "brand:wikipedia": "ja:ダイヤクリーニング", "name": "ダイヤクリーニング", "name:en": "Dia Cleaning", "name:ja": "ダイヤクリーニング", "shop": "dry_cleaning"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/ホワイト急便": {"name": "ホワイト急便", "icon": "temaki-clothes_hanger", "imageURL": "https://graph.facebook.com/974471789387794/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11505557", "shop": "dry_cleaning"}, "addTags": {"brand": "ホワイト急便", "brand:en": "White Kyuubin", "brand:ja": "ホワイト急便", "brand:wikidata": "Q11505557", "brand:wikipedia": "ja:日本さわやかグループ", "name": "ホワイト急便", "name:en": "White Kyuubin", "name:ja": "ホワイト急便", "shop": "dry_cleaning"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/ポニー": {"name": "ポニー", "icon": "temaki-clothes_hanger", "imageURL": "https://pbs.twimg.com/profile_images/1416828290/pony_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88012241", "shop": "dry_cleaning"}, "addTags": {"brand": "ポニー", "brand:en": "Pony", "brand:ja": "ポニー", "brand:wikidata": "Q88012241", "name": "ポニー", "name:en": "Pony", "name:ja": "ポニー", "official_name": "ポニークリーニング", "official_name:en": "Pony Cleaning", "official_name:ja": "ポニークリーニング", "shop": "dry_cleaning"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/ヤングドライ": {"name": "ヤングドライ", "icon": "temaki-clothes_hanger", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11345434", "shop": "dry_cleaning"}, "addTags": {"brand": "ヤングドライ", "brand:en": "Young Dry", "brand:ja": "ヤングドライ", "brand:wikidata": "Q11345434", "brand:wikipedia": "ja:ヤングドライ", "name": "ヤングドライ", "name:en": "Young Dry", "name:ja": "ヤングドライ", "shop": "dry_cleaning"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/dry_cleaning/白洋舎": {"name": "白洋舎", "icon": "temaki-clothes_hanger", "imageURL": "https://graph.facebook.com/hakuyosha.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11579995", "shop": "dry_cleaning"}, "addTags": {"brand": "白洋舎", "brand:en": "Hakuyosha", "brand:wikidata": "Q11579995", "brand:wikipedia": "ja:白洋舎", "name": "白洋舎", "name:en": "Hakuyosha", "shop": "dry_cleaning"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/e-cigarette/E-Cigarette Direct": {"name": "E-Cigarette Direct", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/ecigarettedirect/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q84703237", "shop": "e-cigarette"}, "addTags": {"brand": "E-Cigarette Direct", "brand:wikidata": "Q84703237", "name": "E-Cigarette Direct", "shop": "e-cigarette"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electrical/Kafkas": {"name": "Kafkas", "icon": "temaki-power", "imageURL": "https://graph.facebook.com/kafkas.gr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q68201770", "shop": "electrical"}, "addTags": {"brand": "Kafkas", "brand:wikidata": "Q68201770", "name": "Kafkas", "shop": "electrical"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/100満ボルト": {"name": "100満ボルト", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/1223183506043367424/pdVLS011_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11305504", "shop": "electronics"}, "addTags": {"brand": "100満ボルト", "brand:en": "100mv", "brand:ja": "100満ボルト", "brand:wikidata": "Q11305504", "brand:wikipedia": "ja:サンキュー (小売)", "name": "100満ボルト", "name:en": "100mv", "name:ja": "100満ボルト", "shop": "electronics"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/ABC Warehouse": {"name": "ABC Warehouse", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/1202680211067850753/1q3gyG95_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4650261", "shop": "electronics"}, "addTags": {"brand": "ABC Warehouse", "brand:wikidata": "Q4650261", "brand:wikipedia": "en:ABC Warehouse", "name": "ABC Warehouse", "shop": "electronics"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Apple Store": {"name": "Apple Store", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/apple/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q421253", "shop": "electronics"}, "addTags": {"brand": "Apple Store", "brand:wikidata": "Q421253", "brand:wikipedia": "en:Apple Store", "name": "Apple Store", "shop": "electronics", "short_name": "Apple"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Batteries Plus Bulbs": {"name": "Batteries Plus Bulbs", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/BatteriesPlus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17005157", "shop": "electronics"}, "addTags": {"brand": "Batteries Plus Bulbs", "brand:wikidata": "Q17005157", "brand:wikipedia": "en:Batteries Plus Bulbs", "name": "Batteries Plus Bulbs", "shop": "electronics"}, "countryCodes": ["us"], "terms": ["batteries plus"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Best Buy": {"name": "Best Buy", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/bestbuy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q533415", "shop": "electronics"}, "addTags": {"brand": "Best Buy", "brand:wikidata": "Q533415", "brand:wikipedia": "en:Best Buy", "name": "Best Buy", "shop": "electronics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Bing Lee": {"name": "Bing Lee", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/BingLeeElectrics/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4914136", "shop": "electronics"}, "addTags": {"brand": "Bing Lee", "brand:wikidata": "Q4914136", "brand:wikipedia": "en:Bing Lee", "name": "Bing Lee", "shop": "electronics"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Boulanger": {"name": "Boulanger", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Boulanger.Electromenager.Multimedia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2921695", "shop": "electronics"}, "addTags": {"brand": "Boulanger", "brand:wikidata": "Q2921695", "brand:wikipedia": "fr:Boulanger (entreprise)", "name": "Boulanger", "shop": "electronics"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/CeX": {"name": "CeX", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/CeX/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5055676", "shop": "electronics"}, "addTags": {"brand": "CeX", "brand:wikidata": "Q5055676", "brand:wikipedia": "en:CeX (company)", "name": "CeX", "shop": "electronics"}, "countryCodes": ["au", "es", "gb", "ie", "in", "it", "mx", "nl", "pl", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Coolblue": {"name": "Coolblue", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Coolblue/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4992516", "shop": "electronics"}, "addTags": {"brand": "Coolblue", "brand:wikidata": "Q4992516", "brand:wikipedia": "en:Coolblue", "name": "Coolblue", "shop": "electronics"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Currys PC World": {"name": "Currys PC World", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/curryspcworld/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3246464", "shop": "electronics"}, "addTags": {"brand": "Currys PC World", "brand:wikidata": "Q3246464", "brand:wikipedia": "en:Currys", "name": "Currys PC World", "shop": "electronics"}, "countryCodes": ["gb", "ie"], "terms": ["currys", "pc world"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Darty": {"name": "Darty", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/darty/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2439098", "shop": "electronics"}, "addTags": {"brand": "Darty", "brand:wikidata": "Q2439098", "brand:wikipedia": "fr:Darty", "name": "Darty", "shop": "electronics"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Datart": {"name": "Datart", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/DATART.cz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11774311", "shop": "electronics"}, "addTags": {"brand": "Datart", "brand:wikidata": "Q11774311", "brand:wikipedia": "cs:Datart", "name": "Datart", "shop": "electronics"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Elektra": {"name": "Elektra", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/TiendasElektraMexico/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1142753", "shop": "electronics"}, "addTags": {"brand": "Elektra", "brand:wikidata": "Q1142753", "brand:wikipedia": "es:Grupo Elektra", "name": "Elektra", "shop": "electronics"}, "countryCodes": ["gt", "hn", "pa", "pe", "sv"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Elgiganten": {"name": "Elgiganten", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/elgiganten.dk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17050121", "shop": "electronics"}, "addTags": {"brand": "Elgiganten", "brand:wikidata": "Q17050121", "brand:wikipedia": "en:Elgiganten", "name": "Elgiganten", "shop": "electronics"}, "countryCodes": ["dk", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Euronics": {"name": "Euronics", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/EuronicsItalia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q184860", "shop": "electronics"}, "addTags": {"brand": "Euronics", "brand:wikidata": "Q184860", "brand:wikipedia": "en:Euronics", "name": "Euronics", "shop": "electronics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Expert": {"name": "Expert", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/expert.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q680990", "shop": "electronics"}, "addTags": {"brand": "Expert", "brand:wikidata": "Q680990", "brand:wikipedia": "en:Expert (company)", "name": "Expert", "shop": "electronics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Fry's Electronics": {"name": "Fry's Electronics", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/fryselectronics/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5506545", "shop": "electronics"}, "addTags": {"brand": "Fry's Electronics", "brand:wikidata": "Q5506545", "brand:wikipedia": "en:Fry's Electronics", "name": "Fry's Electronics", "shop": "electronics", "short_name": "Fry's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Frávega": {"name": "Frávega", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/fravegaonline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5401467", "shop": "electronics"}, "addTags": {"brand": "Frávega", "brand:wikidata": "Q5401467", "brand:wikipedia": "es:Frávega", "name": "Frávega", "shop": "electronics"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Garbarino": {"name": "Garbarino", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/GarbarinoGarantiaDeConfianza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5875270", "shop": "electronics"}, "addTags": {"brand": "Garbarino", "brand:wikidata": "Q5875270", "brand:wikipedia": "es:Garbarino", "name": "Garbarino", "shop": "electronics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Gigantti": {"name": "Gigantti", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/gigantti/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q42512186", "shop": "electronics"}, "addTags": {"brand": "Gigantti", "brand:wikidata": "Q42512186", "brand:wikipedia": "fi:Gigantti (tavarataloketju)", "name": "Gigantti", "shop": "electronics"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Hartlauer": {"name": "Hartlauer", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/loewennews/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1587223", "shop": "electronics"}, "addTags": {"brand": "Hartlauer", "brand:wikidata": "Q1587223", "brand:wikipedia": "de:Hartlauer", "name": "Hartlauer", "shop": "electronics"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Interdiscount": {"name": "Interdiscount", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/interdiscount/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1665980", "shop": "electronics"}, "addTags": {"brand": "Interdiscount", "brand:wikidata": "Q1665980", "brand:wikipedia": "de:Interdiscount", "name": "Interdiscount", "shop": "electronics"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/JB Hi-Fi": {"name": "JB Hi-Fi", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/JBHiFi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3310113", "shop": "electronics"}, "addTags": {"brand": "JB Hi-Fi", "brand:wikidata": "Q3310113", "brand:wikipedia": "en:JB Hi-Fi", "name": "JB Hi-Fi", "shop": "electronics"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Jaycar": {"name": "Jaycar", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/jaycarelectronics/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6167713", "shop": "electronics"}, "addTags": {"brand": "Jaycar", "brand:wikidata": "Q6167713", "brand:wikipedia": "en:Jaycar", "name": "Jaycar", "shop": "electronics"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Kjell & Company": {"name": "Kjell & Company", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/kjellcoSverige/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6419332", "shop": "electronics"}, "addTags": {"brand": "Kjell & Company", "brand:wikidata": "Q6419332", "brand:wikipedia": "en:Kjell & Company", "name": "Kjell & Company", "shop": "electronics"}, "countryCodes": ["no", "se"], "terms": ["kjell och company"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Komputronik": {"name": "Komputronik", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/komputronik/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11742085", "shop": "electronics"}, "addTags": {"brand": "Komputronik", "brand:wikidata": "Q11742085", "brand:wikipedia": "pl:Komputronik", "name": "Komputronik", "shop": "electronics"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/LG": {"name": "LG", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/theLGstory/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q162345", "shop": "electronics"}, "addTags": {"brand": "LG", "brand:wikidata": "Q162345", "brand:wikipedia": "en:LG Electronics", "name": "LG", "shop": "electronics"}, "terms": ["lg electronics"], "matchScore": 2, "suggestion": true}, - "shop/electronics/La Curacao": {"name": "La Curacao", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/CuracaoUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5194599", "shop": "electronics"}, "addTags": {"brand": "La Curacao", "brand:wikidata": "Q5194599", "brand:wikipedia": "en:Curacao (retail store)", "name": "La Curacao", "shop": "electronics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Maplin": {"name": "Maplin", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Maplin/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6754124", "shop": "electronics"}, "addTags": {"brand": "Maplin", "brand:wikidata": "Q6754124", "brand:wikipedia": "en:Maplin (retailer)", "name": "Maplin", "shop": "electronics"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Media Expert": {"name": "Media Expert", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/mediaexpert/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11776794", "shop": "electronics"}, "addTags": {"brand": "Media Expert", "brand:wikidata": "Q11776794", "brand:wikipedia": "pl:Media Expert", "name": "Media Expert", "shop": "electronics"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Media Markt": {"name": "Media Markt", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/mediamarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2381223", "shop": "electronics"}, "addTags": {"brand": "Media Markt", "brand:wikidata": "Q2381223", "brand:wikipedia": "en:Media Markt", "name": "Media Markt", "shop": "electronics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Medimax": {"name": "Medimax", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/MEDIMAX/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62872450", "shop": "electronics"}, "addTags": {"brand": "Medimax", "brand:wikidata": "Q62872450", "name": "Medimax", "shop": "electronics"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Microsoft Store": {"name": "Microsoft Store", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/918923853870522368/tjvU4OpM_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1688786", "shop": "electronics"}, "addTags": {"brand": "Microsoft Store", "brand:wikidata": "Q1688786", "brand:wikipedia": "en:Microsoft Store", "name": "Microsoft Store", "shop": "electronics", "short_name": "Microsoft"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Musimundo": {"name": "Musimundo", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/musimundo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6034719", "shop": "electronics"}, "addTags": {"brand": "Musimundo", "brand:wikidata": "Q6034719", "brand:wikipedia": "es:Musimundo", "name": "Musimundo", "shop": "electronics"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Nay": {"name": "Nay", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Elektrodom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13537421", "shop": "electronics"}, "addTags": {"brand": "Nay", "brand:wikidata": "Q13537421", "brand:wikipedia": "sk:Nay", "name": "Nay", "shop": "electronics"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Neonet": {"name": "Neonet", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Neonetpl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11790622", "shop": "electronics"}, "addTags": {"brand": "Neonet", "brand:wikidata": "Q11790622", "brand:wikipedia": "pl:Neonet", "name": "Neonet", "shop": "electronics"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Okay": {"name": "Okay", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/okaysk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17583128", "shop": "electronics"}, "addTags": {"brand": "Okay", "brand:wikidata": "Q17583128", "brand:wikipedia": "sk:OKAY", "name": "Okay", "shop": "electronics"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/P. C. Richard & Son": {"name": "P. C. Richard & Son", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Pcrichardandson/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7117161", "shop": "electronics"}, "addTags": {"brand": "P. C. Richard & Son", "brand:wikidata": "Q7117161", "brand:wikipedia": "en:P. C. Richard & Son", "name": "P. C. Richard & Son", "shop": "electronics"}, "countryCodes": ["us"], "terms": ["pc richard"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Power": {"name": "Power", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/power.retail.international/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20857751", "shop": "electronics"}, "addTags": {"brand": "Power", "brand:wikidata": "Q20857751", "brand:wikipedia": "fi:Power", "name": "Power", "shop": "electronics"}, "countryCodes": ["dk", "fi", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/RTV Euro AGD": {"name": "RTV Euro AGD", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/rtveuroagd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7277895", "shop": "electronics"}, "addTags": {"brand": "RTV Euro AGD", "brand:wikidata": "Q7277895", "brand:wikipedia": "pl:RTV Euro AGD", "name": "RTV Euro AGD", "shop": "electronics"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/RadioShack": {"name": "RadioShack", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/RadioShack/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1195490", "shop": "electronics"}, "addTags": {"brand": "RadioShack", "brand:wikidata": "Q1195490", "brand:wikipedia": "en:RadioShack", "name": "RadioShack", "shop": "electronics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Robert Dyas": {"name": "Robert Dyas", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/1082680408200884224/5hEh4Ws6_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7343720", "shop": "electronics"}, "addTags": {"brand": "Robert Dyas", "brand:wikidata": "Q7343720", "brand:wikipedia": "en:Robert Dyas", "name": "Robert Dyas", "shop": "electronics"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Samsung": {"name": "Samsung", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/SamsungNewsroom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20718", "shop": "electronics"}, "addTags": {"brand": "Samsung", "brand:wikidata": "Q20718", "brand:wikipedia": "en:Samsung Electronics", "name": "Samsung", "shop": "electronics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Saturn": {"name": "Saturn", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/SaturnDE/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2543504", "shop": "electronics"}, "addTags": {"brand": "Saturn", "brand:wikidata": "Q2543504", "brand:wikipedia": "en:Saturn (retailer)", "name": "Saturn", "shop": "electronics"}, "countryCodes": ["at", "de", "lu", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Sony": {"name": "Sony", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/sony.jpn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q41187", "shop": "electronics"}, "addTags": {"brand": "Sony", "brand:wikidata": "Q41187", "brand:wikipedia": "en:Sony", "name": "Sony", "shop": "electronics"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Sony Centre": {"name": "Sony Centre", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Sony/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3437496", "shop": "electronics"}, "addTags": {"brand": "Sony Centre", "brand:wikidata": "Q3437496", "brand:wikipedia": "en:Sony Centre", "name": "Sony Centre", "shop": "electronics"}, "terms": ["sony center"], "matchScore": 2, "suggestion": true}, - "shop/electronics/Teknikmagasinet": {"name": "Teknikmagasinet", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/TeknikmagasinetNorge/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3357520", "shop": "electronics"}, "addTags": {"brand": "Teknikmagasinet", "brand:wikidata": "Q3357520", "brand:wikipedia": "en:Teknikmagasinet", "name": "Teknikmagasinet", "shop": "electronics"}, "countryCodes": ["fi", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/The Good Guys": {"name": "The Good Guys", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/thegoodguysAU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7737217", "shop": "electronics"}, "addTags": {"brand": "The Good Guys", "brand:wikidata": "Q7737217", "brand:wikipedia": "en:The Good Guys (Australian company)", "name": "The Good Guys", "shop": "electronics"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/The Source": {"name": "The Source", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/thesourcecanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3212934", "shop": "electronics"}, "addTags": {"brand": "The Source", "brand:wikidata": "Q3212934", "brand:wikipedia": "en:The Source (retailer)", "name": "The Source", "shop": "electronics"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Trony": {"name": "Trony", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/trony/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3999692", "shop": "electronics"}, "addTags": {"brand": "Trony", "brand:wikidata": "Q3999692", "brand:wikipedia": "it:Trony", "name": "Trony", "shop": "electronics"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Unieuro": {"name": "Unieuro", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/unieuro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4004687", "shop": "electronics"}, "addTags": {"brand": "Unieuro", "brand:wikidata": "Q4004687", "brand:wikipedia": "en:Unieuro", "name": "Unieuro", "shop": "electronics"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Worten": {"name": "Worten", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/WortenES/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10394039", "shop": "electronics"}, "addTags": {"brand": "Worten", "brand:wikidata": "Q10394039", "brand:wikipedia": "pt:Worten", "name": "Worten", "shop": "electronics"}, "countryCodes": ["es", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/b8ta": {"name": "b8ta", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/b8ta/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55604609", "shop": "electronics"}, "addTags": {"brand": "b8ta", "brand:wikidata": "Q55604609", "brand:wikipedia": "en:B8ta", "name": "b8ta", "shop": "electronics"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/М.Видео": {"name": "М.Видео", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/mvideo.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6558800", "shop": "electronics"}, "addTags": {"brand": "М.Видео", "brand:en": "M.video", "brand:wikidata": "Q6558800", "brand:wikipedia": "en:M.video", "name": "М.Видео", "name:en": "M.video", "shop": "electronics"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Фокстрот": {"name": "Фокстрот", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/foxtrotinfo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16721578", "shop": "electronics"}, "addTags": {"brand": "Фокстрот", "brand:wikidata": "Q16721578", "brand:wikipedia": "uk:Фокстрот (торгова мережа)", "name": "Фокстрот", "shop": "electronics"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Эксперт": {"name": "Эксперт", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/expertVyhino/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4530590", "shop": "electronics"}, "addTags": {"brand": "Эксперт", "brand:en": "Expert", "brand:ru": "Эксперт", "brand:wikidata": "Q4530590", "brand:wikipedia": "ru:Эксперт (сеть магазинов)", "name": "Эксперт", "name:en": "Expert", "name:ru": "Эксперт", "shop": "electronics"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/Эльдорадо": {"name": "Эльдорадо", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/Eldorado.Stores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4531492", "shop": "electronics"}, "addTags": {"brand": "Эльдорадо", "brand:wikidata": "Q4531492", "brand:wikipedia": "ru:Эльдорадо (сеть магазинов)", "name": "Эльдорадо", "shop": "electronics"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/あきばお〜": {"name": "あきばお〜", "icon": "fas-plug", "imageURL": "https://pbs.twimg.com/profile_images/1252777005197623296/vcMgM3cK_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11257009", "shop": "electronics"}, "addTags": {"brand": "あきばお〜", "brand:en": "Akibaoo", "brand:ja": "あきばお〜", "brand:wikidata": "Q11257009", "brand:wikipedia": "ja:あきばお〜", "name": "あきばお〜", "name:en": "Akibaoo", "name:ja": "あきばお〜", "shop": "electronics"}, "countryCodes": ["jp"], "terms": ["あきばお~"], "matchScore": 2, "suggestion": true}, - "shop/electronics/エディオン": {"name": "エディオン", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/edion.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11290252", "shop": "electronics"}, "addTags": {"brand": "エディオン", "brand:en": "EDION", "brand:ja": "エディオン", "brand:wikidata": "Q11290252", "brand:wikipedia": "ja:エディオン", "name": "エディオン", "name:en": "EDION", "name:ja": "エディオン", "shop": "electronics"}, "countryCodes": ["jp"], "terms": ["デオデオ"], "matchScore": 2, "suggestion": true}, - "shop/electronics/ケーズデンキ": {"name": "ケーズデンキ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/ksdenki20180125/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6322472", "shop": "electronics"}, "addTags": {"brand": "ケーズデンキ", "brand:en": "K's Denki", "brand:ja": "ケーズデンキ", "brand:wikidata": "Q6322472", "brand:wikipedia": "ja:ケーズホールディングス", "name": "ケーズデンキ", "name:en": "K's Denki", "name:ja": "ケーズデンキ", "shop": "electronics"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/コジマ": {"name": "コジマ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/kojima.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11302052", "shop": "electronics"}, "addTags": {"brand": "コジマ", "brand:en": "Kojima", "brand:ja": "コジマ", "brand:wikidata": "Q11302052", "brand:wikipedia": "ja:コジマ", "name": "コジマ", "name:en": "Kojima", "name:ja": "コジマ", "shop": "electronics"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/ソフマップ": {"name": "ソフマップ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/sofmap.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7553789", "shop": "electronics"}, "addTags": {"brand": "ソフマップ", "brand:en": "Sofmap", "brand:ja": "ソフマップ", "brand:wikidata": "Q7553789", "brand:wikipedia": "ja:ソフマップ", "name": "ソフマップ", "name:en": "Sofmap", "name:ja": "ソフマップ", "shop": "electronics"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/ノジマ": {"name": "ノジマ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/nojima.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11325660", "shop": "electronics"}, "addTags": {"brand": "ノジマ", "brand:en": "Nojima", "brand:ja": "ノジマ", "brand:wikidata": "Q11325660", "brand:wikipedia": "ja:ノジマ", "name": "ノジマ", "name:en": "Nojima", "name:ja": "ノジマ", "shop": "electronics"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/ビックカメラ": {"name": "ビックカメラ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/biccamera.page/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4903531", "shop": "electronics"}, "addTags": {"brand": "ビックカメラ", "brand:en": "Bic Camera", "brand:ja": "ビックカメラ", "brand:wikidata": "Q4903531", "brand:wikipedia": "ja:ビックカメラ", "name": "ビックカメラ", "name:en": "Bic Camera", "name:ja": "ビックカメラ", "shop": "electronics"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/ベスト電器": {"name": "ベスト電器", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/YAMADA.DENKI/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1096390", "shop": "electronics"}, "addTags": {"brand": "ベスト電器", "brand:en": "Best Denki", "brand:ja": "ベスト電器", "brand:wikidata": "Q1096390", "brand:wikipedia": "ja:ベスト電器", "name": "ベスト電器", "name:en": "Best Denki", "name:ja": "ベスト電器", "shop": "electronics"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/ヤマダ電機": {"name": "ヤマダ電機", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/YAMADA.DENKI/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1096390", "shop": "electronics"}, "addTags": {"brand": "ヤマダ電機", "brand:en": "Yamada Denki", "brand:ja": "ヤマダ電機", "brand:wikidata": "Q1096390", "brand:wikipedia": "en:Yamada Denki", "name": "ヤマダ電機", "name:en": "Yamada Denki", "name:ja": "ヤマダ電機", "shop": "electronics"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/ヨドバシカメラ": {"name": "ヨドバシカメラ", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/yodobashi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q168467", "shop": "electronics"}, "addTags": {"brand": "ヨドバシカメラ", "brand:en": "Yodobashi Camera", "brand:ja": "ヨドバシカメラ", "brand:wikidata": "Q168467", "brand:wikipedia": "ja:ヨドバシカメラ", "name": "ヨドバシカメラ", "name:en": "Yodobashi Camera", "name:ja": "ヨドバシカメラ", "shop": "electronics"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/全國電子": {"name": "全國電子", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/elifemall.com.tw/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10891540", "shop": "electronics"}, "addTags": {"brand": "全國電子", "brand:en": "E-life Mall", "brand:wikidata": "Q10891540", "brand:wikipedia": "zh:全國電子", "name": "全國電子", "name:en": "E-life Mall", "shop": "electronics"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/electronics/燦坤3C": {"name": "燦坤3C", "icon": "fas-plug", "imageURL": "https://graph.facebook.com/tkec520/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11569285", "shop": "electronics"}, "addTags": {"brand": "燦坤3C", "brand:en": "Tsannkuen 3C", "brand:wikidata": "Q11569285", "brand:wikipedia": "zh:燦坤", "name": "燦坤3C", "name:en": "Tsannkuen 3C", "shop": "electronics"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/erotic/Adam & Eve": {"name": "Adam & Eve", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1229424763581366272/Tle21XGz_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4678604", "shop": "erotic"}, "addTags": {"brand": "Adam & Eve", "brand:wikidata": "Q4678604", "brand:wikipedia": "en:Adam & Eve (company)", "name": "Adam & Eve", "shop": "erotic"}, "countryCodes": ["ca", "pe", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/erotic/Amazing Intimate Essentials": {"name": "Amazing Intimate Essentials", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/amazingstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66305936", "shop": "erotic"}, "addTags": {"brand": "Amazing Intimate Essentials", "brand:wikidata": "Q66305936", "name": "Amazing Intimate Essentials", "shop": "erotic", "short_name": "Amazing.net"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/erotic/Ann Summers": {"name": "Ann Summers", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1104069397008789504/jN1FCnL5_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q579524", "shop": "erotic"}, "addTags": {"brand": "Ann Summers", "brand:wikidata": "Q579524", "brand:wikipedia": "en:Ann Summers", "name": "Ann Summers", "shop": "erotic"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/erotic/Orion": {"name": "Orion", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/807193082244505600/DWoJxqGu_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1609577", "shop": "erotic"}, "addTags": {"brand": "Orion", "brand:wikidata": "Q1609577", "brand:wikipedia": "de:Orion (Erotik)", "name": "Orion", "shop": "erotic"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/erotic/Pulse and Cocktails": {"name": "Pulse and Cocktails", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/820968242835587072/oAqqidgR_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7259672", "shop": "erotic"}, "addTags": {"brand": "Pulse and Cocktails", "brand:wikidata": "Q7259672", "brand:wikipedia": "en:Pulse and Cocktails", "name": "Pulse and Cocktails", "shop": "erotic"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/fabric/Mondial Tissus": {"name": "Mondial Tissus", "icon": "fas-tape", "imageURL": "https://graph.facebook.com/MondialTissus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17635288", "shop": "fabric"}, "addTags": {"brand": "Mondial Tissus", "brand:wikidata": "Q17635288", "brand:wikipedia": "fr:Mondial Tissus", "name": "Mondial Tissus", "shop": "fabric"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/fashion_accessories/Brighton Collectibles": {"name": "Brighton Collectibles", "icon": "temaki-fashion_accessories", "imageURL": "https://graph.facebook.com/BrightonCollectibles/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4967623", "shop": "fashion_accessories"}, "addTags": {"brand": "Brighton Collectibles", "brand:wikidata": "Q4967623", "brand:wikipedia": "en:Brighton Collectibles", "name": "Brighton Collectibles", "shop": "fashion_accessories"}, "countryCodes": ["us"], "terms": ["brighton"], "matchScore": 2, "suggestion": true}, - "shop/fashion_accessories/Bvlgari": {"name": "Bvlgari", "icon": "temaki-fashion_accessories", "imageURL": "https://graph.facebook.com/Bulgari/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q752515", "shop": "fashion_accessories"}, "addTags": {"brand": "Bulgari", "brand:wikidata": "Q752515", "brand:wikipedia": "en:Bulgari", "name": "Bvlgari", "shop": "fashion_accessories"}, "terms": ["bulgari"], "matchScore": 2, "suggestion": true}, - "shop/fashion_accessories/Claire's": {"name": "Claire's", "icon": "temaki-fashion_accessories", "imageURL": "https://graph.facebook.com/claires/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2974996", "shop": "fashion_accessories"}, "addTags": {"brand": "Claire's", "brand:wikidata": "Q2974996", "brand:wikipedia": "en:Claire's", "name": "Claire's", "shop": "fashion_accessories"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/fashion_accessories/Mulberry": {"name": "Mulberry", "icon": "temaki-fashion_accessories", "imageURL": "https://graph.facebook.com/Mulberry/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3866987", "shop": "fashion_accessories"}, "addTags": {"brand": "Mulberry", "brand:wikidata": "Q3866987", "brand:wikipedia": "en:Mulberry (company)", "name": "Mulberry", "shop": "fashion_accessories"}, "countryCodes": ["ae", "au", "ca", "ch", "cn", "de", "dk", "fi", "gb", "ie", "jp", "kr", "my", "nl", "no", "se", "sg", "th", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/fashion_accessories/Radley London": {"name": "Radley London", "icon": "temaki-fashion_accessories", "imageURL": "https://graph.facebook.com/RadleyUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7281436", "shop": "fashion_accessories"}, "addTags": {"brand": "Radley London", "brand:wikidata": "Q7281436", "name": "Radley London", "shop": "fashion_accessories", "short_name": "Radley"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/fashion_accessories/Van Cleef & Arpels": {"name": "Van Cleef & Arpels", "icon": "temaki-fashion_accessories", "imageURL": "https://graph.facebook.com/vancleef.arpels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2708181", "shop": "fashion_accessories"}, "addTags": {"brand": "Van Cleef & Arpels", "brand:wikidata": "Q2708181", "brand:wikipedia": "en:Van Cleef & Arpels", "name": "Van Cleef & Arpels", "shop": "fashion_accessories"}, "terms": ["van cleef & arples"], "matchScore": 2, "suggestion": true}, - "shop/flooring/Floor & Decor": {"name": "Floor & Decor", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/flooranddecor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56280964", "shop": "flooring"}, "addTags": {"brand": "Floor & Decor", "brand:wikidata": "Q56280964", "brand:wikipedia": "en:Floor & Decor", "name": "Floor & Decor", "shop": "flooring"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/florist/Blume 2000": {"name": "Blume 2000", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/Blume2000.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q886166", "shop": "florist"}, "addTags": {"brand": "Blume 2000", "brand:wikidata": "Q886166", "brand:wikipedia": "de:Blume 2000", "name": "Blume 2000", "shop": "florist"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/florist/Blumen Risse": {"name": "Blumen Risse", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/BlumenRisse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q886177", "shop": "florist"}, "addTags": {"brand": "Blumen Risse", "brand:wikidata": "Q886177", "brand:wikipedia": "de:Blumen Risse", "name": "Blumen Risse", "shop": "florist"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/florist/Holland Blumen Mark": {"name": "Holland Blumen Mark", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/HollandBlumenMark/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1624739", "shop": "florist"}, "addTags": {"brand": "Holland Blumen Mark", "brand:wikidata": "Q1624739", "brand:wikipedia": "de:Holland Blumen Mark", "name": "Holland Blumen Mark", "shop": "florist"}, "countryCodes": ["at"], "terms": ["holland blumen"], "matchScore": 2, "suggestion": true}, - "shop/florist/Interflora": {"name": "Interflora", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/Interflora.France/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q692179", "shop": "florist"}, "addTags": {"brand": "Interflora", "brand:wikidata": "Q692179", "brand:wikipedia": "en:Interflora", "name": "Interflora", "shop": "florist"}, "countryCodes": ["fr", "gb", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/florist/Monceau Fleurs": {"name": "Monceau Fleurs", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/Monceau.Fleurs.France/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17629431", "shop": "florist"}, "addTags": {"brand": "Monceau Fleurs", "brand:wikidata": "Q17629431", "brand:wikipedia": "fr:Emova Group", "name": "Monceau Fleurs", "shop": "florist"}, "countryCodes": ["be", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/florist/青山フラワーマーケット": {"name": "青山フラワーマーケット", "icon": "maki-florist", "imageURL": "https://graph.facebook.com/aoyamaflowermarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87743579", "shop": "florist"}, "addTags": {"brand": "青山フラワーマーケット", "brand:en": "Aoyama Flower Market", "brand:ja": "青山フラワーマーケット", "brand:wikidata": "Q87743579", "name": "青山フラワーマーケット", "name:en": "Aoyama Flower Market", "name:ja": "青山フラワーマーケット", "shop": "florist"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/frame/Aaron Brothers": {"name": "Aaron Brothers", "icon": "fas-vector-square", "imageURL": "https://graph.facebook.com/aaronbrothers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64979251", "shop": "frame"}, "addTags": {"brand": "Aaron Brothers", "brand:wikidata": "Q64979251", "name": "Aaron Brothers", "shop": "frame"}, "countryCodes": ["us"], "terms": ["aaron brothers art & framing", "aaron brothers custom framing"], "matchScore": 2, "suggestion": true}, - "shop/frozen_food/Dream Dinners": {"name": "Dream Dinners", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/DreamDinners/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5306355", "shop": "frozen_food"}, "addTags": {"brand": "Dream Dinners", "brand:wikidata": "Q5306355", "brand:wikipedia": "en:Dream Dinners", "name": "Dream Dinners", "opening_hours": "\"by appointment\"", "shop": "frozen_food"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/frozen_food/Farmfoods": {"name": "Farmfoods", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/147382588630890/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5435841", "shop": "frozen_food"}, "addTags": {"brand": "Farmfoods", "brand:wikidata": "Q5435841", "brand:wikipedia": "en:Farmfoods", "name": "Farmfoods", "shop": "frozen_food"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/frozen_food/Fulton's Foods": {"name": "Fulton's Foods", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/fultonfoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6112633", "shop": "frozen_food"}, "addTags": {"brand": "Fulton's Foods", "brand:wikidata": "Q6112633", "brand:wikipedia": "en:Fulton's Foods", "name": "Fulton's Foods", "shop": "frozen_food"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/frozen_food/Iceland": {"name": "Iceland", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/icelandfoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q721810", "shop": "frozen_food"}, "addTags": {"brand": "Iceland", "brand:wikidata": "Q721810", "brand:wikipedia": "en:Iceland (supermarket)", "name": "Iceland", "shop": "frozen_food"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/frozen_food/Picard": {"name": "Picard", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/picardsurgeles/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3382454", "shop": "frozen_food"}, "addTags": {"brand": "Picard", "brand:wikidata": "Q3382454", "brand:wikipedia": "en:Picard Surgelés", "name": "Picard", "shop": "frozen_food"}, "countryCodes": ["be", "fr", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/frozen_food/Thiriet": {"name": "Thiriet", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/thiriet.surgeles/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3524695", "shop": "frozen_food"}, "addTags": {"brand": "Thiriet", "brand:wikidata": "Q3524695", "brand:wikipedia": "fr:Thiriet (entreprise)", "name": "Thiriet", "shop": "frozen_food"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/funeral_directors/PFG": {"name": "PFG", "icon": "maki-cemetery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3396087", "shop": "funeral_directors"}, "addTags": {"brand": "PFG", "brand:wikidata": "Q3396087", "brand:wikipedia": "fr:Pompes funèbres générales", "name": "PFG", "official_name": "Pompes Funèbres Générales", "shop": "funeral_directors"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/funeral_directors/Roblot": {"name": "Roblot", "icon": "maki-cemetery", "imageURL": "https://graph.facebook.com/522928887844420/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63247414", "shop": "funeral_directors"}, "addTags": {"brand": "Roblot", "brand:wikidata": "Q63247414", "name": "Roblot", "shop": "funeral_directors"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/funeral_directors/Roc-Eclerc": {"name": "Roc-Eclerc", "icon": "maki-cemetery", "imageURL": "https://graph.facebook.com/grouperoceclerc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62558102", "shop": "funeral_directors"}, "addTags": {"brand": "Roc-Eclerc", "brand:wikidata": "Q62558102", "name": "Roc-Eclerc", "shop": "funeral_directors"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/funeral_directors/The Co-operative Funeralcare": {"name": "The Co-operative Funeralcare", "icon": "maki-cemetery", "imageURL": "https://graph.facebook.com/coopfuneralcare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7726521", "shop": "funeral_directors"}, "addTags": {"brand": "The Co-operative Funeralcare", "brand:wikidata": "Q7726521", "brand:wikipedia": "en:Co-op Funeralcare", "name": "The Co-operative Funeralcare", "shop": "funeral_directors"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/AHF": {"name": "AHF", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/1207239597513674752/BvhwknlS_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q50132485", "shop": "furniture"}, "addTags": {"brand": "AHF", "brand:wikidata": "Q50132485", "name": "AHF", "shop": "furniture"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Aaron's": {"name": "Aaron's", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/aaronsinc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10397787", "shop": "furniture"}, "addTags": {"brand": "Aaron's", "brand:wikidata": "Q10397787", "brand:wikipedia": "en:Aaron's, Inc.", "name": "Aaron's", "shop": "furniture"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/American Signature Furniture": {"name": "American Signature Furniture", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/AmericanSignatureFurniture/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63859411", "shop": "furniture"}, "addTags": {"brand": "American Signature Furniture", "brand:wikidata": "Q63859411", "name": "American Signature Furniture", "shop": "furniture"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Arhaus": {"name": "Arhaus", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/44947264751/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q35689887", "shop": "furniture"}, "addTags": {"brand": "Arhaus", "brand:wikidata": "Q35689887", "brand:wikipedia": "en:Arhaus", "name": "Arhaus", "shop": "furniture"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Ashley HomeStore": {"name": "Ashley HomeStore", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/AshleyHomeStore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4805437", "shop": "furniture"}, "addTags": {"alt_name": "Ashley Furniture", "brand": "Ashley HomeStore", "brand:wikidata": "Q4805437", "brand:wikipedia": "en:Ashley HomeStore", "name": "Ashley HomeStore", "shop": "furniture"}, "countryCodes": ["ca", "us"], "terms": ["ashley furniture homestore"], "matchScore": 2, "suggestion": true}, - "shop/furniture/Asko": {"name": "Asko", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/askohuonekalut/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11853132", "shop": "furniture"}, "addTags": {"brand": "Asko", "brand:wikidata": "Q11853132", "brand:wikipedia": "fi:Asko", "name": "Asko", "shop": "furniture"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Askona": {"name": "Askona", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/AskonaRu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4071319", "shop": "furniture"}, "addTags": {"brand": "Askona", "brand:wikidata": "Q4071319", "brand:wikipedia": "ru:Аскона (компания)", "name": "Askona", "shop": "furniture"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Black Red White": {"name": "Black Red White", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/BlackRedWhitePL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4921546", "shop": "furniture"}, "addTags": {"brand": "Black Red White", "brand:wikidata": "Q4921546", "brand:wikipedia": "en:Black Red White", "name": "Black Red White", "shop": "furniture"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/BoConcept": {"name": "BoConcept", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/boconceptusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11338915", "shop": "furniture"}, "addTags": {"brand": "BoConcept", "brand:wikidata": "Q11338915", "brand:wikipedia": "en:BoConcept", "name": "BoConcept", "shop": "furniture"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Bob's Discount Furniture": {"name": "Bob's Discount Furniture", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/mybobs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4931582", "shop": "furniture"}, "addTags": {"brand": "Bob's Discount Furniture", "brand:wikidata": "Q4931582", "brand:wikipedia": "en:Bob's Discount Furniture", "name": "Bob's Discount Furniture", "shop": "furniture"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Bodzio": {"name": "Bodzio", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/FabrykaMebliBodzio/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20034845", "shop": "furniture"}, "addTags": {"brand": "Bodzio", "brand:wikidata": "Q20034845", "brand:wikipedia": "pl:Fabryka Mebli Bodzio", "name": "Bodzio", "shop": "furniture"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/But": {"name": "But", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/but/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18720442", "shop": "furniture"}, "addTags": {"brand": "But", "brand:wikidata": "Q18720442", "brand:wikipedia": "en:BUT (retailer)", "name": "But", "shop": "furniture"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Cabinets To Go": {"name": "Cabinets To Go", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/CabinetsToGo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25245346", "shop": "furniture"}, "addTags": {"brand": "Cabinets To Go", "brand:wikidata": "Q25245346", "brand:wikipedia": "en:Cabinets To Go", "name": "Cabinets To Go", "shop": "furniture"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Casa": {"name": "Casa", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/casashops.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1991755", "shop": "furniture"}, "addTags": {"brand": "Casa", "brand:wikidata": "Q1991755", "brand:wikipedia": "fr:Casa (enseigne)", "name": "Casa", "shop": "furniture"}, "countryCodes": ["be", "ch", "es", "fr", "it", "lu", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Conforama": {"name": "Conforama", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/Conforama/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q541134", "shop": "furniture"}, "addTags": {"brand": "Conforama", "brand:wikidata": "Q541134", "brand:wikipedia": "en:Conforama", "name": "Conforama", "shop": "furniture"}, "countryCodes": ["ch", "es", "fr", "it", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Crate & Barrel": {"name": "Crate & Barrel", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/crateandbarrel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5182604", "shop": "furniture"}, "addTags": {"brand": "Crate & Barrel", "brand:wikidata": "Q5182604", "brand:wikipedia": "en:Crate & Barrel", "name": "Crate & Barrel", "shop": "furniture"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/DFS": {"name": "DFS", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/DFSUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5204927", "shop": "furniture"}, "addTags": {"brand": "DFS", "brand:wikidata": "Q5204927", "brand:wikipedia": "en:DFS Furniture", "name": "DFS", "shop": "furniture"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Dunelm": {"name": "Dunelm", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/DunelmUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5315020", "shop": "furniture"}, "addTags": {"brand": "Dunelm", "brand:wikidata": "Q5315020", "brand:wikipedia": "en:Dunelm Group", "name": "Dunelm", "shop": "furniture"}, "countryCodes": ["gb"], "terms": ["dunelm hill"], "matchScore": 2, "suggestion": true}, - "shop/furniture/Dänisches Bettenlager": {"name": "Dänisches Bettenlager", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/JYSK.dk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q138913", "shop": "furniture"}, "addTags": {"brand": "Dänisches Bettenlager", "brand:wikidata": "Q138913", "brand:wikipedia": "en:Jysk (store)", "name": "Dänisches Bettenlager", "shop": "furniture"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Ethan Allen": {"name": "Ethan Allen", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/ethanallendesign/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5402870", "shop": "furniture"}, "addTags": {"brand": "Ethan Allen", "brand:wikidata": "Q5402870", "brand:wikipedia": "en:Ethan Allen (company)", "name": "Ethan Allen", "shop": "furniture"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Fly": {"name": "Fly", "icon": "fas-couch", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFly-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1389184", "shop": "furniture"}, "addTags": {"brand": "Fly", "brand:wikidata": "Q1389184", "brand:wikipedia": "fr:Fly (entreprise)", "name": "Fly", "shop": "furniture"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Freedom": {"name": "Freedom", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/freedomAU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5500546", "shop": "furniture"}, "addTags": {"brand": "Freedom", "brand:wikidata": "Q5500546", "brand:wikipedia": "en:Freedom Furniture", "name": "Freedom", "shop": "furniture"}, "countryCodes": ["au"], "terms": ["freedom furniture"], "matchScore": 2, "suggestion": true}, - "shop/furniture/Furniture Village": {"name": "Furniture Village", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/furniturevillage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5509685", "shop": "furniture"}, "addTags": {"brand": "Furniture Village", "brand:wikidata": "Q5509685", "brand:wikipedia": "en:Furniture Village", "name": "Furniture Village", "shop": "furniture"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/HSL": {"name": "HSL", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/hslchairs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64284324", "shop": "furniture"}, "addTags": {"brand": "HSL", "brand:wikidata": "Q64284324", "name": "HSL", "official_name": "High Seat Limited", "shop": "furniture"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Harveys": {"name": "Harveys", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/harveysfurniture/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5677754", "shop": "furniture"}, "addTags": {"brand": "Harveys", "brand:wikidata": "Q5677754", "brand:wikipedia": "en:Harveys Furniture", "name": "Harveys", "shop": "furniture"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Havertys": {"name": "Havertys", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/672434576397062144/tX39o3Bz_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5683881", "shop": "furniture"}, "addTags": {"brand": "Havertys", "brand:wikidata": "Q5683881", "brand:wikipedia": "en:Havertys", "name": "Havertys", "shop": "furniture"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/IKEA": {"name": "IKEA", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/IKEA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q54078", "shop": "furniture"}, "addTags": {"brand": "IKEA", "brand:wikidata": "Q54078", "brand:wikipedia": "en:IKEA", "name": "IKEA", "shop": "furniture"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Isku": {"name": "Isku", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/iskuinteriorofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11865127", "shop": "furniture"}, "addTags": {"brand": "Isku", "brand:wikidata": "Q11865127", "brand:wikipedia": "fi:Isku (yritys)", "name": "Isku", "shop": "furniture"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/JYSK": {"name": "JYSK", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/JYSK.dk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q138913", "shop": "furniture"}, "addTags": {"brand": "JYSK", "brand:wikidata": "Q138913", "brand:wikipedia": "en:Jysk (store)", "name": "JYSK", "shop": "furniture"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Jerome's Furniture": {"name": "Jerome's Furniture", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/JeromesFurniture/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16997693", "shop": "furniture"}, "addTags": {"brand": "Jerome's Furniture", "brand:wikidata": "Q16997693", "brand:wikipedia": "en:Jerome's", "name": "Jerome's Furniture", "shop": "furniture", "short_name": "Jerome's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Kika": {"name": "Kika", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/kika/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q256456", "shop": "furniture"}, "addTags": {"brand": "Kika", "brand:wikidata": "Q256456", "brand:wikipedia": "de:Kika (Möbelhaus)", "name": "Kika", "shop": "furniture"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Kwantum": {"name": "Kwantum", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/KwantumNL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2262591", "shop": "furniture"}, "addTags": {"brand": "Kwantum", "brand:wikidata": "Q2262591", "brand:wikipedia": "nl:Kwantum (winkelketen)", "name": "Kwantum", "shop": "furniture"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/La-Z-Boy": {"name": "La-Z-Boy", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/lazboy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6391583", "shop": "furniture"}, "addTags": {"brand": "La-Z-Boy", "brand:wikidata": "Q6391583", "brand:wikipedia": "en:La-Z-Boy", "name": "La-Z-Boy", "shop": "furniture"}, "countryCodes": ["ca", "us"], "terms": ["la-z-boy furniture gallery"], "matchScore": 2, "suggestion": true}, - "shop/furniture/Laura Ashley Home": {"name": "Laura Ashley Home", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/LauraAshleyUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1523089", "shop": "furniture"}, "addTags": {"brand": "Laura Ashley", "brand:wikidata": "Q1523089", "brand:wikipedia": "en:Laura Ashley plc", "name": "Laura Ashley Home", "shop": "furniture"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Leen Bakker": {"name": "Leen Bakker", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/leenbakker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3333662", "shop": "furniture"}, "addTags": {"brand": "Leen Bakker", "brand:wikidata": "Q3333662", "brand:wikipedia": "nl:Leen Bakker", "name": "Leen Bakker", "shop": "furniture"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Leiner": {"name": "Leiner", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/Leiner.at/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1661472", "shop": "furniture"}, "addTags": {"brand": "Leiner", "brand:wikidata": "Q1661472", "brand:wikipedia": "de:Rudolf Leiner (Unternehmen)", "name": "Leiner", "shop": "furniture"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/LoveSac": {"name": "LoveSac", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/LoveSac/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6690181", "shop": "furniture"}, "addTags": {"brand": "LoveSac", "brand:wikidata": "Q6690181", "brand:wikipedia": "en:LoveSac", "name": "LoveSac", "shop": "furniture"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Maisons du Monde": {"name": "Maisons du Monde", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/maisonsdumondeus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3280364", "shop": "furniture"}, "addTags": {"brand": "Maisons du Monde", "brand:wikidata": "Q3280364", "brand:wikipedia": "fr:Maisons du Monde", "name": "Maisons du Monde", "shop": "furniture"}, "countryCodes": ["be", "ch", "de", "es", "fr", "gb", "it", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Möbelix": {"name": "Möbelix", "icon": "fas-couch", "imageURL": "https://pbs.twimg.com/profile_images/1048118257918640128/pkUCjw94_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q877547", "shop": "furniture"}, "addTags": {"brand": "Möbelix", "brand:wikidata": "Q877547", "brand:wikipedia": "hu:Möbelix", "name": "Möbelix", "shop": "furniture"}, "countryCodes": ["at", "cz", "hu", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Mömax": {"name": "Mömax", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/moemax.at/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56388481", "shop": "furniture"}, "addTags": {"brand": "Mömax", "brand:wikidata": "Q56388481", "brand:wikipedia": "hu:Mömax", "name": "Mömax", "shop": "furniture"}, "countryCodes": ["at", "de", "hu", "si"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Oak Furnitureland": {"name": "Oak Furnitureland", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/OakFurnitureland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16959724", "shop": "furniture"}, "addTags": {"brand": "Oak Furnitureland", "brand:wikidata": "Q16959724", "brand:wikipedia": "en:Oak Furniture Land", "name": "Oak Furnitureland", "shop": "furniture"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Poltronesofà": {"name": "Poltronesofà", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/poltronesofaspa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q80833069", "shop": "furniture"}, "addTags": {"brand": "Poltronesofà", "brand:wikidata": "Q80833069", "name": "Poltronesofà", "shop": "furniture"}, "countryCodes": ["be", "ch", "cy", "fr", "it", "mt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Pottery Barn": {"name": "Pottery Barn", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/potterybarn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3400126", "shop": "furniture"}, "addTags": {"brand": "Pottery Barn", "brand:wikidata": "Q3400126", "brand:wikipedia": "en:Pottery Barn", "name": "Pottery Barn", "shop": "furniture"}, "countryCodes": ["au", "ca", "mx", "ph", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Raymour & Flanigan": {"name": "Raymour & Flanigan", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/raymourandflanigan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7299290", "shop": "furniture"}, "addTags": {"brand": "Raymour & Flanigan", "brand:wikidata": "Q7299290", "brand:wikipedia": "en:Raymour & Flanigan", "name": "Raymour & Flanigan", "shop": "furniture"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Rent-A-Center": {"name": "Rent-A-Center", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/RentACenter/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7313497", "shop": "furniture"}, "addTags": {"brand": "Rent-A-Center", "brand:wikidata": "Q7313497", "brand:wikipedia": "en:Rent-A-Center", "name": "Rent-A-Center", "shop": "furniture"}, "countryCodes": ["mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Restoration Hardware": {"name": "Restoration Hardware", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/791504884230356/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7316207", "shop": "furniture"}, "addTags": {"brand": "Restoration Hardware", "brand:wikidata": "Q7316207", "brand:wikipedia": "en:Restoration Hardware", "name": "Restoration Hardware", "shop": "furniture"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Roche Bobois": {"name": "Roche Bobois", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/rocheboboisusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3437504", "shop": "furniture"}, "addTags": {"brand": "Roche Bobois", "brand:wikidata": "Q3437504", "brand:wikipedia": "fr:Roche Bobois", "name": "Roche Bobois", "shop": "furniture"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Roller": {"name": "Roller", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/ROLLER.Clever.einrichten/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1621286", "shop": "furniture"}, "addTags": {"brand": "Roller", "brand:wikidata": "Q1621286", "brand:wikipedia": "de:Roller (Möbelhaus)", "name": "Roller", "shop": "furniture"}, "countryCodes": ["de", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Rooms To Go": {"name": "Rooms To Go", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/roomstogo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7366329", "shop": "furniture"}, "addTags": {"brand": "Rooms To Go", "brand:wikidata": "Q7366329", "brand:wikipedia": "en:Rooms To Go", "name": "Rooms To Go", "shop": "furniture"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Rutar": {"name": "Rutar", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/RutarAustria/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22910157", "shop": "furniture"}, "addTags": {"brand": "Rutar", "brand:wikidata": "Q22910157", "brand:wikipedia": "de:RUTAR Group", "name": "Rutar", "shop": "furniture"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/ScS": {"name": "ScS", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/scssofas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19654399", "shop": "furniture"}, "addTags": {"brand": "ScS", "brand:wikidata": "Q19654399", "brand:wikipedia": "en:ScS", "name": "ScS", "shop": "furniture"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/The Brick": {"name": "The Brick", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/TheBrick/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7720000", "shop": "furniture"}, "addTags": {"brand": "The Brick", "brand:wikidata": "Q7720000", "brand:wikipedia": "en:The Brick", "name": "The Brick", "shop": "furniture"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Urban Barn": {"name": "Urban Barn", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/urbanbarn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62515207", "shop": "furniture"}, "addTags": {"brand": "Urban Barn", "brand:wikidata": "Q62515207", "name": "Urban Barn", "shop": "furniture"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Value City Furniture": {"name": "Value City Furniture", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/ValueCityFurnitureUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63859417", "shop": "furniture"}, "addTags": {"brand": "Value City Furniture", "brand:wikidata": "Q63859417", "name": "Value City Furniture", "shop": "furniture"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/XXXLutz": {"name": "XXXLutz", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/xxxlutz.at/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q70339467", "shop": "furniture"}, "addTags": {"brand": "XXXLutz", "brand:wikidata": "Q70339467", "brand:wikipedia": "de:XXXLutz", "name": "XXXLutz", "shop": "furniture"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/west elm": {"name": "west elm", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/westelm/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7985021", "shop": "furniture"}, "addTags": {"brand": "west elm", "brand:wikidata": "Q7985021", "brand:wikipedia": "en:Williams-Sonoma", "name": "west elm", "shop": "furniture"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/İstikbal": {"name": "İstikbal", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/istikbal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6031999", "shop": "furniture"}, "addTags": {"brand": "İstikbal", "brand:wikidata": "Q6031999", "brand:wikipedia": "tr:İstikbal", "name": "İstikbal", "shop": "furniture"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/Много мебели": {"name": "Много мебели", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/mnogomebeli/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18404893", "shop": "furniture"}, "addTags": {"brand": "Много мебели", "brand:wikidata": "Q18404893", "brand:wikipedia": "ru:Много мебели", "name": "Много мебели", "shop": "furniture"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/ニトリ": {"name": "ニトリ", "icon": "fas-couch", "imageURL": "https://graph.facebook.com/nitori.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10801453", "shop": "furniture"}, "addTags": {"brand": "ニトリ", "brand:en": "Nitori", "brand:ja": "ニトリ", "brand:wikidata": "Q10801453", "brand:wikipedia": "en:Nitori", "name": "ニトリ", "name:en": "Nitori", "name:ja": "ニトリ", "shop": "furniture"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/furniture/フランフラン": {"name": "フランフラン", "icon": "fas-couch", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5479732", "shop": "furniture"}, "addTags": {"brand": "フランフラン", "brand:en": "Francfranc", "brand:ja": "フランフラン", "brand:wikidata": "Q5479732", "brand:wikipedia": "ja:Francfranc", "name": "フランフラン", "name:en": "Francfranc", "name:ja": "フランフラン", "shop": "furniture"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/games/Games Workshop": {"name": "Games Workshop", "icon": "fas-dice", "imageURL": "https://graph.facebook.com/GWSunriseVillage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q587270", "shop": "games"}, "addTags": {"brand": "Games Workshop", "brand:wikidata": "Q587270", "brand:wikipedia": "en:Games Workshop", "name": "Games Workshop", "shop": "games"}, "countryCodes": ["de", "fr", "gb", "nl", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Bellaflora": {"name": "Bellaflora", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/bellafloraNr1/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q815787", "shop": "garden_centre"}, "addTags": {"brand": "Bellaflora", "brand:wikidata": "Q815787", "brand:wikipedia": "de:Bellaflora", "name": "Bellaflora", "shop": "garden_centre"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Blue Diamond Garden Centres": {"name": "Blue Diamond Garden Centres", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/bluediamondgardencentres/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81097207", "shop": "garden_centre"}, "addTags": {"brand": "Blue Diamond Garden Centres", "brand:wikidata": "Q81097207", "name": "Blue Diamond Garden Centres", "shop": "garden_centre"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Dehner": {"name": "Dehner", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/dehner/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1183029", "shop": "garden_centre"}, "addTags": {"brand": "Dehner", "brand:wikidata": "Q1183029", "brand:wikipedia": "de:Dehner", "name": "Dehner", "shop": "garden_centre"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Dobbies": {"name": "Dobbies", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/DobbiesGC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5286529", "shop": "garden_centre"}, "addTags": {"brand": "Dobbies", "brand:wikidata": "Q5286529", "brand:wikipedia": "en:Dobbies Garden Centres", "name": "Dobbies", "shop": "garden_centre"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Gamm Vert": {"name": "Gamm Vert", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/gammvert.officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3095006", "shop": "garden_centre"}, "addTags": {"brand": "Gamm Vert", "brand:wikidata": "Q3095006", "brand:wikipedia": "fr:Gamm Vert", "name": "Gamm Vert", "shop": "garden_centre"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Intratuin": {"name": "Intratuin", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/intratuin/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2927176", "shop": "garden_centre"}, "addTags": {"brand": "Intratuin", "brand:wikidata": "Q2927176", "brand:wikipedia": "nl:Intratuin", "name": "Intratuin", "shop": "garden_centre"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Jardiland": {"name": "Jardiland", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/Jardiland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3162276", "shop": "garden_centre"}, "addTags": {"brand": "Jardiland", "brand:wikidata": "Q3162276", "brand:wikipedia": "fr:Jardiland", "name": "Jardiland", "shop": "garden_centre"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Mountfield": {"name": "Mountfield", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/Mountfield/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21180783", "shop": "garden_centre"}, "addTags": {"brand": "Mountfield", "brand:wikidata": "Q21180783", "brand:wikipedia": "cs:Mountfield", "name": "Mountfield", "shop": "garden_centre"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Otter Garden Centres": {"name": "Otter Garden Centres", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/OtterGardenCentres/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81095450", "shop": "garden_centre"}, "addTags": {"brand": "Otter Garden Centres", "brand:wikidata": "Q81095450", "name": "Otter Garden Centres", "shop": "garden_centre"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Point Vert": {"name": "Point Vert", "icon": "maki-garden-centre", "imageURL": "https://pbs.twimg.com/profile_images/1984615026/Apex_quadrit_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16661975", "shop": "garden_centre"}, "addTags": {"brand": "Point Vert", "brand:wikidata": "Q16661975", "brand:wikipedia": "fr:Magasin vert", "name": "Point Vert", "shop": "garden_centre"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Truffaut": {"name": "Truffaut", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/truffautfr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3162640", "shop": "garden_centre"}, "addTags": {"brand": "Truffaut", "brand:wikidata": "Q3162640", "brand:wikipedia": "fr:Jardineries Truffaut", "name": "Truffaut", "shop": "garden_centre"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Villaverde": {"name": "Villaverde", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/villaverdefr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89346546", "shop": "garden_centre"}, "addTags": {"brand": "Villaverde", "brand:wikidata": "Q89346546", "name": "Villaverde", "shop": "garden_centre"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Walmart Garden Center": {"name": "Walmart Garden Center", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q483551", "shop": "garden_centre"}, "addTags": {"brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "name": "Walmart Garden Center", "shop": "garden_centre"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Welkoop": {"name": "Welkoop", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/welkoop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72799253", "shop": "garden_centre"}, "addTags": {"brand": "Welkoop", "brand:wikidata": "Q72799253", "name": "Welkoop", "shop": "garden_centre"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/Wyevale": {"name": "Wyevale", "icon": "maki-garden-centre", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7735819", "shop": "garden_centre"}, "addTags": {"brand": "Wyevale", "brand:wikidata": "Q7735819", "brand:wikipedia": "en:Wyevale Garden Centres", "name": "Wyevale", "shop": "garden_centre"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/garden_centre/ZG Raiffeisen": {"name": "ZG Raiffeisen", "icon": "maki-garden-centre", "imageURL": "https://graph.facebook.com/zgraiffeisen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q136135", "shop": "garden_centre"}, "addTags": {"brand": "ZG Raiffeisen", "brand:wikidata": "Q136135", "brand:wikipedia": "de:ZG Raiffeisen", "name": "ZG Raiffeisen", "shop": "garden_centre"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gas/Airgas": {"name": "Airgas", "icon": "temaki-propane_tank", "imageURL": "https://graph.facebook.com/airgasusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q80635", "shop": "gas"}, "addTags": {"brand": "Airgas", "brand:wikidata": "Q80635", "brand:wikipedia": "en:Airgas", "name": "Airgas", "shop": "gas"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gas/AmeriGas": {"name": "AmeriGas", "icon": "temaki-propane_tank", "imageURL": "https://graph.facebook.com/AmeriGas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23130318", "shop": "gas"}, "addTags": {"brand": "AmeriGas", "brand:wikidata": "Q23130318", "brand:wikipedia": "en:AmeriGas", "fuel:lpg": "yes", "name": "AmeriGas", "shop": "gas"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gas/Ferrellgas": {"name": "Ferrellgas", "icon": "temaki-propane_tank", "imageURL": "https://graph.facebook.com/Ferrellgas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5445299", "shop": "gas"}, "addTags": {"brand": "Ferrellgas", "brand:wikidata": "Q5445299", "brand:wikipedia": "en:Ferrellgas", "fuel:lpg": "yes", "name": "Ferrellgas", "shop": "gas"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/American Greetings": {"name": "American Greetings", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/AmericanGreetings/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q464767", "shop": "gift"}, "addTags": {"brand": "American Greetings", "brand:wikidata": "Q464767", "brand:wikipedia": "en:American Greetings", "name": "American Greetings", "shop": "gift"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/Card Factory": {"name": "Card Factory", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/cardfactoryplc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5038192", "shop": "gift"}, "addTags": {"brand": "Card Factory", "brand:wikidata": "Q5038192", "brand:wikipedia": "en:Card Factory", "name": "Card Factory", "shop": "gift"}, "countryCodes": ["gb", "im"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/Carlton Cards": {"name": "Carlton Cards", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/Carltoncards.ca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5042968", "shop": "gift"}, "addTags": {"brand": "Carlton Cards", "brand:wikidata": "Q5042968", "brand:wikipedia": "en:Carlton Cards", "name": "Carlton Cards", "shop": "gift"}, "countryCodes": ["ca"], "terms": ["carlton"], "matchScore": 2, "suggestion": true}, - "shop/gift/Clintons": {"name": "Clintons", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/ClintonsUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5134299", "shop": "gift"}, "addTags": {"brand": "Clintons", "brand:wikidata": "Q5134299", "brand:wikipedia": "en:Clintons", "name": "Clintons", "shop": "gift"}, "countryCodes": ["gb"], "terms": ["clinton cards"], "matchScore": 2, "suggestion": true}, - "shop/gift/Cracker Barrel": {"name": "Cracker Barrel", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/crackerbarrel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4492609", "shop": "gift"}, "addTags": {"brand": "Cracker Barrel", "brand:wikidata": "Q4492609", "brand:wikipedia": "en:Cracker Barrel", "name": "Cracker Barrel", "official_name": "Cracker Barrel Old Country Store", "shop": "gift"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/Disney Store": {"name": "Disney Store", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/shopdisney/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1047009", "shop": "gift"}, "addTags": {"brand": "Disney Store", "brand:wikidata": "Q1047009", "brand:wikipedia": "en:Disney Store", "name": "Disney Store", "shop": "gift"}, "countryCodes": ["ca", "fr", "us"], "terms": ["the disney store"], "matchScore": 2, "suggestion": true}, - "shop/gift/Edible Arrangements": {"name": "Edible Arrangements", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/ediblearrangements/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5337996", "shop": "gift"}, "addTags": {"brand": "Edible Arrangements", "brand:wikidata": "Q5337996", "brand:wikipedia": "en:Edible Arrangements", "name": "Edible Arrangements", "shop": "gift"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/Hallmark": {"name": "Hallmark", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/Hallmark/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1521910", "shop": "gift"}, "addTags": {"brand": "Hallmark", "brand:wikidata": "Q1521910", "brand:wikipedia": "en:Hallmark Cards", "name": "Hallmark", "shop": "gift"}, "countryCodes": ["ca", "gb", "us"], "terms": ["hallmark gold crown"], "matchScore": 2, "suggestion": true}, - "shop/gift/Harry & David": {"name": "Harry & David", "icon": "maki-gift", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16983369", "shop": "gift"}, "addTags": {"brand": "Harry & David", "brand:wikidata": "Q16983369", "brand:wikipedia": "en:Harry & David", "name": "Harry & David", "shop": "gift"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/Nanu-Nana": {"name": "Nanu-Nana", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/NanuNanaDE/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1720245", "shop": "gift"}, "addTags": {"brand": "Nanu-Nana", "brand:wikidata": "Q1720245", "brand:wikipedia": "de:Nanu-Nana", "name": "Nanu-Nana", "shop": "gift"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/Papyrus": {"name": "Papyrus", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/papyrus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28222692", "shop": "gift"}, "addTags": {"brand": "Papyrus", "brand:wikidata": "Q28222692", "brand:wikipedia": "en:Papyrus (company)", "name": "Papyrus", "shop": "gift"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/Scribbler": {"name": "Scribbler", "icon": "maki-gift", "imageURL": "https://pbs.twimg.com/profile_images/1079755597673832449/zUY-SH0__bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28457455", "shop": "gift"}, "addTags": {"brand": "Scribbler", "brand:wikidata": "Q28457455", "brand:wikipedia": "en:Scribbler (card shop)", "name": "Scribbler", "shop": "gift"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/Showcase": {"name": "Showcase", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/shopatshowcase/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7503163", "shop": "gift"}, "addTags": {"brand": "Showcase", "brand:wikidata": "Q7503163", "brand:wikipedia": "en:Showcase (retailer)", "name": "Showcase", "shop": "gift"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/Spencer's": {"name": "Spencer's", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/spencers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7576055", "shop": "gift"}, "addTags": {"brand": "Spencer Gifts", "brand:wikidata": "Q7576055", "brand:wikipedia": "en:Spencer Gifts", "name": "Spencer's", "official_name": "Spencer Gifts", "shop": "gift"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/gift/Things Remembered": {"name": "Things Remembered", "icon": "maki-gift", "imageURL": "https://graph.facebook.com/thingsremembered/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q54958287", "shop": "gift"}, "addTags": {"brand": "Things Remembered", "brand:wikidata": "Q54958287", "brand:wikipedia": "en:Things Remembered", "name": "Things Remembered", "shop": "gift"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/greengrocer/Produce Junction": {"name": "Produce Junction", "icon": "fas-carrot", "imageURL": "https://graph.facebook.com/ProduceJunction/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60583541", "shop": "greengrocer"}, "addTags": {"brand": "Produce Junction", "brand:wikidata": "Q60583541", "name": "Produce Junction", "shop": "greengrocer"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser_supply/Sally Beauty Supply": {"name": "Sally Beauty Supply", "icon": "temaki-hair_care", "imageURL": "https://graph.facebook.com/sallybeauty/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7405065", "shop": "hairdresser_supply"}, "addTags": {"brand": "Sally Beauty Supply", "brand:wikidata": "Q7405065", "brand:wikipedia": "en:Sally Beauty Holdings", "name": "Sally Beauty Supply", "shop": "hairdresser_supply"}, "countryCodes": ["be", "ca", "cl", "de", "es", "fr", "gb", "ie", "mx", "nl", "pe", "pr", "us"], "terms": ["sally beauty"], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Camille Albane": {"name": "Camille Albane", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/CamilleAlbane.Paris/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62965183", "shop": "hairdresser"}, "addTags": {"brand": "Camille Albane", "brand:wikidata": "Q62965183", "name": "Camille Albane", "shop": "hairdresser"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Celly's": {"name": "Celly's", "icon": "temaki-beauty_salon", "imageURL": "https://pbs.twimg.com/profile_images/971358647/price_list_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q86837698", "shop": "hairdresser"}, "addTags": {"brand": "Celly's", "brand:wikidata": "Q86837698", "name": "Celly's", "shop": "hairdresser"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Cost Cutters": {"name": "Cost Cutters", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/CostCutters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62029366", "shop": "hairdresser"}, "addTags": {"brand": "Cost Cutters", "brand:wikidata": "Q62029366", "name": "Cost Cutters", "shop": "hairdresser"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Dessange": {"name": "Dessange", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/DESSANGE.Paris/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62979914", "shop": "hairdresser"}, "addTags": {"brand": "Dessange", "brand:wikidata": "Q62979914", "name": "Dessange", "shop": "hairdresser"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Fantastic Sams": {"name": "Fantastic Sams", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/fantasticsamscutandcolor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5434222", "shop": "hairdresser"}, "addTags": {"brand": "Fantastic Sams", "brand:wikidata": "Q5434222", "brand:wikipedia": "en:Fantastic Sams", "name": "Fantastic Sams", "shop": "hairdresser"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Ferber": {"name": "Ferber", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/Ferberlux/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88180887", "shop": "hairdresser"}, "addTags": {"brand": "Ferber", "brand:wikidata": "Q88180887", "name": "Ferber", "shop": "hairdresser"}, "countryCodes": ["lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/First Choice Haircutters": {"name": "First Choice Haircutters", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/SignatureStyleSalons/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5452622", "shop": "hairdresser"}, "addTags": {"brand": "First Choice Haircutters", "brand:wikidata": "Q5452622", "brand:wikipedia": "en:First Choice Haircutters", "name": "First Choice Haircutters", "shop": "hairdresser"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Franck Provost": {"name": "Franck Provost", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/franck.provost.paris/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62805922", "shop": "hairdresser"}, "addTags": {"brand": "Franck Provost", "brand:wikidata": "Q62805922", "brand:wikipedia": "fr:Franck Provost (Salons de coiffure)", "name": "Franck Provost", "shop": "hairdresser"}, "countryCodes": ["be", "fr", "lu", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Great Clips": {"name": "Great Clips", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/GreatClips/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5598967", "shop": "hairdresser"}, "addTags": {"brand": "Great Clips", "brand:wikidata": "Q5598967", "brand:wikipedia": "en:Great Clips", "name": "Great Clips", "shop": "hairdresser"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Hair Cuttery": {"name": "Hair Cuttery", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/haircuttery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5639484", "shop": "hairdresser"}, "addTags": {"brand": "Hair Cuttery", "brand:wikidata": "Q5639484", "brand:wikipedia": "en:Hair Cuttery", "name": "Hair Cuttery", "shop": "hairdresser"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Hair Express": {"name": "Hair Express", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/hairexpressfriseur/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57550814", "shop": "hairdresser"}, "addTags": {"brand": "Hair Express", "brand:wikidata": "Q57550814", "name": "Hair Express", "shop": "hairdresser"}, "countryCodes": ["de", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Hairkiller": {"name": "Hairkiller", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/hairkillerDetmold/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58305998", "shop": "hairdresser"}, "addTags": {"brand": "Hairkiller", "brand:wikidata": "Q58305998", "name": "Hairkiller", "shop": "hairdresser"}, "countryCodes": ["at", "de", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Igorance": {"name": "Igorance", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/IgoranceCoiffure/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88181481", "shop": "hairdresser"}, "addTags": {"brand": "Igorance", "brand:wikidata": "Q88181481", "name": "Igorance", "shop": "hairdresser"}, "countryCodes": ["lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Jean Louis David": {"name": "Jean Louis David", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/jean.louis.david.officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64445174", "shop": "hairdresser"}, "addTags": {"brand": "Jean Louis David", "brand:wikidata": "Q64445174", "name": "Jean Louis David", "shop": "hairdresser"}, "countryCodes": ["es", "fr", "it", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Klier": {"name": "Klier", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/frisoerklier/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1465159", "shop": "hairdresser"}, "addTags": {"brand": "Klier", "brand:wikidata": "Q1465159", "brand:wikipedia": "de:Frisör Klier", "name": "Klier", "shop": "hairdresser"}, "countryCodes": ["at", "cz", "de", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Klipp": {"name": "Klipp", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/klipp.frisoer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1737304", "shop": "hairdresser"}, "addTags": {"brand": "Klipp", "brand:wikidata": "Q1737304", "brand:wikipedia": "de:Klipp Frisör", "name": "Klipp", "shop": "hairdresser"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Mastercuts": {"name": "Mastercuts", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/MasterCuts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64026258", "shop": "hairdresser"}, "addTags": {"brand": "Mastercuts", "brand:wikidata": "Q64026258", "name": "Mastercuts", "shop": "hairdresser"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Pascal Coste": {"name": "Pascal Coste", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/pascalcosteofficiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66555630", "shop": "hairdresser"}, "addTags": {"brand": "Pascal Coste", "brand:wikidata": "Q66555630", "name": "Pascal Coste", "shop": "hairdresser"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/QBハウス": {"name": "QBハウス", "icon": "temaki-beauty_salon", "imageURL": "https://pbs.twimg.com/profile_images/875647527688691712/omCFc4Q3_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11297528", "shop": "hairdresser"}, "addTags": {"brand": "QBハウス", "brand:en": "QB HOUSE", "brand:ja": "QBハウス", "brand:wikidata": "Q11297528", "brand:wikipedia": "ja:キュービーネット", "name": "QBハウス", "name:en": "QB HOUSE", "name:ja": "QBハウス", "shop": "hairdresser"}, "countryCodes": ["jp"], "terms": ["qb", "キュービーハウス"], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Ryanhair": {"name": "Ryanhair", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/ryanhairlux/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88180487", "shop": "hairdresser"}, "addTags": {"brand": "Ryanhair", "brand:wikidata": "Q88180487", "name": "Ryanhair", "shop": "hairdresser"}, "countryCodes": ["lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Saint Algue": {"name": "Saint Algue", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/saint.algue.officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62973210", "shop": "hairdresser"}, "addTags": {"brand": "Saint Algue", "brand:wikidata": "Q62973210", "name": "Saint Algue", "shop": "hairdresser"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Sport Clips": {"name": "Sport Clips", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/SportClipsHaircuts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7579310", "shop": "hairdresser"}, "addTags": {"brand": "Sport Clips", "brand:wikidata": "Q7579310", "name": "Sport Clips", "shop": "hairdresser"}, "countryCodes": ["ca", "us"], "terms": ["sport clips haircuts", "sports clips"], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Super Cut": {"name": "Super Cut", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/supercut.friseur/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64139077", "shop": "hairdresser"}, "addTags": {"brand": "Super Cut", "brand:wikidata": "Q64139077", "name": "Super Cut", "shop": "hairdresser"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Supercuts": {"name": "Supercuts", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/Supercuts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7643239", "shop": "hairdresser"}, "addTags": {"brand": "Supercuts", "brand:wikidata": "Q7643239", "brand:wikipedia": "en:Supercuts", "name": "Supercuts", "shop": "hairdresser"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Tchip": {"name": "Tchip", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/TCHIP.Coiffure.Officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62871250", "shop": "hairdresser"}, "addTags": {"brand": "Tchip", "brand:wikidata": "Q62871250", "name": "Tchip", "shop": "hairdresser"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/The Salon at Ulta Beauty": {"name": "The Salon at Ulta Beauty", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/UltaBeauty/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7880076", "shop": "hairdresser"}, "addTags": {"alt_name": "Ulta Salon", "brand": "Ulta Beauty", "brand:wikidata": "Q7880076", "brand:wikipedia": "en:Ulta Beauty", "name": "The Salon at Ulta Beauty", "shop": "hairdresser"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Toni & Guy": {"name": "Toni & Guy", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/toniandguyworld/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q324784", "shop": "hairdresser"}, "addTags": {"brand": "Toni & Guy", "brand:wikidata": "Q324784", "brand:wikipedia": "en:Toni & Guy", "name": "Toni & Guy", "shop": "hairdresser"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/Top Hair": {"name": "Top Hair", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/Mein.Friseur.Top.Hair/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62523343", "shop": "hairdresser"}, "addTags": {"brand": "Top Hair", "brand:wikidata": "Q62523343", "name": "Top Hair", "shop": "hairdresser"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/カットコムズ": {"name": "カットコムズ", "icon": "temaki-beauty_salon", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCutcomz%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q91104902", "shop": "hairdresser"}, "addTags": {"brand": "カットコムズ", "brand:en": "Cutcomz", "brand:ja": "カットコムズ", "brand:wikidata": "Q91104902", "name": "カットコムズ", "name:en": "Cutcomz", "name:ja": "カットコムズ", "shop": "hairdresser"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/カットファクトリー": {"name": "カットファクトリー", "icon": "temaki-beauty_salon", "imageURL": "https://graph.facebook.com/187242128024409/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q91102312", "shop": "hairdresser"}, "addTags": {"brand": "カットファクトリー", "brand:en": "Cut Factory", "brand:ja": "カットファクトリー", "brand:wikidata": "Q91102312", "name": "カットファクトリー", "name:en": "Cut Factory", "name:ja": "カットファクトリー", "shop": "hairdresser"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hairdresser/ファミリーカット1000": {"name": "ファミリーカット1000", "icon": "temaki-beauty_salon", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFamily%20Cut%201000%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q91108482", "shop": "hairdresser"}, "addTags": {"brand": "ファミリーカット1000", "brand:en": "Family Cut 1000", "brand:ja": "ファミリーカット1000", "brand:wikidata": "Q91108482", "name": "ファミリーカット1000", "name:en": "Family Cut 1000", "name:ja": "ファミリーカット1000", "shop": "hairdresser"}, "countryCodes": ["jp"], "terms": ["ファミリーカット"], "matchScore": 2, "suggestion": true}, - "shop/hardware/220 вольт": {"name": "220 вольт", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/likevolt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18635304", "shop": "hardware"}, "addTags": {"brand": "220 вольт", "brand:en": "220 Volt", "brand:ru": "220 вольт", "brand:wikidata": "Q18635304", "brand:wikipedia": "ru:220 Вольт (компания)", "name": "220 вольт", "name:en": "220 Volt", "name:ru": "220 вольт", "shop": "hardware"}, "countryCodes": ["by", "ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hardware/Harbor Freight Tools": {"name": "Harbor Freight Tools", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/harborfreight/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5654601", "shop": "hardware"}, "addTags": {"brand": "Harbor Freight Tools", "brand:wikidata": "Q5654601", "brand:wikipedia": "en:Harbor Freight Tools", "name": "Harbor Freight Tools", "shop": "hardware"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hardware/Home Hardware": {"name": "Home Hardware", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/homehardwarestores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3139611", "shop": "hardware"}, "addTags": {"brand": "Home Hardware", "brand:wikidata": "Q3139611", "brand:wikipedia": "en:Home Hardware", "name": "Home Hardware", "shop": "hardware"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hardware/K-Rauta": {"name": "K-Rauta", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/KRautaSuomi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4206187", "shop": "hardware"}, "addTags": {"brand": "K-Rauta", "brand:wikidata": "Q4206187", "brand:wikipedia": "fi:K-Rauta", "name": "K-Rauta", "shop": "hardware"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hardware/Kodin Terra": {"name": "Kodin Terra", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/KodinTerraPori/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11872038", "shop": "hardware"}, "addTags": {"brand": "Kodin Terra", "brand:wikidata": "Q11872038", "brand:wikipedia": "fi:Kodin Terra", "name": "Kodin Terra", "shop": "hardware"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hardware/Proper Job": {"name": "Proper Job", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/ProperJobStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q83741810", "shop": "hardware"}, "addTags": {"brand": "Proper Job", "brand:wikidata": "Q83741810", "name": "Proper Job", "shop": "hardware"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hardware/True Value": {"name": "True Value", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/TrueValue/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7847545", "shop": "hardware"}, "addTags": {"brand": "True Value", "brand:wikidata": "Q7847545", "brand:wikipedia": "en:True Value", "name": "True Value", "shop": "hardware"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hardware/Würth": {"name": "Würth", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Wuerth.Group/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q679750", "shop": "hardware"}, "addTags": {"brand": "Würth", "brand:wikidata": "Q679750", "brand:wikipedia": "de:Würth-Gruppe", "name": "Würth", "shop": "hardware"}, "countryCodes": ["be", "de", "fi", "fr", "it", "no"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hardware/Мосхозторг": {"name": "Мосхозторг", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/MosHozTorg/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62499092", "shop": "hardware"}, "addTags": {"brand": "Мосхозторг", "brand:wikidata": "Q62499092", "name": "Мосхозторг", "shop": "hardware"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hardware/ロフト": {"name": "ロフト", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/Only.at.Loft/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5358428", "shop": "hardware"}, "addTags": {"brand": "ロフト", "brand:en": "Loft", "brand:ja": "ロフト", "brand:wikidata": "Q5358428", "brand:wikipedia": "ja:ロフト (雑貨店)", "name": "ロフト", "name:en": "Loft", "name:ja": "ロフト", "shop": "hardware"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/health_food/Grape Tree": {"name": "Grape Tree", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/grapetree2012/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87071497", "shop": "health_food"}, "addTags": {"brand": "Grape Tree", "brand:wikidata": "Q87071497", "name": "Grape Tree", "shop": "health_food"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/health_food/Holland & Barrett": {"name": "Holland & Barrett", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/hollandandbarrett/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5880870", "shop": "health_food"}, "addTags": {"brand": "Holland & Barrett", "brand:wikidata": "Q5880870", "brand:wikipedia": "en:Holland & Barrett", "name": "Holland & Barrett", "shop": "health_food"}, "countryCodes": ["gb", "ie", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Amplifon": {"name": "Amplifon", "icon": "temaki-hearing_aid", "imageURL": "https://graph.facebook.com/AmplifonGroupCareers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q477222", "shop": "hearing_aids"}, "addTags": {"brand": "Amplifon", "brand:wikidata": "Q477222", "brand:wikipedia": "en:Amplifon", "name": "Amplifon", "shop": "hearing_aids"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Audika": {"name": "Audika", "icon": "temaki-hearing_aid", "imageURL": "https://graph.facebook.com/audikafrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2870745", "shop": "hearing_aids"}, "addTags": {"brand": "Audika", "brand:wikidata": "Q2870745", "brand:wikipedia": "fr:Audika", "name": "Audika", "shop": "hearing_aids"}, "countryCodes": ["ch", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Geers": {"name": "Geers", "icon": "temaki-hearing_aid", "imageURL": "https://graph.facebook.com/geers.hoerakustik/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1497707", "shop": "hearing_aids"}, "addTags": {"brand": "Geers", "brand:wikidata": "Q1497707", "brand:wikipedia": "de:Geers Hörakustik", "name": "Geers", "shop": "hearing_aids"}, "countryCodes": ["de", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Kind Hörgeräte": {"name": "Kind Hörgeräte", "icon": "temaki-hearing_aid", "imageURL": "https://graph.facebook.com/kindhoerenundsehen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q43598590", "shop": "hearing_aids"}, "addTags": {"brand": "Kind Hörgeräte", "brand:wikidata": "Q43598590", "brand:wikipedia": "de:Kind Hörgeräte", "name": "Kind Hörgeräte", "shop": "hearing_aids"}, "countryCodes": ["de"], "terms": ["kind"], "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Miracle-Ear": {"name": "Miracle-Ear", "icon": "temaki-hearing_aid", "imageURL": "https://graph.facebook.com/miracleear/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17108572", "shop": "hearing_aids"}, "addTags": {"brand": "Miracle-Ear", "brand:wikidata": "Q17108572", "brand:wikipedia": "en:Miracle-Ear", "name": "Miracle-Ear", "shop": "hearing_aids"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Neuroth": {"name": "Neuroth", "icon": "temaki-hearing_aid", "imageURL": "https://graph.facebook.com/NeurothAG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15836645", "shop": "hearing_aids"}, "addTags": {"brand": "Neuroth", "brand:wikidata": "Q15836645", "brand:wikipedia": "de:Neuroth AG", "name": "Neuroth", "shop": "hearing_aids"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hearing_aids/Vitakustik": {"name": "Vitakustik", "icon": "temaki-hearing_aid", "imageURL": "https://graph.facebook.com/vitakustik/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87123390", "shop": "hearing_aids"}, "addTags": {"brand": "Vitakustik", "brand:wikidata": "Q87123390", "name": "Vitakustik", "shop": "hearing_aids"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hifi/Bang & Olufsen": {"name": "Bang & Olufsen", "icon": "temaki-speaker", "imageURL": "https://pbs.twimg.com/profile_images/1109108038621949953/HUGbJF1__bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q790020", "shop": "hifi"}, "addTags": {"brand": "Bang & Olufsen", "brand:wikidata": "Q790020", "brand:wikipedia": "en:Bang & Olufsen", "name": "Bang & Olufsen", "shop": "hifi"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hifi/Bose": {"name": "Bose", "icon": "temaki-speaker", "imageURL": "https://graph.facebook.com/Bose/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q328568", "shop": "hifi"}, "addTags": {"brand": "Bose", "brand:wikidata": "Q328568", "brand:wikipedia": "en:Bose Corporation", "name": "Bose", "shop": "hifi"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hifi/Devialet": {"name": "Devialet", "icon": "temaki-speaker", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDEVIALET-ingenierie-Logo-3.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3025419", "shop": "hifi"}, "addTags": {"brand": "Devialet", "brand:wikidata": "Q3025419", "brand:wikipedia": "fr:Devialet", "name": "Devialet", "shop": "hifi"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hifi/Harman Kardon": {"name": "Harman Kardon", "icon": "temaki-speaker", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHarman%20Kardon%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1476454", "shop": "hifi"}, "addTags": {"brand": "Harman Kardon", "brand:wikidata": "Q1476454", "brand:wikipedia": "en:Harman Kardon", "name": "Harman Kardon", "shop": "hifi"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hifi/JBL": {"name": "JBL", "icon": "temaki-speaker", "imageURL": "https://graph.facebook.com/JBL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1153754", "shop": "hifi"}, "addTags": {"brand": "JBL", "brand:wikidata": "Q1153754", "brand:wikipedia": "en:JBL", "name": "JBL", "shop": "hifi"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hobby/アニメイト": {"name": "アニメイト", "icon": "fas-dragon", "imageURL": "https://pbs.twimg.com/profile_images/1098862296787382272/pLo1nSbN_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1041890", "shop": "hobby"}, "addTags": {"brand": "アニメイト", "brand:en": "Animate", "brand:ja": "アニメイト", "brand:wikidata": "Q1041890", "brand:wikipedia": "ja:アニメイト", "name": "アニメイト", "name:en": "Animate", "name:ja": "アニメイト", "shop": "hobby"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hobby/イエロー・サブマリン": {"name": "イエロー・サブマリン", "icon": "fas-dragon", "imageURL": "https://graph.facebook.com/sohonkesurugayasurugamachihonpo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11668496", "shop": "hobby"}, "addTags": {"brand": "イエロー・サブマリン", "brand:en": "Yellow Submarine", "brand:ja": "イエロー・サブマリン", "brand:wikidata": "Q11668496", "brand:wikipedia": "ja:ホビーベースイエローサブマリン", "name": "イエロー・サブマリン", "name:en": "Yellow Submarine", "name:ja": "イエロー・サブマリン", "shop": "hobby"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hobby/ジャンプショップ": {"name": "ジャンプショップ", "icon": "fas-dragon", "imageURL": "https://graph.facebook.com/jumpshoptokyo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11310200", "shop": "hobby"}, "addTags": {"brand": "ジャンプショップ", "brand:en": "Jump Shop", "brand:ja": "ジャンプショップ", "brand:wikidata": "Q11310200", "brand:wikipedia": "ja:ジャンプショップ", "name": "ジャンプショップ", "name:en": "Jump Shop", "name:ja": "ジャンプショップ", "shop": "hobby"}, "countryCodes": ["jp"], "terms": ["ジャンプ"], "matchScore": 2, "suggestion": true}, - "shop/hobby/ポケモンセンター": {"name": "ポケモンセンター", "icon": "fas-dragon", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPokemon%20centre.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89673816", "shop": "hobby"}, "addTags": {"brand": "ポケモンセンター", "brand:en": "Pokémon Center", "brand:ja": "ポケモンセンター", "brand:wikidata": "Q89673816", "name": "ポケモンセンター", "name:en": "Pokémon Center", "name:ja": "ポケモンセンター", "shop": "hobby"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/hobby/駿河屋": {"name": "駿河屋", "icon": "fas-dragon", "imageURL": "https://graph.facebook.com/SurugayaJP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88485610", "shop": "hobby"}, "addTags": {"brand": "駿河屋", "brand:en": "Surugaya", "brand:ja": "駿河屋", "brand:wikidata": "Q88485610", "name": "駿河屋", "name:en": "Surugaya", "name:ja": "駿河屋", "shop": "hobby"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/household_linen/Carré Blanc": {"name": "Carré Blanc", "icon": "temaki-cloth", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55596025", "shop": "household_linen"}, "addTags": {"brand": "Carré Blanc", "brand:wikidata": "Q55596025", "brand:wikipedia": "fr:Carré blanc (entreprise)", "name": "Carré Blanc", "shop": "household_linen"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/household_linen/Descamps": {"name": "Descamps", "icon": "temaki-cloth", "imageURL": "https://graph.facebook.com/Descamps/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q91002058", "shop": "household_linen"}, "addTags": {"brand": "Descamps", "brand:wikidata": "Q91002058", "name": "Descamps", "shop": "household_linen"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/At Home": {"name": "At Home", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/AtHomeStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5522290", "shop": "houseware"}, "addTags": {"brand": "At Home", "brand:wikidata": "Q5522290", "brand:wikipedia": "en:At Home (store)", "name": "At Home", "shop": "houseware"}, "countryCodes": ["us"], "terms": ["garden ridge"], "matchScore": 2, "suggestion": true}, - "shop/houseware/Bed Bath & Beyond": {"name": "Bed Bath & Beyond", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/BedBathAndBeyond/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q813782", "shop": "houseware"}, "addTags": {"brand": "Bed Bath & Beyond", "brand:wikidata": "Q813782", "brand:wikipedia": "en:Bed Bath & Beyond", "name": "Bed Bath & Beyond", "shop": "houseware"}, "countryCodes": ["ca", "mx", "nz", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Blokker": {"name": "Blokker", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/BlokkerNL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q884934", "shop": "houseware"}, "addTags": {"brand": "Blokker", "brand:wikidata": "Q884934", "brand:wikipedia": "en:Blokker Holding", "name": "Blokker", "shop": "houseware"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Cervera": {"name": "Cervera", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/CerveraAB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10447179", "shop": "houseware"}, "addTags": {"brand": "Cervera", "brand:wikidata": "Q10447179", "brand:wikipedia": "sv:Cervera (företag)", "name": "Cervera", "shop": "houseware"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/HomeGoods": {"name": "HomeGoods", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/Homegoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5887941", "shop": "houseware"}, "addTags": {"brand": "HomeGoods", "brand:wikidata": "Q5887941", "brand:wikipedia": "en:HomeGoods", "name": "HomeGoods", "shop": "houseware"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/KODi": {"name": "KODi", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/kodi.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1778216", "shop": "houseware"}, "addTags": {"brand": "KODi", "brand:wikidata": "Q1778216", "brand:wikipedia": "de:Kodi (Unternehmen)", "name": "KODi", "shop": "houseware"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Kitchen Collection": {"name": "Kitchen Collection", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/KitchenCollectionStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64149036", "shop": "houseware"}, "addTags": {"brand": "Kitchen Collection", "brand:wikidata": "Q64149036", "name": "Kitchen Collection", "shop": "houseware"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Lagerhaus": {"name": "Lagerhaus", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/lagerhaus.se/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10553211", "shop": "houseware"}, "addTags": {"brand": "Lagerhaus", "brand:wikidata": "Q10553211", "brand:wikipedia": "sv:Lagerhaus", "name": "Lagerhaus", "shop": "houseware"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Lakeland": {"name": "Lakeland", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/LakelandUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16256199", "shop": "houseware"}, "addTags": {"brand": "Lakeland", "brand:wikidata": "Q16256199", "brand:wikipedia": "en:Lakeland (company)", "name": "Lakeland", "shop": "houseware"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Le Creuset": {"name": "Le Creuset", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/lecreuset/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q555861", "shop": "houseware"}, "addTags": {"brand": "Le Creuset", "brand:wikidata": "Q555861", "brand:wikipedia": "en:Le Creuset", "name": "Le Creuset", "shop": "houseware"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Marskramer": {"name": "Marskramer", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/marskramer.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2305917", "shop": "houseware"}, "addTags": {"brand": "Marskramer", "brand:wikidata": "Q2305917", "brand:wikipedia": "nl:Marskramer (warenhuis)", "name": "Marskramer", "shop": "houseware"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Old Time Pottery": {"name": "Old Time Pottery", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/oldtimepottery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7085222", "shop": "houseware"}, "addTags": {"brand": "Old Time Pottery", "brand:wikidata": "Q7085222", "brand:wikipedia": "en:Old Time Pottery", "name": "Old Time Pottery", "shop": "houseware"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Stokes": {"name": "Stokes", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/StokesStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66481382", "shop": "houseware"}, "addTags": {"brand": "Stokes", "brand:wikidata": "Q66481382", "name": "Stokes", "shop": "houseware"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Sur La Table": {"name": "Sur La Table", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/SurLaTable/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7645220", "shop": "houseware"}, "addTags": {"brand": "Sur La Table", "brand:wikidata": "Q7645220", "brand:wikipedia": "en:Sur La Table", "name": "Sur La Table", "shop": "houseware"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/The Container Store": {"name": "The Container Store", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/containerstore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7727445", "shop": "houseware"}, "addTags": {"brand": "The Container Store", "brand:wikidata": "Q7727445", "brand:wikipedia": "en:The Container Store", "name": "The Container Store", "shop": "houseware"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/The Range": {"name": "The Range", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/therange/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7759409", "shop": "houseware"}, "addTags": {"brand": "The Range", "brand:wikidata": "Q7759409", "name": "The Range", "shop": "houseware"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Think Kitchen": {"name": "Think Kitchen", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/thinkkitchenstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66481390", "shop": "houseware"}, "addTags": {"brand": "Think Kitchen", "brand:wikidata": "Q66481390", "name": "Think Kitchen", "shop": "houseware"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Tuesday Morning": {"name": "Tuesday Morning", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/TuesdayMorning/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7851426", "shop": "houseware"}, "addTags": {"brand": "Tuesday Morning", "brand:wikidata": "Q7851426", "brand:wikipedia": "en:Tuesday Morning", "name": "Tuesday Morning", "shop": "houseware"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/WMF": {"name": "WMF", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/WMF/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q451423", "shop": "houseware"}, "addTags": {"brand": "WMF", "brand:wikidata": "Q451423", "brand:wikipedia": "en:WMF Group", "name": "WMF", "shop": "houseware"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/Williams-Sonoma": {"name": "Williams-Sonoma", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/WilliamsSonoma/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2581220", "shop": "houseware"}, "addTags": {"brand": "Williams-Sonoma", "brand:wikidata": "Q2581220", "brand:wikipedia": "en:Williams-Sonoma", "name": "Williams-Sonoma", "shop": "houseware"}, "countryCodes": ["ca", "us"], "terms": ["william sonoma"], "matchScore": 2, "suggestion": true}, - "shop/houseware/Xenos": {"name": "Xenos", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/XenosNL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16547960", "shop": "houseware"}, "addTags": {"brand": "Xenos", "brand:wikidata": "Q16547960", "brand:wikipedia": "nl:Xenos", "name": "Xenos", "shop": "houseware"}, "countryCodes": ["de", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/houseware/京王アートマン": {"name": "京王アートマン", "icon": "fas-blender", "imageURL": "https://graph.facebook.com/keio.atman/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11374580", "shop": "houseware"}, "addTags": {"brand": "京王アートマン", "brand:en": "Keio Atman", "brand:ja": "京王アートマン", "brand:wikidata": "Q11374580", "brand:wikipedia": "ja:京王アートマン", "name": "京王アートマン", "name:en": "Keio Atman", "name:ja": "京王アートマン", "shop": "houseware"}, "countryCodes": ["jp"], "terms": ["アートマン"], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/Centrakor": {"name": "Centrakor", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Centrakor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64079345", "shop": "interior_decoration"}, "addTags": {"brand": "Centrakor", "brand:wikidata": "Q64079345", "brand:wikipedia": "fr:Centrakor", "name": "Centrakor", "shop": "interior_decoration"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/Depot": {"name": "Depot", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/DEPOTonline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1191740", "shop": "interior_decoration"}, "addTags": {"brand": "Depot", "brand:wikidata": "Q1191740", "brand:wikipedia": "de:Gries Deco Holding", "name": "Depot", "shop": "interior_decoration"}, "countryCodes": ["at", "ch", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/Fired Earth": {"name": "Fired Earth", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/FiredEarth/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20594569", "shop": "interior_decoration"}, "addTags": {"brand": "Fired Earth", "brand:wikidata": "Q20594569", "name": "Fired Earth", "shop": "interior_decoration"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/Habitat (UK)": {"name": "Habitat (UK)", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/HabitatUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87145455", "shop": "interior_decoration"}, "addTags": {"brand": "Habitat", "brand:wikidata": "Q87145455", "brand:wikipedia": "en:Habitat (retailer)", "name": "Habitat", "shop": "interior_decoration"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/Hemtex": {"name": "Hemtex", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/hemtex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10521868", "shop": "interior_decoration"}, "addTags": {"brand": "Hemtex", "brand:wikidata": "Q10521868", "brand:wikipedia": "sv:Hemtex", "name": "Hemtex", "shop": "interior_decoration"}, "countryCodes": ["ee", "fi", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/HomeSense": {"name": "HomeSense", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/HomesenseUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16844433", "shop": "interior_decoration"}, "addTags": {"brand": "HomeSense", "brand:wikidata": "Q16844433", "brand:wikipedia": "en:HomeSense", "name": "HomeSense", "shop": "interior_decoration"}, "countryCodes": ["ca", "gb", "ie", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/Kirkland's": {"name": "Kirkland's", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Kirklands/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6415714", "shop": "interior_decoration"}, "addTags": {"brand": "Kirkland's", "brand:wikidata": "Q6415714", "brand:wikipedia": "en:Kirkland's", "name": "Kirkland's", "shop": "interior_decoration"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/Pier 1 Imports": {"name": "Pier 1 Imports", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/pier1/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7191691", "shop": "interior_decoration"}, "addTags": {"brand": "Pier 1 Imports", "brand:wikidata": "Q7191691", "brand:wikipedia": "en:Pier 1 Imports", "name": "Pier 1 Imports", "shop": "interior_decoration"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/Ten Thousand Villages": {"name": "Ten Thousand Villages", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TenThousandVillages/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2403252", "shop": "interior_decoration"}, "addTags": {"brand": "Ten Thousand Villages", "brand:wikidata": "Q2403252", "brand:wikipedia": "en:Ten Thousand Villages", "fair_trade": "only", "name": "Ten Thousand Villages", "shop": "interior_decoration"}, "countryCodes": ["ca", "us"], "terms": ["10 thousand villages", "10,000 villages"], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/World Market": {"name": "World Market", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/worldmarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5174750", "shop": "interior_decoration"}, "addTags": {"brand": "World Market", "brand:wikidata": "Q5174750", "brand:wikipedia": "en:Cost Plus World Market", "name": "World Market", "official_name": "Cost Plus World Market", "shop": "interior_decoration"}, "countryCodes": ["us"], "terms": ["cost plus"], "matchScore": 2, "suggestion": true}, - "shop/interior_decoration/Zara Home": {"name": "Zara Home", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/473486686119153664/FMfw8ewN_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3114054", "shop": "interior_decoration"}, "addTags": {"brand": "Zara Home", "brand:wikidata": "Q3114054", "brand:wikipedia": "en:Zara Home", "name": "Zara Home", "shop": "interior_decoration"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Alex and Ani": {"name": "Alex and Ani", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/alexandaniusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16198810", "shop": "jewelry"}, "addTags": {"brand": "Alex and Ani", "brand:wikidata": "Q16198810", "brand:wikipedia": "en:Alex and Ani", "name": "Alex and Ani", "shop": "jewelry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Apart": {"name": "Apart", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/BizuteriaApart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11686561", "shop": "jewelry"}, "addTags": {"brand": "Apart", "brand:wikidata": "Q11686561", "brand:wikipedia": "pl:Apart", "name": "Apart", "shop": "jewelry"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Beaverbrooks": {"name": "Beaverbrooks", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/beaverbrooks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4878226", "shop": "jewelry"}, "addTags": {"brand": "Beaverbrooks", "brand:wikidata": "Q4878226", "brand:wikipedia": "en:Beaverbrooks", "name": "Beaverbrooks", "shop": "jewelry"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Bijou Brigitte": {"name": "Bijou Brigitte", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/bijoubrigitte/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q599545", "shop": "jewelry"}, "addTags": {"brand": "Bijou Brigitte", "brand:wikidata": "Q599545", "brand:wikipedia": "de:Bijou Brigitte", "name": "Bijou Brigitte", "shop": "jewelry"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Cartier": {"name": "Cartier", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/cartier.usa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q538587", "shop": "jewelry"}, "addTags": {"brand": "Cartier", "brand:wikidata": "Q538587", "brand:wikipedia": "en:Cartier (jeweler)", "name": "Cartier", "shop": "jewelry"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Charm Diamond Centres": {"name": "Charm Diamond Centres", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/CharmDiamonds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5086396", "shop": "jewelry"}, "addTags": {"brand": "Charm Diamond Centres", "brand:wikidata": "Q5086396", "brand:wikipedia": "en:Charm Diamond Centres", "name": "Charm Diamond Centres", "shop": "jewelry"}, "countryCodes": ["ca"], "terms": ["charm diamond", "charm diamond centre"], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Chisholm Hunter": {"name": "Chisholm Hunter", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/ChisholmHunterOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66662001", "shop": "jewelry"}, "addTags": {"brand": "Chisholm Hunter", "brand:wikidata": "Q66662001", "name": "Chisholm Hunter", "shop": "jewelry"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Christ": {"name": "Christ", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/juwelierchrist/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1077957", "shop": "jewelry"}, "addTags": {"brand": "Christ", "brand:wikidata": "Q1077957", "brand:wikipedia": "de:Christ (Juwelier)", "name": "Christ", "shop": "jewelry"}, "countryCodes": ["ch", "de", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/David Yurman": {"name": "David Yurman", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/DavidYurman/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5241390", "shop": "jewelry"}, "addTags": {"brand": "David Yurman", "brand:wikidata": "Q5241390", "brand:wikipedia": "en:David Yurman", "name": "David Yurman", "shop": "jewelry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Ernest Jones": {"name": "Ernest Jones", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/ernestjonesjewellers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5393358", "shop": "jewelry"}, "addTags": {"brand": "Ernest Jones", "brand:wikidata": "Q5393358", "brand:wikipedia": "en:Ernest Jones (retailer)", "name": "Ernest Jones", "shop": "jewelry"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/F.Hinds": {"name": "F.Hinds", "icon": "maki-jewelry-store", "imageURL": "https://pbs.twimg.com/profile_images/859360908304371712/lYv3bPA7_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5423915", "shop": "jewelry"}, "addTags": {"brand": "F.Hinds", "brand:wikidata": "Q5423915", "brand:wikipedia": "en:F. Hinds", "name": "F.Hinds", "shop": "jewelry"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Fred Meyer": {"name": "Fred Meyer", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/fredmeyer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5495932", "shop": "jewelry"}, "addTags": {"brand": "Fred Meyer", "brand:wikidata": "Q5495932", "brand:wikipedia": "en:Fred Meyer", "name": "Fred Meyer", "shop": "jewelry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Goldsmiths": {"name": "Goldsmiths", "icon": "maki-jewelry-store", "imageURL": "https://pbs.twimg.com/profile_images/1161193150247047170/JWBAlWqx_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16993095", "shop": "jewelry"}, "addTags": {"brand": "Goldsmiths", "brand:wikidata": "Q16993095", "brand:wikipedia": "en:Goldsmiths (retailer)", "name": "Goldsmiths", "shop": "jewelry"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Guldfynd": {"name": "Guldfynd", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/Guldfynd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q49099223", "shop": "jewelry"}, "addTags": {"brand": "Guldfynd", "brand:wikidata": "Q49099223", "brand:wikipedia": "sv:Guldfynd", "name": "Guldfynd", "shop": "jewelry"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/H.Samuel": {"name": "H.Samuel", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/HSamuelTheJeweller/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5628558", "shop": "jewelry"}, "addTags": {"brand": "H.Samuel", "brand:wikidata": "Q5628558", "brand:wikipedia": "en:H. Samuel", "name": "H.Samuel", "shop": "jewelry"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Helzberg Diamonds": {"name": "Helzberg Diamonds", "icon": "maki-jewelry-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHelzberg%20Diamonds%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16995161", "shop": "jewelry"}, "addTags": {"brand": "Helzberg Diamonds", "brand:wikidata": "Q16995161", "brand:wikipedia": "en:Helzberg Diamonds", "name": "Helzberg Diamonds", "shop": "jewelry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Histoire d'Or": {"name": "Histoire d'Or", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/HistoiredOr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62529245", "shop": "jewelry"}, "addTags": {"brand": "Histoire d'Or", "brand:wikidata": "Q62529245", "name": "Histoire d'Or", "shop": "jewelry"}, "countryCodes": ["be", "fr", "it", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/James Avery Jewelry": {"name": "James Avery Jewelry", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/JamesAvery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6129024", "shop": "jewelry"}, "addTags": {"brand": "James Avery Jewelry", "brand:wikidata": "Q6129024", "brand:wikipedia": "en:James Avery Artisan Jewelry", "name": "James Avery Jewelry", "shop": "jewelry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Jared": {"name": "Jared", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/JaredTheGalleriaOfJewelry/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62029282", "shop": "jewelry"}, "addTags": {"brand": "Jared", "brand:wikidata": "Q62029282", "name": "Jared", "shop": "jewelry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Julien d'Orcel": {"name": "Julien d'Orcel", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/juliendorcel.bijouteries/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62497463", "shop": "jewelry"}, "addTags": {"brand": "Julien d'Orcel", "brand:wikidata": "Q62497463", "name": "Julien d'Orcel", "shop": "jewelry"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Kay Jewelers": {"name": "Kay Jewelers", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/KayJewelers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62029290", "shop": "jewelry"}, "addTags": {"brand": "Kay Jewelers", "brand:wikidata": "Q62029290", "name": "Kay Jewelers", "shop": "jewelry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Lucardi": {"name": "Lucardi", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/LucardiJuweliers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13774940", "shop": "jewelry"}, "addTags": {"brand": "Lucardi", "brand:wikidata": "Q13774940", "brand:wikipedia": "nl:Lucardi", "name": "Lucardi", "shop": "jewelry"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Michael Hill": {"name": "Michael Hill", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/MichaelHillJ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3308250", "shop": "jewelry"}, "addTags": {"brand": "Michael Hill", "brand:wikidata": "Q3308250", "brand:wikipedia": "en:Michael Hill Jeweller", "name": "Michael Hill", "shop": "jewelry"}, "countryCodes": ["au", "ca", "nz", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/PNJ": {"name": "PNJ", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/PNJ.COM.VN/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61129183", "shop": "jewelry"}, "addTags": {"brand": "PNJ", "brand:wikidata": "Q61129183", "brand:wikipedia": "vi:PNJ", "name": "PNJ", "shop": "jewelry"}, "countryCodes": ["vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Pandora": {"name": "Pandora", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/PANDORA.Japan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2241604", "shop": "jewelry"}, "addTags": {"brand": "Pandora", "brand:wikidata": "Q2241604", "brand:wikipedia": "en:Pandora (jewelry)", "name": "Pandora", "shop": "jewelry"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Peoples Jewellers": {"name": "Peoples Jewellers", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/Peoples/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64995558", "shop": "jewelry"}, "addTags": {"brand": "Peoples Jewellers", "brand:wikidata": "Q64995558", "name": "Peoples Jewellers", "shop": "jewelry"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Swarovski": {"name": "Swarovski", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/SWAROVSKI.NorthAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q611115", "shop": "jewelry"}, "addTags": {"brand": "Swarovski", "brand:wikidata": "Q611115", "brand:wikipedia": "en:Swarovski", "name": "Swarovski", "shop": "jewelry"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Thomas Sabo": {"name": "Thomas Sabo", "icon": "maki-jewelry-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTHOMAS%20SABO%20Unternehmenslogo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13415716", "shop": "jewelry"}, "addTags": {"brand": "Thomas Sabo", "brand:wikidata": "Q13415716", "brand:wikipedia": "en:Thomas Sabo", "name": "Thomas Sabo", "shop": "jewelry"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Tiffany & Company": {"name": "Tiffany & Company", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/Tiffany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1066858", "shop": "jewelry"}, "addTags": {"brand": "Tiffany & Company", "brand:wikidata": "Q1066858", "brand:wikipedia": "en:Tiffany & Co.", "name": "Tiffany & Company", "official_name": "Tiffany & Co.", "shop": "jewelry"}, "countryCodes": ["us"], "terms": ["tiffany", "tiffany's"], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Tous": {"name": "Tous", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/tousjewelry/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3815128", "shop": "jewelry"}, "addTags": {"brand": "Tous", "brand:wikidata": "Q3815128", "brand:wikipedia": "en:Tous (company)", "name": "Tous", "shop": "jewelry"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Warren James": {"name": "Warren James", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/warrenjamesjewellers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19604616", "shop": "jewelry"}, "addTags": {"brand": "Warren James", "brand:wikidata": "Q19604616", "brand:wikipedia": "en:Warren James Jewellers", "name": "Warren James", "shop": "jewelry"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Zales": {"name": "Zales", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/Zales/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8065305", "shop": "jewelry"}, "addTags": {"brand": "Zales", "brand:wikidata": "Q8065305", "brand:wikipedia": "en:Zale Corporation", "name": "Zales", "shop": "jewelry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/Адамас": {"name": "Адамас", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/adamas.club/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62393709", "shop": "jewelry"}, "addTags": {"brand": "Адамас", "brand:en": "Adamas", "brand:ru": "Адамас", "brand:wikidata": "Q62393709", "name": "Адамас", "name:en": "Adamas", "name:ru": "Адамас", "shop": "jewelry"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/jewelry/ツツミ": {"name": "ツツミ", "icon": "maki-jewelry-store", "imageURL": "https://graph.facebook.com/JewelryTsutsumi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11318759", "shop": "jewelry"}, "addTags": {"brand": "ツツミ", "brand:en": "Tsutsumi", "brand:ja": "ツツミ", "brand:wikidata": "Q11318759", "brand:wikipedia": "ja:ツツミ", "name": "ツツミ", "name:en": "Tsutsumi", "name:ja": "ツツミ", "official_name": "ジュエリーツツミ", "official_name:en": "Jewelry Tsutsumi", "official_name:ja": "ジュエリーツツミ", "shop": "jewelry"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kiosk/Lietuvos spauda": {"name": "Lietuvos spauda", "icon": "fas-store", "imageURL": "https://graph.facebook.com/narvesen.no/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6514414", "shop": "kiosk"}, "addTags": {"brand": "Lietuvos spauda", "brand:wikidata": "Q6514414", "brand:wikipedia": "lt:Lietuvos spauda", "name": "Lietuvos spauda", "shop": "kiosk"}, "countryCodes": ["lt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kiosk/Narvesen": {"name": "Narvesen", "icon": "fas-store", "imageURL": "https://graph.facebook.com/narvesen.no/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6514414", "shop": "kiosk"}, "addTags": {"brand": "Narvesen", "brand:wikidata": "Q6514414", "brand:wikipedia": "en:Narvesen", "name": "Narvesen", "shop": "kiosk"}, "countryCodes": ["lt", "lv", "no"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kiosk/Pressbyrån": {"name": "Pressbyrån", "icon": "fas-store", "imageURL": "https://graph.facebook.com/Pressbyran/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2489072", "shop": "kiosk"}, "addTags": {"brand": "Pressbyrån", "brand:wikidata": "Q2489072", "brand:wikipedia": "en:Pressbyrån", "name": "Pressbyrån", "shop": "kiosk"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kiosk/R-Kioski": {"name": "R-Kioski", "icon": "fas-store", "imageURL": "https://graph.facebook.com/rkioski/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1571400", "shop": "kiosk"}, "addTags": {"brand": "R-Kioski", "brand:wikidata": "Q1571400", "brand:wikipedia": "en:R-kioski", "name": "R-Kioski", "shop": "kiosk"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kiosk/Ruch": {"name": "Ruch", "icon": "fas-store", "imageURL": "https://graph.facebook.com/ruch/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1260314", "shop": "kiosk"}, "addTags": {"brand": "Ruch", "brand:wikidata": "Q1260314", "brand:wikipedia": "pl:Ruch (przedsiębiorstwo)", "name": "Ruch", "shop": "kiosk"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kiosk/Tisak": {"name": "Tisak", "icon": "fas-store", "imageURL": "https://graph.facebook.com/tisakmedia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12643627", "shop": "kiosk"}, "addTags": {"brand": "Tisak", "brand:wikidata": "Q12643627", "brand:wikipedia": "hr:Tisak (tvrtka)", "name": "Tisak", "shop": "kiosk"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kiosk/k kiosk": {"name": "k kiosk", "icon": "fas-store", "imageURL": "https://graph.facebook.com/kkiosk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60381703", "shop": "kiosk"}, "addTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "brand:wikipedia": "it:K Kiosk", "name": "k kiosk", "shop": "kiosk"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kiosk/キヨスク": {"name": "キヨスク", "icon": "fas-store", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKiosk%20logos.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1334796", "shop": "kiosk"}, "addTags": {"brand": "キヨスク", "brand:en": "KIOSK", "brand:ja": "キヨスク", "brand:wikidata": "Q1334796", "brand:wikipedia": "ja:キヨスク", "name": "キヨスク", "name:en": "KIOSK", "name:ja": "キヨスク", "shop": "kiosk"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kitchen/Cuisinella": {"name": "Cuisinella", "icon": "temaki-kitchen_sink", "imageURL": "https://graph.facebook.com/CuisinellaFR/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3007012", "shop": "kitchen"}, "addTags": {"brand": "Cuisinella", "brand:wikidata": "Q3007012", "brand:wikipedia": "fr:Cuisinella", "name": "Cuisinella", "shop": "kitchen"}, "countryCodes": ["fr", "tn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kitchen/Dream Doors": {"name": "Dream Doors", "icon": "temaki-kitchen_sink", "imageURL": "https://pbs.twimg.com/profile_images/997394345400532992/C4mOWNSx_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q84702301", "shop": "kitchen"}, "addTags": {"brand": "Dream Doors", "brand:wikidata": "Q84702301", "name": "Dream Doors", "shop": "kitchen"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kitchen/Ixina": {"name": "Ixina", "icon": "temaki-kitchen_sink", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FIxina.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3156424", "shop": "kitchen"}, "addTags": {"brand": "Ixina", "brand:wikidata": "Q3156424", "brand:wikipedia": "fr:Ixina", "name": "Ixina", "shop": "kitchen"}, "countryCodes": ["ae", "au", "be", "bf", "bh", "bj", "ca", "ci", "cm", "cn", "cz", "dz", "ee", "eg", "fr", "gh", "hr", "ke", "kw", "lu", "ly", "ma", "mu", "nl", "pl", "qa", "ro", "ru", "sa", "se", "sn", "tg", "th", "tn", "vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kitchen/Magnet": {"name": "Magnet", "icon": "temaki-kitchen_sink", "imageURL": "https://graph.facebook.com/MagnetKitchens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6731427", "shop": "kitchen"}, "addTags": {"brand": "Magnet", "brand:wikidata": "Q6731427", "brand:wikipedia": "en:Magnet Kitchens", "name": "Magnet", "shop": "kitchen"}, "countryCodes": ["gb"], "terms": ["magnet kitchens"], "matchScore": 2, "suggestion": true}, - "shop/kitchen/Mobalpa": {"name": "Mobalpa", "icon": "temaki-kitchen_sink", "imageURL": "https://graph.facebook.com/Mobalpa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3317571", "shop": "kitchen"}, "addTags": {"brand": "Mobalpa", "brand:wikidata": "Q3317571", "brand:wikipedia": "fr:Mobalpa", "name": "Mobalpa", "shop": "kitchen"}, "countryCodes": ["be", "fr", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kitchen/Schmidt": {"name": "Schmidt", "icon": "temaki-kitchen_sink", "imageURL": "https://graph.facebook.com/Schmidt.HomeDesign/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3487620", "shop": "kitchen"}, "addTags": {"brand": "Schmidt", "brand:wikidata": "Q3487620", "brand:wikipedia": "de:Schmidt Groupe", "name": "Schmidt", "shop": "kitchen"}, "countryCodes": ["be", "es", "fr", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/kitchen/SoCoo'c": {"name": "SoCoo'c", "icon": "temaki-kitchen_sink", "imageURL": "https://graph.facebook.com/SoCooc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62783840", "shop": "kitchen"}, "addTags": {"brand": "SoCoo'c", "brand:wikidata": "Q62783840", "brand:wikipedia": "fr:SoCoo'c", "name": "SoCoo'c", "shop": "kitchen"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/lottery/Loterías y Apuestas del Estado": {"name": "Loterías y Apuestas del Estado", "icon": "fas-ticket-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogotipo%20de%20Loter%C3%ADas%20y%20Apuestas%20del%20Estado.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1311806", "shop": "lottery"}, "addTags": {"brand": "Loterías y Apuestas del Estado", "brand:wikidata": "Q1311806", "brand:wikipedia": "es:Loterías y Apuestas del Estado", "name": "Loterías y Apuestas del Estado", "shop": "lottery"}, "countryCodes": ["es"], "terms": ["apuestas del estado", "lotería del estado", "loterías del estado"], "matchScore": 2, "suggestion": true}, - "shop/lottery/ONCE": {"name": "ONCE", "icon": "fas-ticket-alt", "imageURL": "https://graph.facebook.com/ONCE.org/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1750397", "shop": "lottery"}, "addTags": {"brand": "ONCE", "brand:wikidata": "Q1750397", "brand:wikipedia": "es:Organización Nacional de Ciegos Españoles", "name": "ONCE", "official_name": "Organización Nacional de Ciegos Españoles", "shop": "lottery"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/lottery/宝くじ": {"name": "宝くじ", "icon": "fas-ticket-alt", "imageURL": "https://graph.facebook.com/takarakuji.qoochan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87824893", "shop": "lottery"}, "addTags": {"brand": "宝くじ", "brand:en": "Takarakuji", "brand:ja": "宝くじ", "brand:wikidata": "Q87824893", "brand:wikipedia": "ja:宝くじ", "name": "宝くじ", "name:en": "Takarakuji", "name:ja": "宝くじ", "official_name": "全国自治宝くじ", "official_name:en": "National Autonomous Lottery", "official_name:ja": "全国自治宝くじ", "shop": "lottery"}, "countryCodes": ["jp"], "terms": ["lotoロト", "lottery of japan", "takarakuji", "‎japan loto"], "matchScore": 2, "suggestion": true}, - "shop/massage/Hand & Stone Massage and Facial Spa": {"name": "Hand & Stone Massage and Facial Spa", "icon": "temaki-spa", "imageURL": "https://graph.facebook.com/handandstoneusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55613342", "shop": "massage"}, "addTags": {"brand": "Hand & Stone Massage and Facial Spa", "brand:wikidata": "Q55613342", "brand:wikipedia": "en:Hand & Stone Massage and Facial Spa", "name": "Hand & Stone Massage and Facial Spa", "shop": "massage"}, "countryCodes": ["us"], "terms": ["hand and stone massage"], "matchScore": 2, "suggestion": true}, - "shop/massage/Massage Envy": {"name": "Massage Envy", "icon": "temaki-spa", "imageURL": "https://graph.facebook.com/MassageEnvy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q22922899", "shop": "massage"}, "addTags": {"brand": "Massage Envy", "brand:wikidata": "Q22922899", "brand:wikipedia": "en:Massage Envy", "name": "Massage Envy", "shop": "massage"}, "countryCodes": ["us"], "terms": ["massage envy spa"], "matchScore": 2, "suggestion": true}, - "shop/massage/Massage Heights": {"name": "Massage Heights", "icon": "temaki-spa", "imageURL": "https://graph.facebook.com/MassageHeights/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64573956", "shop": "massage"}, "addTags": {"brand": "Massage Heights", "brand:wikidata": "Q64573956", "name": "Massage Heights", "shop": "massage"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/massage/カラダファクトリー": {"name": "カラダファクトリー", "icon": "temaki-spa", "imageURL": "https://graph.facebook.com/KARADAfactory/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87833239", "shop": "massage"}, "addTags": {"brand": "カラダファクトリー", "brand:en": "Karada Factory", "brand:ja": "カラダファクトリー", "brand:wikidata": "Q87833239", "name": "カラダファクトリー", "name:en": "Karada Factory", "name:ja": "カラダファクトリー", "shop": "massage"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/medical_supply/Pofam-Poznań": {"name": "Pofam-Poznań", "icon": "fas-crutch", "imageURL": "https://graph.facebook.com/381601628634155/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62057457", "shop": "medical_supply"}, "addTags": {"brand": "Pofam-Poznań", "brand:wikidata": "Q62057457", "name": "Pofam-Poznań", "shop": "medical_supply"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/medical_supply/Ортека": {"name": "Ортека", "icon": "fas-crutch", "imageURL": "https://graph.facebook.com/orteka.rus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62393660", "shop": "medical_supply"}, "addTags": {"brand": "Ортека", "brand:wikidata": "Q62393660", "name": "Ортека", "shop": "medical_supply"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/3 Store": {"name": "3 Store", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/ThreeUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q407009", "shop": "mobile_phone"}, "addTags": {"brand": "3 Store", "brand:wikidata": "Q407009", "brand:wikipedia": "en:3 (telecommunications)", "name": "3 Store", "shop": "mobile_phone"}, "countryCodes": ["gb", "it"], "terms": ["3", "three", "three store"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/A1": {"name": "A1", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/A1Fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q688755", "shop": "mobile_phone"}, "addTags": {"brand": "A1", "brand:wikidata": "Q688755", "brand:wikipedia": "en:A1 Telekom Austria Group", "name": "A1", "shop": "mobile_phone"}, "countryCodes": ["at", "bg", "by", "hr", "si"], "terms": ["velcom", "velcom|a1", "велком"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/AT&T": {"name": "AT&T", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/ATT/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q298594", "shop": "mobile_phone"}, "addTags": {"brand": "AT&T", "brand:wikidata": "Q298594", "brand:wikipedia": "en:AT&T Mobility", "name": "AT&T", "shop": "mobile_phone"}, "countryCodes": ["mx", "us"], "terms": ["att mobile", "att mobility", "att wireless"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Bell": {"name": "Bell", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/BellCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2894594", "shop": "mobile_phone"}, "addTags": {"brand": "Bell", "brand:wikidata": "Q2894594", "brand:wikipedia": "en:Bell Mobility", "name": "Bell", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": ["bell mobile", "bell mobility", "bell wireless"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Best Buy Mobile": {"name": "Best Buy Mobile", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/bestbuy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q533415", "shop": "mobile_phone"}, "addTags": {"brand": "Best Buy Mobile", "brand:wikidata": "Q533415", "brand:wikipedia": "en:Best Buy", "name": "Best Buy Mobile", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Bitė": {"name": "Bitė", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/bitelietuva/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q796010", "shop": "mobile_phone"}, "addTags": {"brand": "Bitė", "brand:wikidata": "Q796010", "brand:wikipedia": "lt:Bitės grupė", "name": "Bitė", "shop": "mobile_phone"}, "countryCodes": ["lt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Boost Mobile": {"name": "Boost Mobile", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/boostmobile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4943790", "shop": "mobile_phone"}, "addTags": {"brand": "Boost Mobile", "brand:wikidata": "Q4943790", "brand:wikipedia": "en:Boost Mobile", "name": "Boost Mobile", "shop": "mobile_phone"}, "countryCodes": ["us"], "terms": ["boost"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Bouygues Telecom": {"name": "Bouygues Telecom", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/bouyguestelecom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q581438", "shop": "mobile_phone"}, "addTags": {"brand": "Bouygues Telecom", "brand:wikidata": "Q581438", "brand:wikipedia": "fr:Bouygues Telecom", "name": "Bouygues Telecom", "shop": "mobile_phone"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Carphone Warehouse": {"name": "Carphone Warehouse", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/carphonewarehouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q118046", "shop": "mobile_phone"}, "addTags": {"brand": "Carphone Warehouse", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Carphone Warehouse", "shop": "mobile_phone"}, "countryCodes": ["by", "gb", "ie"], "terms": ["the carphone warehouse"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Chatr": {"name": "Chatr", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/chatrmobile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5087766", "shop": "mobile_phone"}, "addTags": {"brand": "Chatr", "brand:wikidata": "Q5087766", "brand:wikipedia": "en:Chatr", "name": "Chatr", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": ["chatr mobile"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Claro": {"name": "Claro", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/ClaroCol/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1770208", "shop": "mobile_phone"}, "addTags": {"brand": "Claro", "brand:wikidata": "Q1770208", "brand:wikipedia": "en:Claro (company)", "name": "Claro", "shop": "mobile_phone"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Cricket Wireless": {"name": "Cricket Wireless", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/cricketwireless/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5184987", "shop": "mobile_phone"}, "addTags": {"brand": "Cricket Wireless", "brand:wikidata": "Q5184987", "brand:wikipedia": "en:Cricket Wireless", "name": "Cricket Wireless", "shop": "mobile_phone"}, "countryCodes": ["us"], "terms": ["cricket"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Digicel": {"name": "Digicel", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/digicel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2117506", "shop": "mobile_phone"}, "addTags": {"brand": "Digicel", "brand:wikidata": "Q2117506", "brand:wikipedia": "en:Digicel", "name": "Digicel", "shop": "mobile_phone"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/EE": {"name": "EE", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/ee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5322942", "shop": "mobile_phone"}, "addTags": {"brand": "EE", "brand:wikidata": "Q5322942", "brand:wikipedia": "en:EE Limited", "name": "EE", "shop": "mobile_phone"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Entel": {"name": "Entel", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/entelsa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q450420", "shop": "mobile_phone"}, "addTags": {"brand": "Entel", "brand:wikidata": "Q450420", "brand:wikipedia": "en:Entel (Chile)", "name": "Entel", "shop": "mobile_phone"}, "countryCodes": ["cl", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Fido": {"name": "Fido", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/fidomobile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3071471", "shop": "mobile_phone"}, "addTags": {"brand": "Fido", "brand:wikidata": "Q3071471", "brand:wikipedia": "en:Fido Solutions", "name": "Fido", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Freedom Mobile": {"name": "Freedom Mobile", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/frdmmobile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8023931", "shop": "mobile_phone"}, "addTags": {"brand": "Freedom Mobile", "brand:wikidata": "Q8023931", "brand:wikipedia": "en:Freedom Mobile", "name": "Freedom Mobile", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": ["freedom", "wind mobile"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Koodo": {"name": "Koodo", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Koodo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6430529", "shop": "mobile_phone"}, "addTags": {"brand": "Koodo", "brand:wikidata": "Q6430529", "brand:wikipedia": "en:Koodo Mobile", "name": "Koodo", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/MEO": {"name": "MEO", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMeo%20logo%20pt.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3306167", "shop": "mobile_phone"}, "addTags": {"brand": "MEO", "brand:wikidata": "Q3306167", "brand:wikipedia": "en:MEO (telecommunications company)", "name": "MEO", "shop": "mobile_phone"}, "terms": ["loja meo"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/MTN": {"name": "MTN", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/948580455032516608/s0cPVatk_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1813361", "shop": "mobile_phone"}, "addTags": {"brand": "MTN", "brand:wikidata": "Q1813361", "brand:wikipedia": "en:MTN Group", "name": "MTN", "shop": "mobile_phone"}, "terms": ["agence mtn"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/MetroPCS": {"name": "MetroPCS", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/MetroByTMobile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1925685", "shop": "mobile_phone"}, "addTags": {"brand": "MetroPCS", "brand:wikidata": "Q1925685", "brand:wikipedia": "en:Metro by T-Mobile", "name": "MetroPCS", "shop": "mobile_phone"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Mobilcom Debitel": {"name": "Mobilcom Debitel", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/mobilcomdebitel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q344744", "shop": "mobile_phone"}, "addTags": {"brand": "Mobilcom Debitel", "brand:wikidata": "Q344744", "brand:wikipedia": "en:Debitel", "name": "Mobilcom Debitel", "shop": "mobile_phone"}, "countryCodes": ["de", "ir"], "terms": ["debitel"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Moov": {"name": "Moov", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/moovcotedivoire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3323637", "shop": "mobile_phone"}, "addTags": {"brand": "Moov", "brand:wikidata": "Q3323637", "brand:wikipedia": "fr:Moov Côte d'Ivoire", "name": "Moov", "shop": "mobile_phone"}, "countryCodes": ["ci", "tg"], "terms": ["agence moov"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Movistar": {"name": "Movistar", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/movistar.es/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q967735", "shop": "mobile_phone"}, "addTags": {"brand": "Movistar", "brand:wikidata": "Q967735", "brand:wikipedia": "en:Movistar", "name": "Movistar", "shop": "mobile_phone"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/NOS": {"name": "NOS", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLog%C3%B3tipo%20da%20NOS.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q136331", "shop": "mobile_phone"}, "addTags": {"brand": "NOS", "brand:wikidata": "Q136331", "brand:wikipedia": "en:NOS (Portuguese media company)", "name": "NOS", "shop": "mobile_phone"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/O2": {"name": "O2", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/o2uk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1759255", "shop": "mobile_phone"}, "addTags": {"brand": "O2", "brand:wikidata": "Q1759255", "brand:wikipedia": "en:Telefónica Europe", "name": "O2", "shop": "mobile_phone"}, "countryCodes": ["cz", "de", "gb", "ie", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Optie1": {"name": "Optie1", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Optie1/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62393564", "shop": "mobile_phone"}, "addTags": {"brand": "Optie1", "brand:wikidata": "Q62393564", "name": "Optie1", "shop": "mobile_phone"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Optus": {"name": "Optus", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/optus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q865038", "shop": "mobile_phone"}, "addTags": {"brand": "Optus", "brand:wikidata": "Q865038", "name": "Optus", "shop": "mobile_phone"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Orange": {"name": "Orange", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/orange/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1431486", "shop": "mobile_phone"}, "addTags": {"brand": "Orange", "brand:wikidata": "Q1431486", "brand:wikipedia": "fr:Orange (entreprise)", "name": "Orange", "shop": "mobile_phone"}, "terms": ["agence orange"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Personal": {"name": "Personal", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/personalargentina/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10933021", "shop": "mobile_phone"}, "addTags": {"brand": "Personal", "brand:wikidata": "Q10933021", "brand:wikipedia": "es:Personal (Argentina)", "name": "Personal", "shop": "mobile_phone"}, "countryCodes": ["ar", "py"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Phone House": {"name": "Phone House", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/carphonewarehouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q118046", "shop": "mobile_phone"}, "addTags": {"brand": "Phone House", "brand:wikidata": "Q118046", "brand:wikipedia": "en:Carphone Warehouse", "name": "Phone House", "shop": "mobile_phone"}, "countryCodes": ["de", "es", "fr", "nl", "pt"], "terms": ["the phone house"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Play": {"name": "Play", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Play/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7202998", "shop": "mobile_phone"}, "addTags": {"brand": "Play", "brand:wikidata": "Q7202998", "brand:wikipedia": "pl:Play (sieć telefonii komórkowej)", "name": "Play", "shop": "mobile_phone"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Plus": {"name": "Plus", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/plus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7205598", "shop": "mobile_phone"}, "addTags": {"brand": "Plus", "brand:wikidata": "Q7205598", "brand:wikipedia": "pl:Plus (sieć telefonii komórkowej)", "name": "Plus", "shop": "mobile_phone"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Rogers": {"name": "Rogers", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Rogers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3439663", "shop": "mobile_phone"}, "addTags": {"brand": "Rogers", "brand:wikidata": "Q3439663", "brand:wikipedia": "en:Rogers Wireless", "name": "Rogers", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/SFR": {"name": "SFR", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/SFR/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q218765", "shop": "mobile_phone"}, "addTags": {"brand": "SFR", "brand:wikidata": "Q218765", "brand:wikipedia": "en:SFR", "name": "SFR", "shop": "mobile_phone"}, "countryCodes": ["fr", "lu"], "terms": ["espace sfr"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Sprint": {"name": "Sprint", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/sprint/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q301965", "shop": "mobile_phone"}, "addTags": {"brand": "Sprint", "brand:wikidata": "Q301965", "brand:wikipedia": "en:Sprint Corporation", "name": "Sprint", "shop": "mobile_phone"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/T-Mobile": {"name": "T-Mobile", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/TMobile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q327634", "shop": "mobile_phone"}, "addTags": {"brand": "T-Mobile", "brand:wikidata": "Q327634", "brand:wikipedia": "en:T-Mobile", "name": "T-Mobile", "shop": "mobile_phone"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/TIM": {"name": "TIM", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/TimOfficialPage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q144617", "shop": "mobile_phone"}, "addTags": {"brand": "TIM", "brand:wikidata": "Q144617", "brand:wikipedia": "en:Telecom Italia", "name": "TIM", "shop": "mobile_phone"}, "countryCodes": ["br", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Tbooth Wireless": {"name": "Tbooth Wireless", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/TboothWireless/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7690597", "shop": "mobile_phone"}, "addTags": {"brand": "Tbooth Wireless", "brand:wikidata": "Q7690597", "name": "Tbooth Wireless", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telcel": {"name": "Telcel", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Telcel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3517255", "shop": "mobile_phone"}, "addTags": {"brand": "Telcel", "brand:wikidata": "Q3517255", "brand:wikipedia": "en:Telcel", "name": "Telcel", "shop": "mobile_phone"}, "countryCodes": ["cu", "mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Tele2": {"name": "Tele2", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/WeAreTele2/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q309865", "shop": "mobile_phone"}, "addTags": {"brand": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Tele2", "shop": "mobile_phone"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telekom": {"name": "Telekom", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/deutschetelekom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9396", "shop": "mobile_phone"}, "addTags": {"brand": "Telekom", "brand:wikidata": "Q9396", "brand:wikipedia": "en:Deutsche Telekom", "name": "Telekom", "shop": "mobile_phone"}, "countryCodes": ["de", "hu", "ro", "si", "sk"], "terms": ["telekom shop"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telenor": {"name": "Telenor", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/telenorgroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q845632", "shop": "mobile_phone"}, "addTags": {"brand": "Telenor", "brand:wikidata": "Q845632", "brand:wikipedia": "en:Telenor", "name": "Telenor", "shop": "mobile_phone"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telia": {"name": "Telia", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/717629616702107648/gcwgZUU6_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q862303", "shop": "mobile_phone"}, "addTags": {"brand": "Telia", "brand:wikidata": "Q862303", "brand:wikipedia": "en:Telia Company", "name": "Telia", "shop": "mobile_phone"}, "countryCodes": ["dk", "fi", "lt", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telstra": {"name": "Telstra", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Telstra/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q721162", "shop": "mobile_phone"}, "addTags": {"brand": "Telstra", "brand:wikidata": "Q721162", "brand:wikipedia": "en:Telstra", "name": "Telstra", "shop": "mobile_phone"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Telus": {"name": "Telus", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/telus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q165858", "shop": "mobile_phone"}, "addTags": {"brand": "Telus", "brand:wikidata": "Q165858", "brand:wikipedia": "en:Telus", "name": "Telus", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Turkcell": {"name": "Turkcell", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Turkcell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q283852", "shop": "mobile_phone"}, "addTags": {"brand": "Turkcell", "brand:wikidata": "Q283852", "brand:wikipedia": "en:Turkcell", "name": "Turkcell", "shop": "mobile_phone"}, "countryCodes": ["cy", "tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/U.S. Cellular": {"name": "U.S. Cellular", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/USCellular/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2466256", "shop": "mobile_phone"}, "addTags": {"brand": "U.S. Cellular", "brand:wikidata": "Q2466256", "brand:wikipedia": "en:U.S. Cellular", "name": "U.S. Cellular", "shop": "mobile_phone"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/UQモバイル": {"name": "UQモバイル", "icon": "fas-mobile-alt", "imageURL": "https://pbs.twimg.com/profile_images/875506930256494592/gHnlkGTo_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11252091", "shop": "mobile_phone"}, "addTags": {"brand": "UQモバイル", "brand:en": "UQ mobile", "brand:ja": "UQモバイル", "brand:wikidata": "Q11252091", "brand:wikipedia": "ja:UQコミュニケーションズ", "name": "UQモバイル", "name:en": "UQ mobile", "name:ja": "UQモバイル", "shop": "mobile_phone"}, "countryCodes": ["jp"], "terms": ["ユーキューモバイル"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Verizon Wireless": {"name": "Verizon Wireless", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/verizon/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q919641", "shop": "mobile_phone"}, "addTags": {"brand": "Verizon Wireless", "brand:wikidata": "Q919641", "brand:wikipedia": "en:Verizon Wireless", "name": "Verizon Wireless", "shop": "mobile_phone"}, "countryCodes": ["us"], "terms": ["verizon"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Vidéotron": {"name": "Vidéotron", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/videotron/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2396830", "shop": "mobile_phone"}, "addTags": {"brand": "Vidéotron", "brand:wikidata": "Q2396830", "brand:wikipedia": "en:Vidéotron", "name": "Vidéotron", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Virgin Mobile (Canada)": {"name": "Virgin Mobile (Canada)", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/virginmobilecan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3560641", "shop": "mobile_phone"}, "addTags": {"brand": "Virgin Mobile", "brand:wikidata": "Q3560641", "brand:wikipedia": "en:Virgin Mobile Canada", "name": "Virgin Mobile", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Vivo": {"name": "Vivo", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/vivoGlobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18301787", "shop": "mobile_phone"}, "addTags": {"brand": "Vivo", "brand:wikidata": "Q18301787", "brand:wikipedia": "en:Vivo (technology company)", "name": "Vivo", "shop": "mobile_phone"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Vodafone": {"name": "Vodafone", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/vodafoneUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q122141", "shop": "mobile_phone"}, "addTags": {"brand": "Vodafone", "brand:wikidata": "Q122141", "brand:wikipedia": "en:Vodafone", "name": "Vodafone", "shop": "mobile_phone"}, "terms": ["vodafone shop"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/WIFI_ETECSA": {"name": "WIFI_ETECSA", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/etecsa.cu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q490323", "shop": "mobile_phone"}, "addTags": {"brand": "WIFI_ETECSA", "brand:wikidata": "Q490323", "brand:wikipedia": "es:Empresa de Telecomunicaciones de Cuba", "name": "WIFI_ETECSA", "shop": "mobile_phone"}, "countryCodes": ["cu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/WOW! Mobile Boutique": {"name": "WOW! Mobile Boutique", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/wowmobile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64847598", "shop": "mobile_phone"}, "addTags": {"brand": "WOW! Mobile Boutique", "brand:wikidata": "Q64847598", "name": "WOW! Mobile Boutique", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Wind": {"name": "Wind", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWind%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q650467", "shop": "mobile_phone"}, "addTags": {"brand": "Wind", "brand:wikidata": "Q650467", "brand:wikipedia": "en:WIND (Italy)", "name": "Wind", "shop": "mobile_phone"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/WirelessWave": {"name": "WirelessWave", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/wirelesswave/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8026815", "shop": "mobile_phone"}, "addTags": {"brand": "WirelessWave", "brand:wikidata": "Q8026815", "name": "WirelessWave", "shop": "mobile_phone"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Yoigo": {"name": "Yoigo", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Yoigo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2630989", "shop": "mobile_phone"}, "addTags": {"brand": "Yoigo", "brand:wikidata": "Q2630989", "brand:wikipedia": "en:Yoigo", "name": "Yoigo", "shop": "mobile_phone"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/auショップ": {"name": "auショップ", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/aubyKDDI/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q307110", "shop": "mobile_phone"}, "addTags": {"brand": "au", "brand:ja": "au", "brand:wikidata": "Q307110", "brand:wikipedia": "ja:Au (携帯電話)", "name": "auショップ", "name:en": "au", "name:ja": "auショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "terms": ["au", "エーユー"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/lifecell": {"name": "lifecell", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/lifeua/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1936895", "shop": "mobile_phone"}, "addTags": {"brand": "lifecell", "brand:wikidata": "Q1936895", "brand:wikipedia": "uk:Lifecell", "name": "lifecell", "shop": "mobile_phone"}, "terms": ["магазин lifecell"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Алло": {"name": "Алло", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/allo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18683057", "shop": "mobile_phone"}, "addTags": {"brand": "Алло", "brand:wikidata": "Q18683057", "brand:wikipedia": "uk:Алло (торгова мережа)", "name": "Алло", "shop": "mobile_phone"}, "countryCodes": ["md", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Билайн": {"name": "Билайн", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/Beelinerus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q402880", "shop": "mobile_phone"}, "addTags": {"brand": "Билайн", "brand:en": "Beeline", "brand:wikidata": "Q402880", "brand:wikipedia": "en:Beeline (brand)", "name": "Билайн", "name:en": "Beeline", "shop": "mobile_phone"}, "countryCodes": ["kg", "kz", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Евросеть": {"name": "Евросеть", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/euroset/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65310", "shop": "mobile_phone"}, "addTags": {"brand": "Евросеть", "brand:en": "Euroset", "brand:wikidata": "Q65310", "brand:wikipedia": "en:Euroset", "name": "Евросеть", "name:en": "Euroset", "shop": "mobile_phone"}, "countryCodes": ["by", "kz", "ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Київстар": {"name": "Київстар", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/kyivstar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2288463", "shop": "mobile_phone"}, "addTags": {"brand": "Київстар", "brand:en": "Kyivstar", "brand:wikidata": "Q2288463", "brand:wikipedia": "en:Kyivstar", "name": "Київстар", "name:en": "Kyivstar", "shop": "mobile_phone"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/МТС": {"name": "МТС", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/mts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1368919", "shop": "mobile_phone"}, "addTags": {"brand": "МТС", "brand:en": "MTS", "brand:wikidata": "Q1368919", "brand:wikipedia": "en:MTS (network provider)", "name": "МТС", "name:en": "MTS", "shop": "mobile_phone"}, "countryCodes": ["by", "ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Мегафон": {"name": "Мегафон", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/MegaFon.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1720713", "shop": "mobile_phone"}, "addTags": {"brand": "Мегафон", "brand:en": "MegaFon", "brand:wikidata": "Q1720713", "brand:wikipedia": "en:MegaFon", "name": "Мегафон", "name:en": "MegaFon", "shop": "mobile_phone"}, "countryCodes": ["ru", "tj"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Связной": {"name": "Связной", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/svyaznoy.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65371", "shop": "mobile_phone"}, "addTags": {"brand": "Связной", "brand:en": "Svyaznoy", "brand:wikidata": "Q65371", "brand:wikipedia": "en:Svyaznoy", "name": "Связной", "name:en": "Svyaznoy", "shop": "mobile_phone"}, "countryCodes": ["by", "ru", "uz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/Теле2": {"name": "Теле2", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/WeAreTele2/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q309865", "shop": "mobile_phone"}, "addTags": {"brand": "Теле2", "brand:en": "Tele2", "brand:wikidata": "Q309865", "brand:wikipedia": "en:Tele2", "name": "Теле2", "name:en": "Tele2", "shop": "mobile_phone"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/ソフトバンク": {"name": "ソフトバンク", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/SoftBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7553832", "shop": "mobile_phone"}, "addTags": {"brand": "ソフトバンク", "brand:en": "SoftBank Telecom", "brand:ja": "ソフトバンク", "brand:wikidata": "Q7553832", "brand:wikipedia": "en:SoftBank Telecom", "name": "ソフトバンク", "name:en": "SoftBank Telecom", "name:ja": "ソフトバンク", "shop": "mobile_phone"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/ソフトバンクショップ": {"name": "ソフトバンクショップ", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/SoftBank/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11315281", "shop": "mobile_phone"}, "addTags": {"brand": "ソフトバンクショップ", "brand:en": "SoftBankShop", "brand:ja": "ソフトバンクショップ", "brand:wikidata": "Q11315281", "brand:wikipedia": "ja:ソフトバンクショップ", "name": "ソフトバンクショップ", "name:en": "SoftBankShop", "name:ja": "ソフトバンクショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/テルル": {"name": "テルル", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/teluruJP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q91111384", "shop": "mobile_phone"}, "addTags": {"brand": "テルル", "brand:en": "Teluru", "brand:ja": "テルル", "brand:wikidata": "Q91111384", "name": "テルル", "name:en": "Teluru", "name:ja": "テルル", "shop": "mobile_phone"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/ドコモショップ": {"name": "ドコモショップ", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/docomo.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q853958", "shop": "mobile_phone"}, "addTags": {"brand": "ドコモショップ", "brand:en": "DoCoMo Shop", "brand:ja": "ドコモショップ", "brand:wikidata": "Q853958", "brand:wikipedia": "ja:NTTドコモ", "name": "ドコモショップ", "name:en": "DoCoMo Shop", "name:ja": "ドコモショップ", "shop": "mobile_phone"}, "countryCodes": ["jp"], "terms": ["nttドコモ", "docomo"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/ワイモバイル": {"name": "ワイモバイル", "icon": "fas-mobile-alt", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FYmobile%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5322556", "shop": "mobile_phone"}, "addTags": {"brand": "ワイモバイル", "brand:en": "Y!mobile", "brand:ja": "ワイモバイル", "brand:wikidata": "Q5322556", "brand:wikipedia": "ja:ワイモバイル", "name": "ワイモバイル", "name:en": "Y!mobile", "name:ja": "ワイモバイル", "shop": "mobile_phone"}, "countryCodes": ["jp"], "terms": ["yahooモバイル", "ymobile"], "matchScore": 2, "suggestion": true}, - "shop/mobile_phone/台灣大哥大": {"name": "台灣大哥大", "icon": "fas-mobile-alt", "imageURL": "https://graph.facebook.com/taiwanmobile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5943259", "shop": "mobile_phone"}, "addTags": {"brand": "台灣大哥大", "brand:en": "Taiwan Mobile", "brand:wikidata": "Q5943259", "brand:wikipedia": "zh:台灣大哥大", "brand:zh": "台灣大哥大", "name": "台灣大哥大", "name:en": "Taiwan Mobile", "name:zh": "台灣大哥大", "shop": "mobile_phone"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/money_lender/ACE Cash Express": {"name": "ACE Cash Express", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/acecashexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24260962", "shop": "money_lender"}, "addTags": {"brand": "ACE Cash Express", "brand:wikidata": "Q24260962", "brand:wikipedia": "en:ACE Cash Express", "name": "ACE Cash Express", "shop": "money_lender"}, "countryCodes": ["us"], "terms": ["ace"], "matchScore": 2, "suggestion": true}, - "shop/money_lender/Advance America": {"name": "Advance America", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/AdvanceAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4686044", "shop": "money_lender"}, "addTags": {"brand": "Advance America", "brand:wikidata": "Q4686044", "name": "Advance America", "shop": "money_lender"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/money_lender/California Check Cashing Stores": {"name": "California Check Cashing Stores", "icon": "temaki-money_hand", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64390932", "shop": "money_lender"}, "addTags": {"brand": "California Check Cashing Stores", "brand:wikidata": "Q64390932", "name": "California Check Cashing Stores", "shop": "money_lender"}, "countryCodes": ["us"], "terms": ["california check cashing"], "matchScore": 2, "suggestion": true}, - "shop/money_lender/Cash Store": {"name": "Cash Store", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/cashstore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61943411", "shop": "money_lender"}, "addTags": {"brand": "Cash Store", "brand:wikidata": "Q61943411", "name": "Cash Store", "shop": "money_lender"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/money_lender/CashMax": {"name": "CashMax", "icon": "temaki-money_hand", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q69365478", "shop": "money_lender"}, "addTags": {"brand": "CashMax", "brand:wikidata": "Q69365478", "name": "CashMax", "shop": "money_lender"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/money_lender/Check Into Cash": {"name": "Check Into Cash", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/checkintocash/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16961246", "shop": "money_lender"}, "addTags": {"brand": "Check Into Cash", "brand:wikidata": "Q16961246", "brand:wikipedia": "en:Check Into Cash", "name": "Check Into Cash", "shop": "money_lender"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/money_lender/CheckSmart": {"name": "CheckSmart", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/166958136649293/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65640213", "shop": "money_lender"}, "addTags": {"alt_name": "Check$mart", "brand": "CheckSmart", "brand:wikidata": "Q65640213", "name": "CheckSmart", "shop": "money_lender"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/money_lender/First Virginia": {"name": "First Virginia", "icon": "temaki-money_hand", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFirst%20Virginia%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65640051", "shop": "money_lender"}, "addTags": {"brand": "First Virginia", "brand:wikidata": "Q65640051", "name": "First Virginia", "shop": "money_lender"}, "countryCodes": ["us"], "terms": ["1st virginia"], "matchScore": 2, "suggestion": true}, - "shop/money_lender/Money Mart": {"name": "Money Mart", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/moneymartusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6899166", "shop": "money_lender"}, "addTags": {"brand": "Money Mart", "brand:wikidata": "Q6899166", "brand:wikipedia": "en:Money Mart", "name": "Money Mart", "shop": "money_lender"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/money_lender/Moneytree": {"name": "Moneytree", "icon": "temaki-money_hand", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6899361", "shop": "money_lender"}, "addTags": {"brand": "Moneytree", "brand:wikidata": "Q6899361", "brand:wikipedia": "en:Moneytree", "name": "Moneytree", "shop": "money_lender"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/money_lender/プロミス": {"name": "プロミス", "icon": "temaki-money_hand", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAPA00001%20bnr%20smbcBnr.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11243682", "shop": "money_lender"}, "addTags": {"brand": "プロミス", "brand:en": "Promise", "brand:ja": "プロミス", "brand:wikidata": "Q11243682", "brand:wikipedia": "ja:SMBCコンシューマーファイナンス", "name": "プロミス", "name:en": "Promise", "name:ja": "プロミス", "official_name": "SMBCコンシューマーファイナンス", "official_name:en": "SMBC Consumer Finance", "shop": "money_lender"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/motorcycle/Harley-Davidson": {"name": "Harley-Davidson", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/harley-davidson/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q192814", "shop": "motorcycle"}, "addTags": {"brand": "Harley-Davidson", "brand:wikidata": "Q192814", "brand:wikipedia": "en:Harley-Davidson", "name": "Harley-Davidson", "shop": "motorcycle"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/motorcycle/Honda": {"name": "Honda", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/HondaJP/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9584", "shop": "motorcycle"}, "addTags": {"brand": "Honda", "brand:wikidata": "Q9584", "brand:wikipedia": "en:Honda", "name": "Honda", "shop": "motorcycle"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/motorcycle/Kawasaki": {"name": "Kawasaki", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/kawasaki/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6379855", "shop": "motorcycle"}, "addTags": {"brand": "Kawasaki", "brand:wikidata": "Q6379855", "brand:wikipedia": "en:Kawasaki motorcycles", "name": "Kawasaki", "shop": "motorcycle"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/motorcycle/Motortrade": {"name": "Motortrade", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/MotortradePh/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48803162", "shop": "motorcycle"}, "addTags": {"brand": "Motortrade", "brand:wikidata": "Q48803162", "brand:wikipedia": "en:Motortrade", "name": "Motortrade", "shop": "motorcycle"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/motorcycle/Suzuki": {"name": "Suzuki", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/SuzukiGlobalOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q181642", "shop": "motorcycle"}, "addTags": {"brand": "Suzuki", "brand:wikidata": "Q181642", "brand:wikipedia": "en:Suzuki", "name": "Suzuki", "shop": "motorcycle"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/motorcycle/Yamaha": {"name": "Yamaha", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/yamahamotorusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q158888", "shop": "motorcycle"}, "addTags": {"brand": "Yamaha", "brand:wikidata": "Q158888", "brand:wikipedia": "en:Yamaha Motor Company", "name": "Yamaha", "shop": "motorcycle"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/motorcycle/レッドバロン": {"name": "レッドバロン", "icon": "fas-motorcycle", "imageURL": "https://graph.facebook.com/redbaron.co.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11349759", "shop": "motorcycle"}, "addTags": {"brand": "レッドバロン", "brand:en": "Red Baron", "brand:ja": "レッドバロン", "brand:wikidata": "Q11349759", "brand:wikipedia": "ja:レッドバロン (企業)", "name": "レッドバロン", "name:en": "Red Baron", "name:ja": "レッドバロン", "shop": "motorcycle"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/music/FYE": {"name": "FYE", "icon": "fas-compact-disc", "imageURL": "https://graph.facebook.com/FYE/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5424141", "shop": "music"}, "addTags": {"brand": "FYE", "brand:wikidata": "Q5424141", "brand:wikipedia": "en:FYE (retailer)", "name": "FYE", "shop": "music"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/music/HMV": {"name": "HMV", "icon": "fas-compact-disc", "imageURL": "https://graph.facebook.com/hmv/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10854572", "shop": "music"}, "addTags": {"brand": "HMV", "brand:wikidata": "Q10854572", "brand:wikipedia": "en:HMV", "name": "HMV", "shop": "music"}, "countryCodes": ["ca", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/music/Sunrise Records": {"name": "Sunrise Records", "icon": "fas-compact-disc", "imageURL": "https://graph.facebook.com/sunriserecords/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30600373", "shop": "music"}, "addTags": {"brand": "Sunrise Records", "brand:wikidata": "Q30600373", "brand:wikipedia": "en:Sunrise Records (retailer)", "name": "Sunrise Records", "shop": "music"}, "countryCodes": ["ca", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/music/TSUTAYA": {"name": "TSUTAYA", "icon": "fas-compact-disc", "imageURL": "https://graph.facebook.com/TSUTAYA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5193457", "shop": "music"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "music"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/music/タワーレコード": {"name": "タワーレコード", "icon": "fas-compact-disc", "imageURL": "https://graph.facebook.com/towerrecordsinc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3265728", "shop": "music"}, "addTags": {"alt_name": "タワレコ", "brand": "タワーレコード", "brand:en": "Tower Records", "brand:ja": "タワーレコード", "brand:wikidata": "Q3265728", "brand:wikipedia": "ja:タワーレコード", "name": "タワーレコード", "name:en": "Tower Records", "name:ja": "タワーレコード", "shop": "music"}, "countryCodes": ["jp"], "terms": ["タワレコ"], "matchScore": 2, "suggestion": true}, - "shop/musical_instrument/Guitar Center": {"name": "Guitar Center", "icon": "fas-guitar", "imageURL": "https://graph.facebook.com/GuitarCenter/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3622794", "shop": "musical_instrument"}, "addTags": {"brand": "Guitar Center", "brand:wikidata": "Q3622794", "brand:wikipedia": "en:Guitar Center", "name": "Guitar Center", "shop": "musical_instrument"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/musical_instrument/Long & McQuade": {"name": "Long & McQuade", "icon": "fas-guitar", "imageURL": "https://graph.facebook.com/LongMcQuade/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6672180", "shop": "musical_instrument"}, "addTags": {"brand": "Long & McQuade", "brand:wikidata": "Q6672180", "brand:wikipedia": "en:Long & McQuade", "name": "Long & McQuade", "shop": "musical_instrument"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/musical_instrument/山野楽器": {"name": "山野楽器", "icon": "fas-guitar", "imageURL": "https://pbs.twimg.com/profile_images/1014029103475843073/kW2H2uZU_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11471074", "shop": "musical_instrument"}, "addTags": {"brand": "山野楽器", "brand:en": "Yamano Music", "brand:ja": "山野楽器", "brand:wikidata": "Q11471074", "brand:wikipedia": "ja:山野楽器", "name": "山野楽器", "name:en": "Yamano Music", "name:ja": "山野楽器", "shop": "musical_instrument"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Cigo": {"name": "Cigo", "icon": "fas-newspaper", "imageURL": "https://graph.facebook.com/cigo.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391977", "shop": "newsagent"}, "addTags": {"brand": "Cigo", "brand:wikidata": "Q62391977", "name": "Cigo", "shop": "newsagent"}, "countryCodes": ["de", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Hudson": {"name": "Hudson", "icon": "fas-newspaper", "imageURL": "https://graph.facebook.com/673632989434235/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5928682", "shop": "newsagent"}, "addTags": {"brand": "Hudson", "brand:wikidata": "Q5928682", "brand:wikipedia": "en:Hudson Group", "name": "Hudson", "shop": "newsagent"}, "terms": ["hudson news"], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Kolporter": {"name": "Kolporter", "icon": "fas-newspaper", "imageURL": "https://graph.facebook.com/kolporterpl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6427874", "shop": "newsagent"}, "addTags": {"brand": "Kolporter", "brand:wikidata": "Q6427874", "brand:wikipedia": "pl:Kolporter (przedsiębiorstwo)", "name": "Kolporter", "shop": "newsagent"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Maison de la Presse": {"name": "Maison de la Presse", "icon": "fas-newspaper", "imageURL": "https://graph.facebook.com/260230084083052/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62085960", "shop": "newsagent"}, "addTags": {"brand": "Maison de la Presse", "brand:wikidata": "Q62085960", "name": "Maison de la Presse", "shop": "newsagent"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Martin's": {"name": "Martin's", "icon": "fas-newspaper", "imageURL": "https://graph.facebook.com/YourMcColls/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16997477", "shop": "newsagent"}, "addTags": {"brand": "Martin's", "brand:wikidata": "Q16997477", "brand:wikipedia": "en:McColl's", "name": "Martin's", "shop": "newsagent"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Primera": {"name": "Primera", "icon": "fas-newspaper", "imageURL": "https://graph.facebook.com/Primera.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2176149", "shop": "newsagent"}, "addTags": {"brand": "Primera", "brand:wikidata": "Q2176149", "brand:wikipedia": "nl:Primera (winkelketen)", "name": "Primera", "shop": "newsagent"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Relay": {"name": "Relay", "icon": "fas-newspaper", "imageURL": "https://pbs.twimg.com/profile_images/1227151290788188172/IemxtgUM_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3424298", "shop": "newsagent"}, "addTags": {"brand": "Relay", "brand:wikidata": "Q3424298", "brand:wikipedia": "en:Relay (shop)", "name": "Relay", "shop": "newsagent"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/WHSmith": {"name": "WHSmith", "icon": "fas-newspaper", "imageURL": "https://graph.facebook.com/WHSmithuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1548712", "shop": "newsagent"}, "addTags": {"brand": "WHSmith", "brand:wikidata": "Q1548712", "brand:wikipedia": "en:WHSmith", "name": "WHSmith", "shop": "newsagent"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/k kiosk": {"name": "k kiosk", "icon": "fas-newspaper", "imageURL": "https://graph.facebook.com/kkiosk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60381703", "shop": "newsagent"}, "addTags": {"brand": "k kiosk", "brand:wikidata": "Q60381703", "brand:wikipedia": "it:K Kiosk", "name": "k kiosk", "shop": "newsagent"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Белсоюзпечать": {"name": "Белсоюзпечать", "icon": "fas-newspaper", "imageURL": "https://pbs.twimg.com/profile_images/1072050933054484480/bEd3Ce1j_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q67723214", "shop": "newsagent"}, "addTags": {"brand": "Белсоюзпечать", "brand:wikidata": "Q67723214", "name": "Белсоюзпечать", "shop": "newsagent"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Витебскоблсоюзпечать": {"name": "Витебскоблсоюзпечать", "icon": "fas-newspaper", "imageURL": "https://pbs.twimg.com/profile_images/1072050933054484480/bEd3Ce1j_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q67723214", "shop": "newsagent"}, "addTags": {"brand": "Витебскоблсоюзпечать", "brand:wikidata": "Q67723214", "name": "Витебскоблсоюзпечать", "shop": "newsagent"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Первая полоса": {"name": "Первая полоса", "icon": "fas-newspaper", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62736412", "shop": "newsagent"}, "addTags": {"brand": "Первая полоса", "brand:wikidata": "Q62736412", "name": "Первая полоса", "shop": "newsagent"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/Союзпечать": {"name": "Союзпечать", "icon": "fas-newspaper", "imageURL": "https://pbs.twimg.com/profile_images/1072050933054484480/bEd3Ce1j_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4430611", "shop": "newsagent"}, "addTags": {"brand": "Союзпечать", "brand:wikidata": "Q4430611", "brand:wikipedia": "ru:Союзпечать", "name": "Союзпечать", "shop": "newsagent"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/朝日新聞": {"name": "朝日新聞", "icon": "fas-newspaper", "imageURL": "https://graph.facebook.com/asahicom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q720503", "shop": "newsagent"}, "addTags": {"brand": "朝日新聞", "brand:en": "Asahi Shimbun", "brand:wikidata": "Q720503", "brand:wikipedia": "ja:朝日新聞", "name": "朝日新聞", "name:en": "Asahi Shimbun", "shop": "newsagent"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/newsagent/読売新聞": {"name": "読売新聞", "icon": "fas-newspaper", "imageURL": "https://pbs.twimg.com/profile_images/1091035339232227328/elp0X_L6_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q645218", "shop": "newsagent"}, "addTags": {"brand": "読売新聞", "brand:en": "Yomiuri Shimbun", "brand:wikidata": "Q645218", "brand:wikipedia": "en:Yomiuri Shimbun", "name": "読売新聞", "name:en": "Yomiuri Shimbun", "shop": "newsagent"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/nutrition_supplements/GNC": {"name": "GNC", "icon": "fas-pills", "imageURL": "https://graph.facebook.com/GNCLiveWell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4808595", "shop": "nutrition_supplements"}, "addTags": {"brand": "GNC", "brand:wikidata": "Q4808595", "brand:wikipedia": "en:GNC (store)", "name": "GNC", "shop": "nutrition_supplements"}, "terms": ["gnc live well"], "matchScore": 2, "suggestion": true}, - "shop/nutrition_supplements/Popeye's Supplements": {"name": "Popeye's Supplements", "icon": "fas-pills", "imageURL": "https://graph.facebook.com/popeyessupplements/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q71096495", "shop": "nutrition_supplements"}, "addTags": {"brand": "Popeye's Supplements", "brand:wikidata": "Q71096495", "name": "Popeye's Supplements", "shop": "nutrition_supplements"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/nutrition_supplements/The Vitamin Shoppe": {"name": "The Vitamin Shoppe", "icon": "fas-pills", "imageURL": "https://graph.facebook.com/THEVITAMINSHOPPE/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7772938", "shop": "nutrition_supplements"}, "addTags": {"brand": "The Vitamin Shoppe", "brand:wikidata": "Q7772938", "brand:wikipedia": "en:The Vitamin Shoppe", "name": "The Vitamin Shoppe", "shop": "nutrition_supplements"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/nutrition_supplements/Vitamin World": {"name": "Vitamin World", "icon": "fas-pills", "imageURL": "https://graph.facebook.com/OfficialVitaminWorld/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7936979", "shop": "nutrition_supplements"}, "addTags": {"brand": "Vitamin World", "brand:wikidata": "Q7936979", "brand:wikipedia": "en:Vitamin World", "name": "Vitamin World", "shop": "nutrition_supplements"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Alain Afflelou": {"name": "Alain Afflelou", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/AlainAfflelouOptico/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2829511", "shop": "optician"}, "addTags": {"brand": "Alain Afflelou", "brand:wikidata": "Q2829511", "brand:wikipedia": "fr:Alain Afflelou (entreprise)", "name": "Alain Afflelou", "shop": "optician"}, "countryCodes": ["be", "ch", "es", "fr", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/America's Best Contacts & Eyeglasses": {"name": "America's Best Contacts & Eyeglasses", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/AmericasBestContactsandEyeglasses/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4742504", "shop": "optician"}, "addTags": {"brand": "America's Best Contacts & Eyeglasses", "brand:wikidata": "Q4742504", "brand:wikipedia": "en:America's Best Contacts & Eyeglasses", "name": "America's Best Contacts & Eyeglasses", "shop": "optician", "short_name": "America's Best"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Apollo-Optik": {"name": "Apollo-Optik", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/ApolloOptik/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q618940", "shop": "optician"}, "addTags": {"brand": "Apollo-Optik", "brand:wikidata": "Q618940", "brand:wikipedia": "de:Apollo-Optik", "name": "Apollo-Optik", "shop": "optician", "short_name": "Apollo"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Atol": {"name": "Atol", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/opticiensatol/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2869542", "shop": "optician"}, "addTags": {"brand": "Atol", "brand:wikidata": "Q2869542", "brand:wikipedia": "fr:Atol (opticien)", "name": "Atol", "shop": "optician"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Boots Opticians": {"name": "Boots Opticians", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/BootsUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4944037", "shop": "optician"}, "addTags": {"brand": "Boots Opticians", "brand:wikidata": "Q4944037", "brand:wikipedia": "en:Boots Opticians", "name": "Boots Opticians", "shop": "optician", "short_name": "Boots"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Clarkson Eyecare": {"name": "Clarkson Eyecare", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64027001", "shop": "optician"}, "addTags": {"brand": "Clarkson Eyecare", "brand:wikidata": "Q64027001", "healthcare": "optometrist", "name": "Clarkson Eyecare", "shop": "optician", "short_name": "Clarkson"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Cohen's Fashion Optical": {"name": "Cohen's Fashion Optical", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/cohensoptical/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5141313", "shop": "optician"}, "addTags": {"brand": "Cohen's Fashion Optical", "brand:wikidata": "Q5141313", "brand:wikipedia": "en:Cohen's Fashion Optical", "healthcare": "optometrist", "name": "Cohen's Fashion Optical", "shop": "optician", "short_name": "Cohen's"}, "countryCodes": ["us"], "terms": ["cohen's optical"], "matchScore": 2, "suggestion": true}, - "shop/optician/Eye Wish": {"name": "Eye Wish", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/EyeWishOpticiens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391641", "shop": "optician"}, "addTags": {"brand": "Eye Wish", "brand:wikidata": "Q62391641", "name": "Eye Wish", "shop": "optician"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Fielmann": {"name": "Fielmann", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Fielmann.DACH/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q457822", "shop": "optician"}, "addTags": {"brand": "Fielmann", "brand:wikidata": "Q457822", "brand:wikipedia": "en:Fielmann", "name": "Fielmann", "shop": "optician"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/General Óptica": {"name": "General Óptica", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/generaloptica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391672", "shop": "optician"}, "addTags": {"brand": "General Óptica", "brand:wikidata": "Q62391672", "name": "General Óptica", "shop": "optician"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Grand Optical": {"name": "Grand Optical", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/grandoptical/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3113677", "shop": "optician"}, "addTags": {"brand": "Grand Optical", "brand:wikidata": "Q3113677", "brand:wikipedia": "fr:Grand Optical", "name": "Grand Optical", "shop": "optician"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Générale d'Optique": {"name": "Générale d'Optique", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/generaledoptique/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391701", "shop": "optician"}, "addTags": {"brand": "Générale d'Optique", "brand:wikidata": "Q62391701", "name": "Générale d'Optique", "shop": "optician"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Hakim Optical": {"name": "Hakim Optical", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/HakimOptical/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28232761", "shop": "optician"}, "addTags": {"brand": "Hakim Optical", "brand:wikidata": "Q28232761", "brand:wikipedia": "en:Hakim Optical", "name": "Hakim Optical", "shop": "optician"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Hans Anders": {"name": "Hans Anders", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/hansanders.nl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1884976", "shop": "optician"}, "addTags": {"brand": "Hans Anders", "brand:wikidata": "Q1884976", "brand:wikipedia": "nl:Hans Anders", "name": "Hans Anders", "shop": "optician"}, "countryCodes": ["be", "fr", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Instrumentarium": {"name": "Instrumentarium", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/instru.fi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11864937", "shop": "optician"}, "addTags": {"brand": "Instrumentarium", "brand:wikidata": "Q11864937", "brand:wikipedia": "fi:Instrumentarium", "name": "Instrumentarium", "shop": "optician"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Krys": {"name": "Krys", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Krys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3119538", "shop": "optician"}, "addTags": {"brand": "Krys", "brand:wikidata": "Q3119538", "brand:wikipedia": "fr:Krys Group", "name": "Krys", "shop": "optician"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/LensCrafters": {"name": "LensCrafters", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/LensCrafters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6523209", "shop": "optician"}, "addTags": {"brand": "LensCrafters", "brand:wikidata": "Q6523209", "brand:wikipedia": "en:LensCrafters", "name": "LensCrafters", "shop": "optician"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Lenskart": {"name": "Lenskart", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Lenskartindia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17068753", "shop": "optician"}, "addTags": {"brand": "Lenskart", "brand:wikidata": "Q17068753", "name": "Lenskart", "shop": "optician"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Les Opticiens Mutualistes": {"name": "Les Opticiens Mutualistes", "icon": "maki-optician", "imageURL": "https://pbs.twimg.com/profile_images/849271473177014273/a_dbNYKI_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18414551", "shop": "optician"}, "addTags": {"brand": "Les Opticiens Mutualistes", "brand:wikidata": "Q18414551", "brand:wikipedia": "fr:Les Opticiens Mutualistes", "name": "Les Opticiens Mutualistes", "shop": "optician"}, "countryCodes": ["fr"], "terms": ["opticiens mutualistes"], "matchScore": 2, "suggestion": true}, - "shop/optician/Lissac": {"name": "Lissac", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/lissac.opticien/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63102559", "shop": "optician"}, "addTags": {"brand": "Lissac", "brand:wikidata": "Q63102559", "name": "Lissac", "shop": "optician"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Lynx Optique": {"name": "Lynx Optique", "icon": "maki-optician", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25387428", "shop": "optician"}, "addTags": {"brand": "Lynx Optique", "brand:wikidata": "Q25387428", "brand:wikipedia": "fr:Lynx Optique", "name": "Lynx Optique", "shop": "optician"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Multiópticas (Portugal)": {"name": "Multiópticas (Portugal)", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/MultiOpticasPortugal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391722", "shop": "optician"}, "addTags": {"brand": "Multiópticas", "brand:wikidata": "Q62391722", "name": "Multiópticas", "shop": "optician"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Multiópticas (Spain)": {"name": "Multiópticas (Spain)", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Multiopticas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391719", "shop": "optician"}, "addTags": {"brand": "Multiópticas", "brand:wikidata": "Q62391719", "name": "Multiópticas", "shop": "optician"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Oakley": {"name": "Oakley", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Oakley/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q161906", "shop": "optician"}, "addTags": {"brand": "Oakley", "brand:wikidata": "Q161906", "brand:wikipedia": "en:Oakley, Inc.", "name": "Oakley", "shop": "optician"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Oliver Peoples": {"name": "Oliver Peoples", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/oliverpeoples/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7087746", "shop": "optician"}, "addTags": {"brand": "Oliver Peoples", "brand:wikidata": "Q7087746", "brand:wikipedia": "en:Oliver Peoples", "name": "Oliver Peoples", "shop": "optician"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Optic 2000": {"name": "Optic 2000", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/optic2000/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3354445", "shop": "optician"}, "addTags": {"brand": "Optic 2000", "brand:wikidata": "Q3354445", "brand:wikipedia": "fr:Optic 2000", "name": "Optic 2000", "shop": "optician"}, "countryCodes": ["ch", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Optical Center": {"name": "Optical Center", "icon": "maki-optician", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20opticalcenter.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3354448", "shop": "optician"}, "addTags": {"brand": "Optical Center", "brand:wikidata": "Q3354448", "brand:wikipedia": "fr:Optical Center", "name": "Optical Center", "shop": "optician"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Optical Express": {"name": "Optical Express", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/opticalexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7098810", "shop": "optician"}, "addTags": {"brand": "Optical Express", "brand:wikidata": "Q7098810", "brand:wikipedia": "en:Optical Express", "name": "Optical Express", "shop": "optician"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Opticalia": {"name": "Opticalia", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/OPTICALIAGRUPO/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62082114", "shop": "optician"}, "addTags": {"brand": "Opticalia", "brand:wikidata": "Q62082114", "name": "Opticalia", "shop": "optician"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Pearle Vision": {"name": "Pearle Vision", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/pearlevision/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2231148", "shop": "optician"}, "addTags": {"brand": "Pearle Vision", "brand:wikidata": "Q2231148", "brand:wikipedia": "en:Pearle Vision", "name": "Pearle Vision", "shop": "optician", "short_name": "Pearle"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Scrivens": {"name": "Scrivens", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/ScrivensOpticians/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q79424133", "shop": "optician"}, "addTags": {"brand": "Scrivens", "brand:wikidata": "Q79424133", "name": "Scrivens", "shop": "optician"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Silmäasema": {"name": "Silmäasema", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/silmaasema/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15994200", "shop": "optician"}, "addTags": {"brand": "Silmäasema", "brand:wikidata": "Q15994200", "brand:wikipedia": "fi:Silmäasema", "name": "Silmäasema", "shop": "optician"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Solaris": {"name": "Solaris", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/solarisfrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3489229", "shop": "optician"}, "addTags": {"brand": "Solaris", "brand:wikidata": "Q3489229", "brand:wikipedia": "fr:Solaris (magasin)", "name": "Solaris", "shop": "optician"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Specsavers": {"name": "Specsavers", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Specsavers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2000610", "shop": "optician"}, "addTags": {"brand": "Specsavers", "brand:wikidata": "Q2000610", "brand:wikipedia": "en:Specsavers", "name": "Specsavers", "shop": "optician"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Sunglass Hut": {"name": "Sunglass Hut", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/SunglassHut/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q136311", "shop": "optician"}, "addTags": {"brand": "Sunglass Hut", "brand:wikidata": "Q136311", "brand:wikipedia": "en:Sunglass Hut", "name": "Sunglass Hut", "shop": "optician"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Synoptik": {"name": "Synoptik", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/synoptiksverige/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10687541", "shop": "optician"}, "addTags": {"brand": "Synoptik", "brand:wikidata": "Q10687541", "brand:wikipedia": "sv:Synoptik", "name": "Synoptik", "shop": "optician"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Synsam": {"name": "Synsam", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/synsam.se/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12004589", "shop": "optician"}, "addTags": {"brand": "Synsam", "brand:wikidata": "Q12004589", "brand:wikipedia": "sv:Synsam", "name": "Synsam", "shop": "optician"}, "countryCodes": ["fi", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Target Optical": {"name": "Target Optical", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/1955770117992590/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19903688", "shop": "optician"}, "addTags": {"brand": "Target Optical", "brand:wikidata": "Q19903688", "brand:wikipedia": "en:Target Optical", "name": "Target Optical", "shop": "optician"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Vision Express": {"name": "Vision Express", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/visionexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7936150", "shop": "optician"}, "addTags": {"brand": "Vision Express", "brand:wikidata": "Q7936150", "brand:wikipedia": "en:Vision Express", "name": "Vision Express", "shop": "optician"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Vision Plus": {"name": "Vision Plus", "icon": "maki-optician", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Vision%20Plus.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23752663", "shop": "optician"}, "addTags": {"brand": "Vision Plus", "brand:wikidata": "Q23752663", "name": "Vision Plus", "shop": "optician"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Visionworks": {"name": "Visionworks", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/Visionworks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5422607", "shop": "optician"}, "addTags": {"brand": "Visionworks", "brand:wikidata": "Q5422607", "brand:wikipedia": "en:Visionworks", "name": "Visionworks", "shop": "optician"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/Warby Parker": {"name": "Warby Parker", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/warbyparker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7968882", "shop": "optician"}, "addTags": {"brand": "Warby Parker", "brand:wikidata": "Q7968882", "brand:wikipedia": "en:Warby Parker", "name": "Warby Parker", "shop": "optician"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/แว่นท็อปเจริญ": {"name": "แว่นท็อปเจริญ", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/TopCharoenOpticalOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391732", "shop": "optician"}, "addTags": {"brand": "แว่นท็อปเจริญ", "brand:th": "แว่นท็อปเจริญ", "brand:wikidata": "Q62391732", "name": "แว่นท็อปเจริญ", "name:th": "แว่นท็อปเจริญ", "shop": "optician"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/ジンズ": {"name": "ジンズ", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/jinseyewear/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11308974", "shop": "optician"}, "addTags": {"brand": "ジンズ", "brand:en": "JINS", "brand:ja": "ジンズ", "brand:wikidata": "Q11308974", "brand:wikipedia": "ja:ジンズ", "name": "ジンズ", "name:en": "JINS", "name:ja": "ジンズ", "shop": "optician"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/ゾフ": {"name": "ゾフ", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/zoff.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11255932", "shop": "optician"}, "addTags": {"brand": "ゾフ", "brand:en": "Zoff", "brand:ja": "ゾフ", "brand:wikidata": "Q11255932", "brand:wikipedia": "ja:Zoff", "name": "ゾフ", "name:en": "Zoff", "name:ja": "ゾフ", "shop": "optician"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/メガネの三城": {"name": "メガネの三城", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/meganenoparismiki/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11354808", "shop": "optician"}, "addTags": {"alt_name:en": "Megane no Miki", "brand": "メガネの三城", "brand:ja": "メガネの三城", "brand:wikidata": "Q11354808", "brand:wikipedia": "jp:三城ホールディングス", "name": "メガネの三城", "name:en": "Paris Miki", "name:ja": "メガネの三城", "shop": "optician"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/メガネストアー": {"name": "メガネストアー", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/2028508200729762/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11343503", "shop": "optician"}, "addTags": {"brand": "メガネストアー", "brand:ja": "メガネストアー", "brand:wikidata": "Q11343503", "brand:wikipedia": "jp:メガネストアー", "name": "メガネストアー", "name:en": "Megane Store", "name:ja": "メガネストアー", "shop": "optician"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/メガネスーパー": {"name": "メガネスーパー", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/meganesuper/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11343504", "shop": "optician"}, "addTags": {"brand": "メガネスーパー", "brand:ja": "メガネスーパー", "brand:wikidata": "Q11343504", "brand:wikipedia": "ja:メガネスーパー", "name": "メガネスーパー", "name:en": "Meganesuper", "name:ja": "メガネスーパー", "shop": "optician"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/寶島眼鏡": {"name": "寶島眼鏡", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/formosafans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391741", "shop": "optician"}, "addTags": {"brand": "寶島眼鏡", "brand:wikidata": "Q62391741", "name": "寶島眼鏡", "shop": "optician"}, "countryCodes": ["zh"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/optician/眼鏡市場": {"name": "眼鏡市場", "icon": "maki-optician", "imageURL": "https://graph.facebook.com/meganeichiba.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11343506", "shop": "optician"}, "addTags": {"brand": "眼鏡市場", "brand:en": "Megane Ichiba", "brand:wikidata": "Q11343506", "brand:wikipedia": "ja:メガネトップ", "name": "眼鏡市場", "name:en": "Megane Ichiba", "shop": "optician"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Bass Pro Shops": {"name": "Bass Pro Shops", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/bassproshops/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4867953", "shop": "outdoor"}, "addTags": {"brand": "Bass Pro Shops", "brand:wikidata": "Q4867953", "brand:wikipedia": "en:Bass Pro Shops", "name": "Bass Pro Shops", "shop": "outdoor"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Blacks": {"name": "Blacks", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/blacksonline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64822933", "shop": "outdoor"}, "addTags": {"brand": "Blacks", "brand:wikidata": "Q64822933", "name": "Blacks", "shop": "outdoor"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Cabela's": {"name": "Cabela's", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/Cabelas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2793714", "shop": "outdoor"}, "addTags": {"brand": "Cabela's", "brand:wikidata": "Q2793714", "brand:wikipedia": "en:Cabela's", "name": "Cabela's", "shop": "outdoor"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Cotswold Outdoor": {"name": "Cotswold Outdoor", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/CotswoldOutdoor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5175488", "shop": "outdoor"}, "addTags": {"brand": "Cotswold Outdoor", "brand:wikidata": "Q5175488", "brand:wikipedia": "en:Cotswold Outdoor", "name": "Cotswold Outdoor", "shop": "outdoor"}, "countryCodes": ["gb"], "terms": ["cotswold"], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Gander Outdoors": {"name": "Gander Outdoors", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/GanderRV/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64357426", "shop": "outdoor"}, "addTags": {"brand": "Gander Outdoors", "brand:wikidata": "Q64357426", "brand:wikipedia": "en:Gander Outdoors", "name": "Gander Outdoors", "shop": "outdoor"}, "countryCodes": ["us"], "terms": ["gander mountain"], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Go Outdoors": {"name": "Go Outdoors", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/GOoutdoorsUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q75293941", "shop": "outdoor"}, "addTags": {"brand": "Go Outdoors", "brand:wikidata": "Q75293941", "name": "Go Outdoors", "shop": "outdoor"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Jack Wolfskin": {"name": "Jack Wolfskin", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/JACKWOLFSKINofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q536133", "shop": "outdoor"}, "addTags": {"brand": "Jack Wolfskin", "brand:wikidata": "Q536133", "brand:wikipedia": "en:Jack Wolfskin", "name": "Jack Wolfskin", "shop": "outdoor"}, "countryCodes": ["ch", "de", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Kathmandu": {"name": "Kathmandu", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/kathmandu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1736294", "shop": "outdoor"}, "addTags": {"brand": "Kathmandu", "brand:wikidata": "Q1736294", "brand:wikipedia": "en:Kathmandu (company)", "name": "Kathmandu", "shop": "outdoor"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Macpac": {"name": "Macpac", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/macpac/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6724943", "shop": "outdoor"}, "addTags": {"brand": "Macpac", "brand:wikidata": "Q6724943", "brand:wikipedia": "en:Macpac", "name": "Macpac", "shop": "outdoor"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Millets": {"name": "Millets", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/milletsonlinefans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64822903", "shop": "outdoor"}, "addTags": {"brand": "Millets", "brand:wikidata": "Q64822903", "name": "Millets", "shop": "outdoor"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Mountain Warehouse": {"name": "Mountain Warehouse", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/MountainWarehouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6925414", "shop": "outdoor"}, "addTags": {"brand": "Mountain Warehouse", "brand:wikidata": "Q6925414", "brand:wikipedia": "en:Mountain Warehouse", "name": "Mountain Warehouse", "shop": "outdoor"}, "countryCodes": ["gb", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/REI": {"name": "REI", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/9062006483/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3414933", "shop": "outdoor"}, "addTags": {"brand": "REI", "brand:wikidata": "Q3414933", "brand:wikipedia": "en:Recreational Equipment, Inc.", "name": "REI", "official_name": "Recreational Equipment, Inc.", "shop": "outdoor"}, "countryCodes": ["id", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Sportsman's Warehouse": {"name": "Sportsman's Warehouse", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/sportsmanswh/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7579979", "shop": "outdoor"}, "addTags": {"brand": "Sportsman's Warehouse", "brand:wikidata": "Q7579979", "brand:wikipedia": "en:Sportsman's Warehouse", "name": "Sportsman's Warehouse", "shop": "outdoor"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outdoor/Trespass": {"name": "Trespass", "icon": "temaki-compass", "imageURL": "https://graph.facebook.com/trespass/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17035733", "shop": "outdoor"}, "addTags": {"brand": "Trespass", "brand:wikidata": "Q17035733", "brand:wikipedia": "en:Trespass (clothing)", "name": "Trespass", "shop": "outdoor"}, "countryCodes": ["fr", "gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/outpost/Wildberries": {"name": "Wildberries", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/wildberries.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24933714", "shop": "outpost"}, "addTags": {"brand": "Wildberries", "brand:wikidata": "Q24933714", "brand:wikipedia": "ru:Wildberries", "name": "Wildberries", "shop": "outpost"}, "countryCodes": ["by", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/paint/Benjamin Moore": {"name": "Benjamin Moore", "icon": "fas-paint-roller", "imageURL": "https://graph.facebook.com/benjaminmoorepaints/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4889038", "shop": "paint"}, "addTags": {"brand": "Benjamin Moore", "brand:wikidata": "Q4889038", "brand:wikipedia": "en:Benjamin Moore & Co.", "name": "Benjamin Moore", "shop": "paint"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/paint/Comex": {"name": "Comex", "icon": "fas-paint-roller", "imageURL": "https://graph.facebook.com/Comex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5151654", "shop": "paint"}, "addTags": {"brand": "Comex", "brand:wikidata": "Q5151654", "brand:wikipedia": "en:Comex Group", "name": "Comex", "shop": "paint"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/paint/Jotun": {"name": "Jotun", "icon": "fas-paint-roller", "imageURL": "https://graph.facebook.com/JotunGroup/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1778870", "shop": "paint"}, "addTags": {"brand": "Jotun", "brand:wikidata": "Q1778870", "brand:wikipedia": "en:Jotun (company)", "name": "Jotun", "shop": "paint"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/paint/National Paints": {"name": "National Paints", "icon": "fas-paint-roller", "imageURL": "https://graph.facebook.com/NationalPaints/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62073521", "shop": "paint"}, "addTags": {"brand": "National Paints", "brand:wikidata": "Q62073521", "name": "National Paints", "shop": "paint"}, "countryCodes": ["ae", "qa"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/paint/Sherwin-Williams": {"name": "Sherwin-Williams", "icon": "fas-paint-roller", "imageURL": "https://graph.facebook.com/SherwinWilliamsforYourHome/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48881", "shop": "paint"}, "addTags": {"brand": "Sherwin-Williams", "brand:wikidata": "Q48881", "brand:wikipedia": "en:Sherwin-Williams", "name": "Sherwin-Williams", "shop": "paint"}, "terms": ["sherwin williams paint store", "sherwin williams paints"], "matchScore": 2, "suggestion": true}, - "shop/party/Party City": {"name": "Party City", "icon": "temaki-balloon", "imageURL": "https://graph.facebook.com/PartyCity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7140896", "shop": "party"}, "addTags": {"brand": "Party City", "brand:wikidata": "Q7140896", "brand:wikipedia": "en:Party City", "name": "Party City", "shop": "party"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pastry/Cookies by Design": {"name": "Cookies by Design", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/CookiesbyDesignHQ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5167112", "shop": "pastry"}, "addTags": {"brand": "Cookies by Design", "brand:wikidata": "Q5167112", "brand:wikipedia": "en:Cookies by Design", "craft": "bakery", "name": "Cookies by Design", "shop": "pastry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pastry/Smallcakes": {"name": "Smallcakes", "icon": "maki-bakery", "imageURL": "https://graph.facebook.com/SmallcakesKC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62384749", "shop": "pastry"}, "addTags": {"brand": "Smallcakes", "brand:wikidata": "Q62384749", "name": "Smallcakes", "shop": "pastry"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pawnbroker/Cash Converters": {"name": "Cash Converters", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/CashConvertersUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5048645", "shop": "pawnbroker"}, "addTags": {"brand": "Cash Converters", "brand:wikidata": "Q5048645", "brand:wikipedia": "en:Cash Converters", "name": "Cash Converters", "shop": "pawnbroker"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pawnbroker/Cebuana Lhuillier": {"name": "Cebuana Lhuillier", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/cebuanalhuillierpawnshop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17064661", "shop": "pawnbroker"}, "addTags": {"brand": "Cebuana Lhuillier", "brand:wikidata": "Q17064661", "brand:wikipedia": "en:Cebuana Lhuillier", "name": "Cebuana Lhuillier", "shop": "pawnbroker", "short_name": "Cebuana"}, "countryCodes": ["ph"], "terms": ["agencia cebuana"], "matchScore": 2, "suggestion": true}, - "shop/pawnbroker/M Lhuillier": {"name": "M Lhuillier", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/mlhuillier.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q83434356", "shop": "pawnbroker"}, "addTags": {"brand": "M Lhuillier", "brand:wikidata": "Q83434356", "name": "M Lhuillier", "shop": "pawnbroker"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pawnbroker/Palawan Pawnshop": {"name": "Palawan Pawnshop", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/palawan.pawnshop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391488", "shop": "pawnbroker"}, "addTags": {"brand": "Palawan Pawnshop", "brand:wikidata": "Q62391488", "name": "Palawan Pawnshop", "shop": "pawnbroker"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pawnbroker/Villarica Pawnshop": {"name": "Villarica Pawnshop", "icon": "temaki-money_hand", "imageURL": "https://graph.facebook.com/155765647803482/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391438", "shop": "pawnbroker"}, "addTags": {"brand": "Villarica Pawnshop", "brand:wikidata": "Q62391438", "name": "Villarica Pawnshop", "shop": "pawnbroker"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pawnbroker/大黒屋": {"name": "大黒屋", "icon": "temaki-money_hand", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11442068", "shop": "pawnbroker"}, "addTags": {"brand": "大黒屋", "brand:en": "Daikokuya", "brand:ja": "大黒屋", "brand:wikidata": "Q11442068", "brand:wikipedia": "ja:大黒屋 (チケット)", "name": "大黒屋", "name:en": "Daikokuya", "name:ja": "大黒屋", "shop": "pawnbroker"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/perfumery/Douglas": {"name": "Douglas", "icon": "temaki-perfume", "imageURL": "https://graph.facebook.com/DouglasDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2052213", "shop": "perfumery"}, "addTags": {"brand": "Douglas", "brand:wikidata": "Q2052213", "brand:wikipedia": "de:Parfümerie Douglas", "name": "Douglas", "shop": "perfumery"}, "countryCodes": ["at", "ch", "de", "es", "it", "nl", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/perfumery/FAnn": {"name": "FAnn", "icon": "temaki-perfume", "imageURL": "https://graph.facebook.com/FAnn.cz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62391353", "shop": "perfumery"}, "addTags": {"brand": "FAnn", "brand:wikidata": "Q62391353", "name": "FAnn", "shop": "perfumery"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/perfumery/ICI PARIS XL": {"name": "ICI PARIS XL", "icon": "temaki-perfume", "imageURL": "https://graph.facebook.com/iciparisxlbe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q769749", "shop": "perfumery"}, "addTags": {"brand": "ICI PARIS XL", "brand:wikidata": "Q769749", "brand:wikipedia": "en:ICI Paris XL", "name": "ICI PARIS XL", "shop": "perfumery"}, "countryCodes": ["be", "lu", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/perfumery/Marionnaud": {"name": "Marionnaud", "icon": "temaki-perfume", "imageURL": "https://graph.facebook.com/Marionnaud.France/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1129073", "shop": "perfumery"}, "addTags": {"brand": "Marionnaud", "brand:wikidata": "Q1129073", "brand:wikipedia": "fr:Marionnaud", "name": "Marionnaud", "shop": "perfumery"}, "countryCodes": ["at", "ch", "es", "fr", "it", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/perfumery/O Boticário": {"name": "O Boticário", "icon": "temaki-perfume", "imageURL": "https://graph.facebook.com/oboticario/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7073219", "shop": "perfumery"}, "addTags": {"brand": "O Boticário", "brand:wikidata": "Q7073219", "brand:wikipedia": "en:O Boticário", "name": "O Boticário", "shop": "perfumery"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/perfumery/Perfumania": {"name": "Perfumania", "icon": "temaki-perfume", "imageURL": "https://graph.facebook.com/perfumania/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72983916", "shop": "perfumery"}, "addTags": {"brand": "Perfumania", "brand:wikidata": "Q72983916", "name": "Perfumania", "shop": "perfumery"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/perfumery/The Perfume Shop": {"name": "The Perfume Shop", "icon": "temaki-perfume", "imageURL": "https://graph.facebook.com/theperfumeshoponline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7756719", "shop": "perfumery"}, "addTags": {"brand": "The Perfume Shop", "brand:wikidata": "Q7756719", "brand:wikipedia": "en:The Perfume Shop", "name": "The Perfume Shop", "shop": "perfumery"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Animalis": {"name": "Animalis", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/Animalisfr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2850015", "shop": "pet"}, "addTags": {"brand": "Animalis", "brand:wikidata": "Q2850015", "name": "Animalis", "shop": "pet"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Das Futterhaus": {"name": "Das Futterhaus", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/futterhaus.deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1167914", "shop": "pet"}, "addTags": {"brand": "Das Futterhaus", "brand:wikidata": "Q1167914", "brand:wikipedia": "de:Das Futterhaus", "name": "Das Futterhaus", "shop": "pet"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Faunatar": {"name": "Faunatar", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/Faunatar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11859415", "shop": "pet"}, "addTags": {"brand": "Faunatar", "brand:wikidata": "Q11859415", "brand:wikipedia": "fi:Faunatar", "name": "Faunatar", "shop": "pet"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Fressnapf": {"name": "Fressnapf", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/Fressnapf/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q875796", "shop": "pet"}, "addTags": {"brand": "Fressnapf", "brand:wikidata": "Q875796", "brand:wikipedia": "en:Fressnapf", "name": "Fressnapf", "shop": "pet"}, "countryCodes": ["at", "ch", "de", "hu", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Global Pet Foods": {"name": "Global Pet Foods", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/globalpetfoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57985699", "shop": "pet"}, "addTags": {"brand": "Global Pet Foods", "brand:wikidata": "Q57985699", "name": "Global Pet Foods", "shop": "pet"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Jollyes": {"name": "Jollyes", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/jollyesuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q45844955", "shop": "pet"}, "addTags": {"brand": "Jollyes", "brand:wikidata": "Q45844955", "name": "Jollyes", "shop": "pet"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Jumper": {"name": "Jumper", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/JumperNL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87338743", "shop": "pet"}, "addTags": {"brand": "Jumper", "brand:wikidata": "Q87338743", "name": "Jumper", "shop": "pet"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Maxi Zoo": {"name": "Maxi Zoo", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/Fressnapf/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q875796", "shop": "pet"}, "addTags": {"brand": "Maxi Zoo", "brand:wikidata": "Q875796", "brand:wikipedia": "en:Fressnapf", "name": "Maxi Zoo", "shop": "pet"}, "countryCodes": ["be", "ch", "dk", "fr", "ie", "it", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Mud Bay": {"name": "Mud Bay", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/mudbay/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30324179", "shop": "pet"}, "addTags": {"brand": "Mud Bay", "brand:wikidata": "Q30324179", "brand:wikipedia": "en:Mud Bay pet store", "name": "Mud Bay", "shop": "pet"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Musti ja Mirri": {"name": "Musti ja Mirri", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/mustijamirri/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11883558", "shop": "pet"}, "addTags": {"brand": "Musti ja Mirri", "brand:wikidata": "Q11883558", "brand:wikipedia": "fi:Musti ja Mirri", "name": "Musti ja Mirri", "shop": "pet"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Médor et Compagnie": {"name": "Médor et Compagnie", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/medoretcie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89344773", "shop": "pet"}, "addTags": {"brand": "Médor et Compagnie", "brand:wikidata": "Q89344773", "name": "Médor et Compagnie", "shop": "pet"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Pet Food Express": {"name": "Pet Food Express", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/petfoodexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7171541", "shop": "pet"}, "addTags": {"brand": "Pet Food Express", "brand:wikidata": "Q7171541", "brand:wikipedia": "en:Pet Food Express", "name": "Pet Food Express", "shop": "pet"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Pet Supermarket": {"name": "Pet Supermarket", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/PetSupermarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61968363", "shop": "pet"}, "addTags": {"brand": "Pet Supermarket", "brand:wikidata": "Q61968363", "name": "Pet Supermarket", "shop": "pet"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Pet Supplies Plus": {"name": "Pet Supplies Plus", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/petsuppliesplus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7171563", "shop": "pet"}, "addTags": {"brand": "Pet Supplies Plus", "brand:wikidata": "Q7171563", "brand:wikipedia": "en:Pet Supplies Plus", "name": "Pet Supplies Plus", "shop": "pet"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Pet Valu": {"name": "Pet Valu", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/PetValuUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58009635", "shop": "pet"}, "addTags": {"brand": "Pet Valu", "brand:wikidata": "Q58009635", "name": "Pet Valu", "shop": "pet"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/PetSmart": {"name": "PetSmart", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/PetSmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3307147", "shop": "pet"}, "addTags": {"brand": "PetSmart", "brand:wikidata": "Q3307147", "brand:wikipedia": "en:PetSmart", "name": "PetSmart", "shop": "pet"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Petco": {"name": "Petco", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/Petco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7171798", "shop": "pet"}, "addTags": {"brand": "Petco", "brand:wikidata": "Q7171798", "brand:wikipedia": "en:Petco", "name": "Petco", "shop": "pet"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Petland": {"name": "Petland", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/PetlandUSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17111474", "shop": "pet"}, "addTags": {"brand": "Petland", "brand:wikidata": "Q17111474", "brand:wikipedia": "en:Petland", "name": "Petland", "shop": "pet"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Petland Discounts": {"name": "Petland Discounts", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/petlanddiscount/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7178463", "shop": "pet"}, "addTags": {"brand": "Petland Discounts", "brand:wikidata": "Q7178463", "brand:wikipedia": "en:Petland Discounts", "name": "Petland Discounts", "shop": "pet"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Pets Corner": {"name": "Pets Corner", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/petscorner/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17018476", "shop": "pet"}, "addTags": {"brand": "Pets Corner", "brand:wikidata": "Q17018476", "brand:wikipedia": "en:Pets Corner", "name": "Pets Corner", "shop": "pet"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Pets at Home": {"name": "Pets at Home", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/petsathomeUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7179258", "shop": "pet"}, "addTags": {"brand": "Pets at Home", "brand:wikidata": "Q7179258", "brand:wikipedia": "en:Pets at Home", "name": "Pets at Home", "shop": "pet"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Unleashed": {"name": "Unleashed", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/Petco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62122874", "shop": "pet"}, "addTags": {"alt_name": "Unleashed by Petco", "brand": "Unleashed", "brand:wikidata": "Q62122874", "name": "Unleashed", "shop": "pet"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Wild Birds Unlimited": {"name": "Wild Birds Unlimited", "icon": "fas-cat", "imageURL": "https://pbs.twimg.com/profile_images/466209950788636672/DHjpTthh_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8000542", "shop": "pet"}, "addTags": {"brand": "Wild Birds Unlimited", "brand:wikidata": "Q8000542", "brand:wikipedia": "en:Wild Birds Unlimited", "name": "Wild Birds Unlimited", "shop": "pet"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Бетховен": {"name": "Бетховен", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/zoobethowenclub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62390798", "shop": "pet"}, "addTags": {"brand": "Бетховен", "brand:wikidata": "Q62390798", "name": "Бетховен", "shop": "pet"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/Четыре лапы": {"name": "Четыре лапы", "icon": "fas-cat", "imageURL": "https://graph.facebook.com/4laps/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62390783", "shop": "pet"}, "addTags": {"brand": "Четыре лапы", "brand:wikidata": "Q62390783", "name": "Четыре лапы", "shop": "pet"}, "countryCodes": ["kz", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pet/イオンペット": {"name": "イオンペット", "icon": "fas-cat", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11286064", "shop": "pet"}, "addTags": {"brand": "イオンペット", "brand:en": "Aeonpet", "brand:ja": "イオンペット", "brand:wikidata": "Q11286064", "brand:wikipedia": "ja:イオンペット", "name": "イオンペット", "name:en": "Aeonpet", "name:ja": "イオンペット", "shop": "pet"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/photo/Kamera Express": {"name": "Kamera Express", "icon": "fas-camera-retro", "imageURL": "https://graph.facebook.com/kameraexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q77976400", "shop": "photo"}, "addTags": {"brand": "Kamera Express", "brand:wikidata": "Q77976400", "name": "Kamera Express", "shop": "photo"}, "countryCodes": ["be", "de", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/photo/Kodak Express": {"name": "Kodak Express", "icon": "fas-camera-retro", "imageURL": "https://graph.facebook.com/kodakexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6425126", "shop": "photo"}, "addTags": {"brand": "Kodak Express", "brand:wikidata": "Q6425126", "brand:wikipedia": "en:Kodak Express", "name": "Kodak Express", "shop": "photo"}, "terms": ["kodak"], "matchScore": 2, "suggestion": true}, - "shop/photo/Max Spielmann": {"name": "Max Spielmann", "icon": "fas-camera-retro", "imageURL": "https://graph.facebook.com/MaxPhotoCentres/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q76221051", "shop": "photo"}, "addTags": {"brand": "Max Spielmann", "brand:wikidata": "Q76221051", "name": "Max Spielmann", "shop": "photo"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/photo/Snappy Snaps": {"name": "Snappy Snaps", "icon": "fas-camera-retro", "imageURL": "https://graph.facebook.com/SnappySnapsUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7547351", "shop": "photo"}, "addTags": {"brand": "Snappy Snaps", "brand:wikidata": "Q7547351", "brand:wikipedia": "en:Snappy Snaps", "name": "Snappy Snaps", "shop": "photo"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/photo/カメラのキタムラ": {"name": "カメラのキタムラ", "icon": "fas-camera-retro", "imageURL": "https://graph.facebook.com/kitamura.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11294821", "shop": "photo"}, "addTags": {"brand": "カメラのキタムラ", "brand:en": "Kitamura Camera", "brand:ja": "カメラのキタムラ", "brand:wikidata": "Q11294821", "brand:wikipedia": "ja:カメラのキタムラ", "name": "カメラのキタムラ", "name:en": "Kitamura Camera", "name:ja": "カメラのキタムラ", "shop": "photo"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/photo/コイデカメラ": {"name": "コイデカメラ", "icon": "fas-camera-retro", "imageURL": "https://pbs.twimg.com/profile_images/1096362575409729537/ESlXcKUb_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11301829", "shop": "photo"}, "addTags": {"brand": "コイデカメラ", "brand:en": "Koide Camera", "brand:ja": "コイデカメラ", "brand:wikidata": "Q11301829", "brand:wikipedia": "ja:コイデカメラ", "name": "コイデカメラ", "name:en": "Koide Camera", "name:ja": "コイデカメラ", "shop": "photo"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/photo/パレットプラザ": {"name": "パレットプラザ", "icon": "fas-camera-retro", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPlaza%20Create%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11335403", "shop": "photo"}, "addTags": {"brand": "パレットプラザ", "brand:en": "Palette Plaza", "brand:ja": "パレットプラザ", "brand:wikidata": "Q11335403", "brand:wikipedia": "ja:プラザクリエイト", "name": "パレットプラザ", "name:en": "Palette Plaza", "name:ja": "パレットプラザ", "shop": "photo"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/pottery/Sargadelos": {"name": "Sargadelos", "icon": "temaki-vase", "imageURL": "https://graph.facebook.com/Sargadelos/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12390201", "shop": "pottery"}, "addTags": {"brand": "Sargadelos", "brand:wikidata": "Q12390201", "brand:wikipedia": "gl:Grupo Sargadelos", "name": "Sargadelos", "shop": "pottery"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/printer_ink/Cartridge World": {"name": "Cartridge World", "icon": "fas-print", "imageURL": "https://graph.facebook.com/CartridgeWorldNewsUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5047439", "shop": "printer_ink"}, "addTags": {"brand": "Cartridge World", "brand:wikidata": "Q5047439", "brand:wikipedia": "en:Cartridge World", "name": "Cartridge World", "shop": "printer_ink"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/rental/Penske Truck Rental": {"name": "Penske Truck Rental", "icon": "fas-dolly", "imageURL": "https://graph.facebook.com/PenskeTruckRental/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81234570", "shop": "rental"}, "addTags": {"brand": "Penske Truck Rental", "brand:wikidata": "Q81234570", "name": "Penske Truck Rental", "shop": "rental", "short_name": "Penske"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/rental/Ryder": {"name": "Ryder", "icon": "fas-dolly", "imageURL": "https://graph.facebook.com/RyderSystemInc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2178198", "shop": "rental"}, "addTags": {"brand": "Ryder", "brand:wikidata": "Q2178198", "brand:wikipedia": "en:Ryder", "name": "Ryder", "shop": "rental"}, "countryCodes": ["ca", "gb", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/rental/U-Haul": {"name": "U-Haul", "icon": "fas-dolly", "imageURL": "https://graph.facebook.com/uhaul/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7862902", "shop": "rental"}, "addTags": {"brand": "U-Haul", "brand:wikidata": "Q7862902", "brand:wikipedia": "en:U-Haul", "name": "U-Haul", "shop": "rental"}, "countryCodes": ["ca", "us"], "terms": ["uhaul neighborhood dealer"], "matchScore": 2, "suggestion": true}, - "shop/rental/United Rentals": {"name": "United Rentals", "icon": "fas-dolly", "imageURL": "https://graph.facebook.com/UnitedRentals/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7889101", "shop": "rental"}, "addTags": {"brand": "United Rentals", "brand:wikidata": "Q7889101", "brand:wikipedia": "en:United Rentals", "name": "United Rentals", "shop": "rental"}, "countryCodes": ["ca", "us"], "terms": ["united rental"], "matchScore": 2, "suggestion": true}, - "shop/second_hand/Savers": {"name": "Savers", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/savers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7428188", "shop": "second_hand"}, "addTags": {"brand": "Savers", "brand:wikidata": "Q7428188", "brand:wikipedia": "en:Savers", "name": "Savers", "shop": "second_hand"}, "countryCodes": ["au", "ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/second_hand/Value Village": {"name": "Value Village", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/savers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7428188", "shop": "second_hand"}, "addTags": {"brand": "Value Village", "brand:wikidata": "Q7428188", "brand:wikipedia": "en:Savers", "name": "Value Village", "shop": "second_hand"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/second_hand/セカンドストリート": {"name": "セカンドストリート", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/2ndSTREETjp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11314186", "shop": "second_hand"}, "addTags": {"brand": "セカンドストリート", "brand:en": "2nd STREET", "brand:ja": "セカンドストリート", "brand:wikidata": "Q11314186", "brand:wikipedia": "ja:セカンドストリート", "name": "セカンドストリート", "name:en": "2nd STREET", "name:ja": "セカンドストリート", "shop": "second_hand"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/second_hand/トレジャー・ファクトリー": {"name": "トレジャー・ファクトリー", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/TreFac.recycle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11322108", "shop": "second_hand"}, "addTags": {"brand": "トレジャー・ファクトリー", "brand:en": "Treasure Factory", "brand:ja": "トレジャー・ファクトリー", "brand:wikidata": "Q11322108", "brand:wikipedia": "ja:トレジャー・ファクトリー", "name": "トレジャー・ファクトリー", "name:en": "Treasure Factory", "name:ja": "トレジャー・ファクトリー", "shop": "second_hand"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/second_hand/ハードオフ": {"name": "ハードオフ", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1037942244370571264/dHYNAjgb_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11327274", "shop": "second_hand"}, "addTags": {"brand": "ハードオフ", "brand:en": "Hard Off", "brand:ja": "ハードオフ", "brand:wikidata": "Q11327274", "brand:wikipedia": "ja:ハードオフコーポレーション", "name": "ハードオフ", "name:en": "Hard Off", "name:ja": "ハードオフ", "shop": "second_hand"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/ABC Schuh-Center": {"name": "ABC Schuh-Center", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/ABCSchuhCenter/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66007228", "shop": "shoes"}, "addTags": {"brand": "ABC Schuh-Center", "brand:wikidata": "Q66007228", "name": "ABC Schuh-Center", "shop": "shoes"}, "countryCodes": ["de"], "terms": ["abc schuhe"], "matchScore": 2, "suggestion": true}, - "shop/shoes/ABCマート": {"name": "ABCマート", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/172547912801644/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11188787", "shop": "shoes"}, "addTags": {"brand": "ABCマート", "brand:ja": "ABCマート", "brand:wikidata": "Q11188787", "brand:wikipedia": "en:ABC-Mart", "name": "ABCマート", "name:ja": "ABCマート", "shop": "shoes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Aldo": {"name": "Aldo", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/ALDO/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2832297", "shop": "shoes"}, "addTags": {"brand": "Aldo", "brand:wikidata": "Q2832297", "brand:wikipedia": "en:Aldo Group", "name": "Aldo", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Allen Edmonds": {"name": "Allen Edmonds", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/allenedmonds/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4731627", "shop": "shoes"}, "addTags": {"brand": "Allen Edmonds", "brand:wikidata": "Q4731627", "brand:wikipedia": "en:Allen Edmonds", "name": "Allen Edmonds", "shop": "shoes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/André": {"name": "André", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/AndreChaussures/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2847114", "shop": "shoes"}, "addTags": {"brand": "André", "brand:wikidata": "Q2847114", "brand:wikipedia": "fr:André (chaussure)", "name": "André", "shop": "shoes"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Bata (Bolivia)": {"name": "Bata (Bolivia)", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81965517", "shop": "shoes"}, "addTags": {"brand": "Bata", "brand:wikidata": "Q81965517", "name": "Bata", "shop": "shoes"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Bata (Czech Republic)": {"name": "Bata (Czech Republic)", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Bata/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q688082", "shop": "shoes"}, "addTags": {"brand": "Bata", "brand:wikidata": "Q688082", "brand:wikipedia": "en:Bata (company)", "name": "Bata", "shop": "shoes"}, "countryCodes": ["cz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Belwest": {"name": "Belwest", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%D0%91%D0%B5%D0%BB%D0%B2%D0%B5%D1%81%D1%82.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4081686", "shop": "shoes"}, "addTags": {"brand": "Belwest", "brand:wikidata": "Q4081686", "brand:wikipedia": "ru:Белвест", "name": "Belwest", "shop": "shoes"}, "countryCodes": ["by", "ru"], "terms": ["белвест"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Besson Chaussures": {"name": "Besson Chaussures", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/besson.chaussures/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2899930", "shop": "shoes"}, "addTags": {"brand": "Besson Chaussures", "brand:wikidata": "Q2899930", "brand:wikipedia": "fr:Besson Chaussures", "name": "Besson Chaussures", "shop": "shoes"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Birkenstock": {"name": "Birkenstock", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/birkenstock/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q648458", "shop": "shoes"}, "addTags": {"brand": "Birkenstock", "brand:wikidata": "Q648458", "brand:wikipedia": "en:Birkenstock", "name": "Birkenstock", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Brantano": {"name": "Brantano", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/brantano.belgie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4957616", "shop": "shoes"}, "addTags": {"brand": "Brantano", "brand:wikidata": "Q4957616", "brand:wikipedia": "en:Brantano Footwear", "name": "Brantano", "shop": "shoes"}, "countryCodes": ["be", "gb", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Browns": {"name": "Browns", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Brownsshoes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16954153", "shop": "shoes"}, "addTags": {"brand": "Browns", "brand:wikidata": "Q16954153", "brand:wikipedia": "en:Browns Shoes", "name": "Browns", "shop": "shoes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/CCC": {"name": "CCC", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/CCC.Poland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11788344", "shop": "shoes"}, "addTags": {"brand": "CCC", "brand:wikidata": "Q11788344", "brand:wikipedia": "de:CCC (Unternehmen)", "name": "CCC", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Call It Spring": {"name": "Call It Spring", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/CallItSpring/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7580363", "shop": "shoes"}, "addTags": {"brand": "Call It Spring", "brand:wikidata": "Q7580363", "brand:wikipedia": "en:Call It Spring", "name": "Call It Spring", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Camper": {"name": "Camper", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Camper/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1030922", "shop": "shoes"}, "addTags": {"brand": "Camper", "brand:wikidata": "Q1030922", "brand:wikipedia": "en:Camper (company)", "name": "Camper", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Chaussea": {"name": "Chaussea", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/chaussea.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62082044", "shop": "shoes"}, "addTags": {"brand": "Chaussea", "brand:wikidata": "Q62082044", "name": "Chaussea", "shop": "shoes"}, "countryCodes": ["be", "es", "fr", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Christian Louboutin": {"name": "Christian Louboutin", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23681835", "shop": "shoes"}, "addTags": {"brand": "Christian Louboutin", "brand:wikidata": "Q23681835", "name": "Christian Louboutin", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Clarks": {"name": "Clarks", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/ClarksShoesUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1095857", "shop": "shoes"}, "addTags": {"brand": "Clarks", "brand:wikidata": "Q1095857", "brand:wikipedia": "en:C. & J. Clark", "name": "Clarks", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Cole Haan": {"name": "Cole Haan", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/colehaan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4356504", "shop": "shoes"}, "addTags": {"brand": "Cole Haan", "brand:wikidata": "Q4356504", "brand:wikipedia": "en:Cole Haan", "name": "Cole Haan", "shop": "shoes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Converse": {"name": "Converse", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/converse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q319515", "shop": "shoes"}, "addTags": {"brand": "Converse", "brand:wikidata": "Q319515", "brand:wikipedia": "en:Converse (shoe company)", "name": "Converse", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Courir": {"name": "Courir", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/courircom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3001258", "shop": "shoes"}, "addTags": {"brand": "Courir", "brand:wikidata": "Q3001258", "brand:wikipedia": "fr:Courir (chaîne de magasins)", "name": "Courir", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Crocs": {"name": "Crocs", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Crocs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q926699", "shop": "shoes"}, "addTags": {"brand": "Crocs", "brand:wikidata": "Q926699", "brand:wikipedia": "en:Crocs", "name": "Crocs", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/DSW": {"name": "DSW", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/designerbrands/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5206207", "shop": "shoes"}, "addTags": {"brand": "DSW", "brand:wikidata": "Q5206207", "brand:wikipedia": "en:Designer Brands", "name": "DSW", "shop": "shoes"}, "countryCodes": ["ca", "us"], "terms": ["designer shoe warehouse", "dsw shoes"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Deichmann": {"name": "Deichmann", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Deichmann/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q664543", "shop": "shoes"}, "addTags": {"brand": "Deichmann", "brand:wikidata": "Q664543", "brand:wikipedia": "en:Deichmann SE", "name": "Deichmann", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Din sko": {"name": "Din sko", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/dinsko/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10472869", "shop": "shoes"}, "addTags": {"brand": "Din sko", "brand:wikidata": "Q10472869", "brand:wikipedia": "sv:Din sko", "name": "Din sko", "shop": "shoes"}, "countryCodes": ["no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Dosenbach": {"name": "Dosenbach", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Dosenbach.CH/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2677329", "shop": "shoes"}, "addTags": {"brand": "Dosenbach", "brand:wikidata": "Q2677329", "brand:wikipedia": "de:Dosenbach-Ochsner", "name": "Dosenbach", "shop": "shoes"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Dr. Martens": {"name": "Dr. Martens", "icon": "maki-shoe", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDr.%20Martens%20Logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1126126", "shop": "shoes"}, "addTags": {"brand": "Dr. Martens", "brand:wikidata": "Q1126126", "brand:wikipedia": "en:Dr. Martens", "name": "Dr. Martens", "shop": "shoes"}, "terms": ["doc marten", "doc martens", "doctor marten", "doctor martens", "martens"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Dune London": {"name": "Dune London", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/DuneLondon/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65557112", "shop": "shoes"}, "addTags": {"brand": "Dune London", "brand:wikidata": "Q65557112", "name": "Dune London", "shop": "shoes", "short_name": "Dune"}, "countryCodes": ["ch", "de", "fr", "gb", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Ecco": {"name": "Ecco", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Ecco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1280255", "shop": "shoes"}, "addTags": {"brand": "Ecco", "brand:wikidata": "Q1280255", "brand:wikipedia": "en:ECCO", "name": "Ecco", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/FLO": {"name": "FLO", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/FLOShoesGlobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994802", "shop": "shoes"}, "addTags": {"brand": "FLO", "brand:wikidata": "Q61994802", "name": "FLO", "shop": "shoes"}, "countryCodes": ["al", "tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Famous Footwear": {"name": "Famous Footwear", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/famousfootwear/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5433457", "shop": "shoes"}, "addTags": {"brand": "Famous Footwear", "brand:wikidata": "Q5433457", "brand:wikipedia": "en:Famous Footwear", "name": "Famous Footwear", "shop": "shoes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Foot Locker": {"name": "Foot Locker", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/footlocker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63335", "shop": "shoes"}, "addTags": {"brand": "Foot Locker", "brand:wikidata": "Q63335", "brand:wikipedia": "en:Foot Locker", "name": "Foot Locker", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Foot Solutions": {"name": "Foot Solutions", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/FootSolutions/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q69982369", "shop": "shoes"}, "addTags": {"brand": "Foot Solutions", "brand:wikidata": "Q69982369", "healthcare:speciality": "pedorthist", "name": "Foot Solutions", "shoes": "orthopaedic", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Footaction": {"name": "Footaction", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/footaction/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q71022064", "shop": "shoes"}, "addTags": {"brand": "Footaction", "brand:wikidata": "Q71022064", "name": "Footaction", "shop": "shoes"}, "countryCodes": ["ca", "pr", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/G.H. Bass & Co.": {"name": "G.H. Bass & Co.", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/G.H.Bass/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16993893", "shop": "shoes"}, "addTags": {"brand": "G.H. Bass & Co.", "brand:wikidata": "Q16993893", "brand:wikipedia": "en:G.H. Bass & Co.", "name": "G.H. Bass & Co.", "shop": "shoes"}, "countryCodes": ["gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Gabor": {"name": "Gabor", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/gaborshoesag/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1488760", "shop": "shoes"}, "addTags": {"brand": "Gabor", "brand:wikidata": "Q1488760", "brand:wikipedia": "de:Gabor Shoes", "name": "Gabor", "shop": "shoes"}, "countryCodes": ["de", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Geox": {"name": "Geox", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/GEOX/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q588001", "shop": "shoes"}, "addTags": {"brand": "Geox", "brand:wikidata": "Q588001", "brand:wikipedia": "en:Geox", "name": "Geox", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Görtz": {"name": "Görtz", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/goertz/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1559593", "shop": "shoes"}, "addTags": {"brand": "Görtz", "brand:wikidata": "Q1559593", "brand:wikipedia": "de:Ludwig Görtz", "name": "Görtz", "shop": "shoes"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Havaianas": {"name": "Havaianas", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/HavaianasUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3128675", "shop": "shoes"}, "addTags": {"brand": "Havaianas", "brand:wikidata": "Q3128675", "brand:wikipedia": "en:Havaianas", "name": "Havaianas", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Humanic": {"name": "Humanic", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Humanic/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1636668", "shop": "shoes"}, "addTags": {"brand": "Humanic", "brand:wikidata": "Q1636668", "brand:wikipedia": "en:Humanic", "name": "Humanic", "shop": "shoes"}, "countryCodes": ["at", "cz", "de", "hu", "ro", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Hush Puppies": {"name": "Hush Puppies", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/hushpuppiesglobal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1828588", "shop": "shoes"}, "addTags": {"brand": "Hush Puppies", "brand:wikidata": "Q1828588", "brand:wikipedia": "en:Hush Puppies", "name": "Hush Puppies", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Jimmy Choo": {"name": "Jimmy Choo", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/JimmyChoo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5213855", "shop": "shoes"}, "addTags": {"brand": "Jimmy Choo", "brand:wikidata": "Q5213855", "brand:wikipedia": "en:Jimmy Choo Ltd", "name": "Jimmy Choo", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Johnston & Murphy": {"name": "Johnston & Murphy", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/johnstonmurphy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6268615", "shop": "shoes"}, "addTags": {"brand": "Johnston & Murphy", "brand:wikidata": "Q6268615", "brand:wikipedia": "en:Johnston & Murphy", "name": "Johnston & Murphy", "shop": "shoes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Jones Bootmaker": {"name": "Jones Bootmaker", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/JonesBootmaker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6275139", "shop": "shoes"}, "addTags": {"brand": "Jones Bootmaker", "brand:wikidata": "Q6275139", "brand:wikipedia": "en:Jones Bootmaker", "name": "Jones Bootmaker", "shop": "shoes", "short_name": "Jones"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Journeys": {"name": "Journeys", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Journeys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994838", "shop": "shoes"}, "addTags": {"brand": "Journeys", "brand:wikidata": "Q61994838", "name": "Journeys", "shop": "shoes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Kari": {"name": "Kari", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/shopkari/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q47155680", "shop": "shoes"}, "addTags": {"brand": "Kari", "brand:wikidata": "Q47155680", "brand:wikipedia": "ru:Kari (компания)", "name": "Kari", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Kids Foot Locker": {"name": "Kids Foot Locker", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/footlocker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63335", "shop": "shoes"}, "addTags": {"brand": "Foot Locker", "brand:wikidata": "Q63335", "brand:wikipedia": "en:Foot Locker", "name": "Kids Foot Locker", "shop": "shoes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Kurt Geiger": {"name": "Kurt Geiger", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/kurtgeigerofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17063744", "shop": "shoes"}, "addTags": {"brand": "Kurt Geiger", "brand:wikidata": "Q17063744", "name": "Kurt Geiger", "shop": "shoes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/La Halle aux Chaussures": {"name": "La Halle aux Chaussures", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/lahalle.com/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62390731", "shop": "shoes"}, "addTags": {"brand": "La Halle aux Chaussures", "brand:wikidata": "Q62390731", "name": "La Halle aux Chaussures", "shop": "shoes"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Lady Foot Locker": {"name": "Lady Foot Locker", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/footlocker/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63335", "shop": "shoes"}, "addTags": {"brand": "Foot Locker", "brand:wikidata": "Q63335", "brand:wikipedia": "en:Foot Locker", "name": "Lady Foot Locker", "shop": "shoes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Little Burgundy": {"name": "Little Burgundy", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/littleburgundyshoes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72984664", "shop": "shoes"}, "addTags": {"brand": "Little Burgundy", "brand:wikidata": "Q72984664", "name": "Little Burgundy", "shop": "shoes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Manaco": {"name": "Manaco", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81964197", "shop": "shoes"}, "addTags": {"brand": "Manaco", "brand:wikidata": "Q81964197", "name": "Manaco", "shop": "shoes"}, "countryCodes": ["bo"], "terms": ["calzados manaco"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Manfield (Netherlands)": {"name": "Manfield (Netherlands)", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Manfieldshoes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58328872", "shop": "shoes"}, "addTags": {"brand": "Manfield", "brand:wikidata": "Q58328872", "brand:wikipedia": "nl:Manfield schoenen", "name": "Manfield", "shop": "shoes"}, "countryCodes": ["be", "de", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Marko": {"name": "Marko", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q67861181", "shop": "shoes"}, "addTags": {"brand": "Marko", "brand:wikidata": "Q67861181", "name": "Marko", "name:ru": "Марко", "shop": "shoes"}, "countryCodes": ["by", "ru"], "terms": ["марко"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Mephisto": {"name": "Mephisto", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/mephisto.usa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q822975", "shop": "shoes"}, "addTags": {"brand": "Mephisto", "brand:wikidata": "Q822975", "brand:wikipedia": "fr:Mephisto (chaussure)", "name": "Mephisto", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Merrell": {"name": "Merrell", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/merrell/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1921997", "shop": "shoes"}, "addTags": {"brand": "Merrell", "brand:wikidata": "Q1921997", "brand:wikipedia": "en:Merrell (company)", "name": "Merrell", "shop": "shoes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Minelli": {"name": "Minelli", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Minelli/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994831", "shop": "shoes"}, "addTags": {"brand": "Minelli", "brand:wikidata": "Q61994831", "name": "Minelli", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Moshulu": {"name": "Moshulu", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Moshulu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81555702", "shop": "shoes"}, "addTags": {"brand": "Moshulu", "brand:wikidata": "Q81555702", "name": "Moshulu", "shop": "shoes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Naturalizer": {"name": "Naturalizer", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/naturalizer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65012038", "shop": "shoes"}, "addTags": {"brand": "Naturalizer", "brand:wikidata": "Q65012038", "name": "Naturalizer", "shop": "shoes"}, "countryCodes": ["ca", "cn", "gu", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/New Balance": {"name": "New Balance", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/newbalanceusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q742988", "shop": "shoes"}, "addTags": {"brand": "New Balance", "brand:wikidata": "Q742988", "brand:wikipedia": "en:New Balance", "name": "New Balance", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Office": {"name": "Office", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Officeshoes1/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7079121", "shop": "shoes"}, "addTags": {"brand": "Office", "brand:wikidata": "Q7079121", "brand:wikipedia": "en:Office Holdings", "name": "Office", "shop": "shoes"}, "countryCodes": ["de", "gb", "ie", "ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Payless ShoeSource": {"name": "Payless ShoeSource", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/payless/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7156755", "shop": "shoes"}, "addTags": {"brand": "Payless ShoeSource", "brand:wikidata": "Q7156755", "brand:wikipedia": "en:Payless ShoeSource", "name": "Payless ShoeSource", "shop": "shoes"}, "terms": ["payless"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Quick Schuh": {"name": "Quick Schuh", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/quick.schuh/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2123069", "shop": "shoes"}, "addTags": {"brand": "Quick Schuh", "brand:wikidata": "Q2123069", "brand:wikipedia": "de:Quick Schuh", "name": "Quick Schuh", "shop": "shoes"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/R.M.Williams": {"name": "R.M.Williams", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65042966", "shop": "shoes"}, "addTags": {"brand": "R.M.Williams", "brand:wikidata": "Q65042966", "brand:wikipedia": "en:R. M. Williams (company)", "name": "R.M.Williams", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Rack Room Shoes": {"name": "Rack Room Shoes", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/myrackroomshoes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17109937", "shop": "shoes"}, "addTags": {"brand": "Rack Room Shoes", "brand:wikidata": "Q17109937", "brand:wikipedia": "en:Rack Room Shoes", "name": "Rack Room Shoes", "shop": "shoes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Red Wing": {"name": "Red Wing", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/RedWingShoes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q934096", "shop": "shoes"}, "addTags": {"brand": "Red Wing", "brand:wikidata": "Q934096", "brand:wikipedia": "en:Red Wing Shoes", "name": "Red Wing", "shop": "shoes"}, "countryCodes": ["de", "gb", "nl", "us"], "terms": ["red wing shoes"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Reno": {"name": "Reno", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/RENO/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2144204", "shop": "shoes"}, "addTags": {"brand": "Reno", "brand:wikidata": "Q2144204", "brand:wikipedia": "de:Reno (Schuhhandel)", "name": "Reno", "shop": "shoes"}, "countryCodes": ["at", "ch", "de", "hu", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Rieker": {"name": "Rieker", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/riekerofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2152193", "shop": "shoes"}, "addTags": {"brand": "Rieker", "brand:wikidata": "Q2152193", "brand:wikipedia": "en:Rieker Shoes", "name": "Rieker", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Rockport": {"name": "Rockport", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Rockport/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4048384", "shop": "shoes"}, "addTags": {"brand": "Rockport", "brand:wikidata": "Q4048384", "brand:wikipedia": "en:Rockport (company)", "name": "Rockport", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Runners Point": {"name": "Runners Point", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/RunnersPoint84/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2176418", "shop": "shoes"}, "addTags": {"brand": "Runners Point", "brand:wikidata": "Q2176418", "brand:wikipedia": "de:Runners Point", "name": "Runners Point", "shop": "shoes"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Salamander": {"name": "Salamander", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/SalamanderCzech/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q878354", "shop": "shoes"}, "addTags": {"brand": "Salamander", "brand:wikidata": "Q878354", "brand:wikipedia": "de:Salamander (Schuhe)", "name": "Salamander", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Salvatore Ferragamo": {"name": "Salvatore Ferragamo", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/SalvatoreFerragamo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3946053", "shop": "shoes"}, "addTags": {"brand": "Salvatore Ferragamo", "brand:wikidata": "Q3946053", "brand:wikipedia": "en:Salvatore Ferragamo S.p.A.", "name": "Salvatore Ferragamo", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/San Marina": {"name": "San Marina", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/sanmarina/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3471558", "shop": "shoes"}, "addTags": {"brand": "San Marina", "brand:wikidata": "Q3471558", "brand:wikipedia": "fr:San Marina", "name": "San Marina", "shop": "shoes"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Scapino": {"name": "Scapino", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/ScapinoNL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2298792", "shop": "shoes"}, "addTags": {"brand": "Scapino", "brand:wikidata": "Q2298792", "brand:wikipedia": "nl:Scapino (winkelketen)", "name": "Scapino", "shop": "shoes"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Schuh": {"name": "Schuh", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/schuhshoes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7432952", "shop": "shoes"}, "addTags": {"brand": "Schuh", "brand:wikidata": "Q7432952", "brand:wikipedia": "en:Schuh", "name": "Schuh", "shop": "shoes"}, "countryCodes": ["de", "gb", "gg", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Schuh-Mann": {"name": "Schuh-Mann", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/schuhmann.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66133314", "shop": "shoes"}, "addTags": {"brand": "Schuh-Mann", "brand:wikidata": "Q66133314", "name": "Schuh-Mann", "shop": "shoes"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Schuhkay": {"name": "Schuhkay", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/134116200015210/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66009415", "shop": "shoes"}, "addTags": {"brand": "Schuhkay", "brand:wikidata": "Q66009415", "name": "Schuhkay", "shop": "shoes"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Shoe Carnival": {"name": "Shoe Carnival", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/ShoeCarnival/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7500007", "shop": "shoes"}, "addTags": {"brand": "Shoe Carnival", "brand:wikidata": "Q7500007", "brand:wikipedia": "en:Shoe Carnival", "name": "Shoe Carnival", "shop": "shoes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Shoe Show": {"name": "Shoe Show", "icon": "maki-shoe", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7500015", "shop": "shoes"}, "addTags": {"brand": "Shoe Show", "brand:wikidata": "Q7500015", "brand:wikipedia": "en:Shoe Show", "name": "Shoe Show", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Shoe Zone": {"name": "Shoe Zone", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/shoezone/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7500016", "shop": "shoes"}, "addTags": {"brand": "Shoe Zone", "brand:wikidata": "Q7500016", "brand:wikipedia": "en:Shoe Zone", "name": "Shoe Zone", "shop": "shoes"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Siemes Schuhcenter": {"name": "Siemes Schuhcenter", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Schuhcenter.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2800720", "shop": "shoes"}, "addTags": {"brand": "Siemes Schuhcenter", "brand:wikidata": "Q2800720", "brand:wikipedia": "de:Siemes (Unternehmen)", "name": "Siemes Schuhcenter", "shop": "shoes"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Skechers": {"name": "Skechers", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/SKECHERS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2945643", "shop": "shoes"}, "addTags": {"brand": "Skechers", "brand:wikidata": "Q2945643", "brand:wikipedia": "en:Skechers", "name": "Skechers", "shop": "shoes"}, "terms": ["sketchers"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Snipes": {"name": "Snipes", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Snipes.com/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q42306166", "shop": "shoes"}, "addTags": {"brand": "Snipes", "brand:wikidata": "Q42306166", "brand:wikipedia": "de:Snipes (Unternehmen)", "name": "Snipes", "shop": "shoes"}, "countryCodes": ["at", "ch", "de", "es", "fr", "it", "nl", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Soft Moc": {"name": "Soft Moc", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/softmocshoes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65012391", "shop": "shoes"}, "addTags": {"brand": "Soft Moc", "brand:wikidata": "Q65012391", "name": "Soft Moc", "shop": "shoes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Sperry": {"name": "Sperry", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/sperry/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7576421", "shop": "shoes"}, "addTags": {"brand": "Sperry", "brand:wikidata": "Q7576421", "brand:wikipedia": "en:Sperry Top-Sider", "name": "Sperry", "shop": "shoes"}, "countryCodes": ["us"], "terms": ["sperry top sider"], "matchScore": 2, "suggestion": true}, - "shop/shoes/Steve Madden": {"name": "Steve Madden", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/SteveMaddenShoes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25352034", "shop": "shoes"}, "addTags": {"brand": "Steve Madden", "brand:wikidata": "Q25352034", "brand:wikipedia": "en:Steve Madden (company)", "name": "Steve Madden", "shop": "shoes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Stride Rite": {"name": "Stride Rite", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/striderite/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2356171", "shop": "shoes"}, "addTags": {"brand": "Stride Rite", "brand:wikidata": "Q2356171", "brand:wikipedia": "en:Stride Rite Corporation", "name": "Stride Rite", "shop": "shoes"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Stuart Weitzman": {"name": "Stuart Weitzman", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/StuartWeitzman/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q75244763", "shop": "shoes"}, "addTags": {"brand": "Stuart Weitzman", "brand:wikidata": "Q75244763", "name": "Stuart Weitzman", "shop": "shoes"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Tamaris": {"name": "Tamaris", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/tamarisinternational/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994827", "shop": "shoes"}, "addTags": {"brand": "Tamaris", "brand:wikidata": "Q61994827", "name": "Tamaris", "shop": "shoes"}, "countryCodes": ["at", "be", "de", "fr", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/The Shoe Company": {"name": "The Shoe Company", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/theshoeco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7763892", "shop": "shoes"}, "addTags": {"brand": "The Shoe Company", "brand:wikidata": "Q7763892", "brand:wikipedia": "en:The Shoe Company", "name": "The Shoe Company", "shop": "shoes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/The Walking Company": {"name": "The Walking Company", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/TheWalkingCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30716262", "shop": "shoes"}, "addTags": {"alt_name": "Walking Company", "brand": "The Walking Company", "brand:wikidata": "Q30716262", "brand:wikipedia": "en:The Walking Company", "name": "The Walking Company", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/UGG": {"name": "UGG", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/UGG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1138480", "shop": "shoes"}, "addTags": {"brand": "UGG", "brand:wikidata": "Q1138480", "brand:wikipedia": "en:UGG (brand)", "name": "UGG", "shop": "shoes"}, "countryCodes": ["au", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Vans": {"name": "Vans", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/VANS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1135366", "shop": "shoes"}, "addTags": {"brand": "Vans", "brand:wikidata": "Q1135366", "brand:wikipedia": "en:Vans", "name": "Vans", "shop": "shoes"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Walking on a Cloud": {"name": "Walking on a Cloud", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/walkingonacloud/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65012662", "shop": "shoes"}, "addTags": {"brand": "Walking on a Cloud", "brand:wikidata": "Q65012662", "name": "Walking on a Cloud", "shop": "shoes"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/tReds": {"name": "tReds", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/tRedsOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81647338", "shop": "shoes"}, "addTags": {"brand": "tReds", "brand:wikidata": "Q81647338", "name": "tReds", "shop": "shoes"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/vanHaren": {"name": "vanHaren", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/vanharenschoenen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62390668", "shop": "shoes"}, "addTags": {"brand": "vanHaren", "brand:wikidata": "Q62390668", "name": "vanHaren", "shop": "shoes"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Éram": {"name": "Éram", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/eram.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16684192", "shop": "shoes"}, "addTags": {"brand": "Éram", "brand:wikidata": "Q16684192", "brand:wikipedia": "fr:Éram", "name": "Éram", "shop": "shoes"}, "countryCodes": ["be", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/ЦентрОбувь": {"name": "ЦентрОбувь", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/Centrobuv/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4504072", "shop": "shoes"}, "addTags": {"brand": "ЦентрОбувь", "brand:wikidata": "Q4504072", "brand:wikipedia": "ru:ЦентрОбувь", "name": "ЦентрОбувь", "shop": "shoes"}, "countryCodes": ["by", "ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/Юничел": {"name": "Юничел", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/unichel.shoes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62390569", "shop": "shoes"}, "addTags": {"brand": "Юничел", "brand:wikidata": "Q62390569", "name": "Юничел", "shop": "shoes"}, "countryCodes": ["kz", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/つるや": {"name": "つるや", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/tsuruya.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11272578", "shop": "shoes"}, "addTags": {"brand": "つるや", "brand:en": "Tsuruya", "brand:ja": "つるや", "brand:wikidata": "Q11272578", "brand:wikipedia": "ja:つるや (靴屋)", "name": "つるや", "name:en": "Tsuruya", "name:ja": "つるや", "shop": "shoes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/shoes/東京靴流通センター": {"name": "東京靴流通センター", "icon": "maki-shoe", "imageURL": "https://graph.facebook.com/chiyodafanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11318515", "shop": "shoes"}, "addTags": {"brand": "東京靴流通センター", "brand:en": "Tokyo Shoes Retailing Center", "brand:ja": "東京靴流通センター", "brand:wikidata": "Q11318515", "brand:wikipedia": "ja:チヨダ", "name": "東京靴流通センター", "name:en": "Tokyo Shoes Retailing Center", "name:ja": "東京靴流通センター", "shop": "shoes"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/spices/Penzeys Spices": {"name": "Penzeys Spices", "icon": "temaki-spice_bottle", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7165435", "shop": "spices"}, "addTags": {"brand": "Penzeys Spices", "brand:wikidata": "Q7165435", "brand:wikipedia": "en:Penzeys Spices", "name": "Penzeys Spices", "shop": "spices"}, "countryCodes": ["us"], "terms": ["penzeys"], "matchScore": 2, "suggestion": true}, - "shop/sports/Academy Sports + Outdoors": {"name": "Academy Sports + Outdoors", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/Academy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4671380", "shop": "sports"}, "addTags": {"brand": "Academy Sports + Outdoors", "brand:wikidata": "Q4671380", "brand:wikipedia": "en:Academy Sports + Outdoors", "name": "Academy Sports + Outdoors", "shop": "sports"}, "countryCodes": ["us"], "terms": ["academy", "academy sports and outdoors"], "matchScore": 2, "suggestion": true}, - "shop/sports/Adidas": {"name": "Adidas", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/adidasUK/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3895", "shop": "sports"}, "addTags": {"brand": "Adidas", "brand:wikidata": "Q3895", "brand:wikipedia": "en:Adidas", "name": "Adidas", "shop": "sports"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Aktiesport": {"name": "Aktiesport", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/aktiesport/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57546889", "shop": "sports"}, "addTags": {"brand": "Aktiesport", "brand:wikidata": "Q57546889", "name": "Aktiesport", "shop": "sports"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/American Golf": {"name": "American Golf", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/americangolf/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62657494", "shop": "sports"}, "addTags": {"brand": "American Golf", "brand:wikidata": "Q62657494", "name": "American Golf", "shop": "sports", "sport": "golf"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Big 5 Sporting Goods": {"name": "Big 5 Sporting Goods", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/Big5SportingGoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4904902", "shop": "sports"}, "addTags": {"brand": "Big 5 Sporting Goods", "brand:wikidata": "Q4904902", "brand:wikipedia": "en:Big 5 Sporting Goods", "name": "Big 5 Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "terms": ["big 5"], "matchScore": 2, "suggestion": true}, - "shop/sports/Centauro": {"name": "Centauro", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/centauroesporte/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28679561", "shop": "sports"}, "addTags": {"brand": "Centauro", "brand:wikidata": "Q28679561", "brand:wikipedia": "pt:Lojas Centauro", "name": "Centauro", "shop": "sports"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Champs Sports": {"name": "Champs Sports", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/champssports/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2955924", "shop": "sports"}, "addTags": {"brand": "Champs Sports", "brand:wikidata": "Q2955924", "brand:wikipedia": "en:Champs Sports", "name": "Champs Sports", "shop": "sports"}, "countryCodes": ["ca", "pr", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Decathlon": {"name": "Decathlon", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/DecathlonSG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q509349", "shop": "sports"}, "addTags": {"brand": "Decathlon", "brand:wikidata": "Q509349", "brand:wikipedia": "en:Decathlon Group", "name": "Decathlon", "shop": "sports"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Dick's Sporting Goods": {"name": "Dick's Sporting Goods", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/dickssportinggoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5272601", "shop": "sports"}, "addTags": {"brand": "Dick's Sporting Goods", "brand:wikidata": "Q5272601", "brand:wikipedia": "en:Dick's Sporting Goods", "name": "Dick's Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "terms": ["dicks"], "matchScore": 2, "suggestion": true}, - "shop/sports/Finish Line": {"name": "Finish Line", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/finishline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5450341", "shop": "sports"}, "addTags": {"brand": "Finish Line", "brand:wikidata": "Q5450341", "brand:wikipedia": "en:Finish Line, Inc.", "name": "Finish Line", "shop": "sports"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/GO Sport": {"name": "GO Sport", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48746237", "shop": "sports"}, "addTags": {"brand": "GO Sport", "brand:wikidata": "Q48746237", "brand:wikipedia": "fr:GO Sport", "name": "GO Sport", "shop": "sports"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Golf Galaxy": {"name": "Golf Galaxy", "icon": "fas-futbol", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGolf%20Galaxy%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q69364358", "shop": "sports"}, "addTags": {"brand": "Golf Galaxy", "brand:wikidata": "Q69364358", "name": "Golf Galaxy", "shop": "sports", "sport": "golf"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Hervis": {"name": "Hervis", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/hervissports.at/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1614816", "shop": "sports"}, "addTags": {"brand": "Hervis", "brand:wikidata": "Q1614816", "brand:wikipedia": "de:Hervis", "name": "Hervis", "shop": "sports"}, "countryCodes": ["at", "cz", "de", "hr", "hu", "ro", "si"], "terms": ["hervis sport", "hervis sports"], "matchScore": 2, "suggestion": true}, - "shop/sports/Hibbett Sports": {"name": "Hibbett Sports", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/HibbettSports/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5750671", "shop": "sports"}, "addTags": {"brand": "Hibbett Sports", "brand:wikidata": "Q5750671", "brand:wikipedia": "en:Hibbett Sports", "name": "Hibbett Sports", "shop": "sports"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Intersport": {"name": "Intersport", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/intersport/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q666888", "shop": "sports"}, "addTags": {"brand": "Intersport", "brand:wikidata": "Q666888", "brand:wikipedia": "en:Intersport", "name": "Intersport", "shop": "sports"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/JD Sports": {"name": "JD Sports", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/2140630076185020/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6108019", "shop": "sports"}, "addTags": {"brand": "JD Sports", "brand:wikidata": "Q6108019", "brand:wikipedia": "en:JD Sports", "name": "JD Sports", "shop": "sports"}, "countryCodes": ["de", "es", "fr", "gb", "ie", "nl"], "terms": ["jd"], "matchScore": 2, "suggestion": true}, - "shop/sports/Marathon Sports": {"name": "Marathon Sports", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/marathonsports/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3027516", "shop": "sports"}, "addTags": {"brand": "Marathon Sports", "brand:wikidata": "Q3027516", "brand:wikipedia": "es:Marathon Sports", "name": "Marathon Sports", "shop": "sports"}, "countryCodes": ["bo", "ec", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Martes Sport": {"name": "Martes Sport", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/sklepmartes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62073490", "shop": "sports"}, "addTags": {"brand": "Martes Sport", "brand:wikidata": "Q62073490", "name": "Martes Sport", "shop": "sports"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Modell's Sporting Goods": {"name": "Modell's Sporting Goods", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/modells/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3317844", "shop": "sports"}, "addTags": {"brand": "Modell's Sporting Goods", "brand:wikidata": "Q3317844", "brand:wikipedia": "en:Modell's Sporting Goods", "name": "Modell's Sporting Goods", "shop": "sports"}, "countryCodes": ["us"], "terms": ["modells"], "matchScore": 2, "suggestion": true}, - "shop/sports/Peloton": {"name": "Peloton", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/onepeloton/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56276186", "shop": "sports"}, "addTags": {"brand": "Peloton", "brand:wikidata": "Q56276186", "brand:wikipedia": "en:Peloton (company)", "name": "Peloton", "shop": "sports"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Planeta Sport": {"name": "Planeta Sport", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/planetasportrs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72193528", "shop": "sports"}, "addTags": {"brand": "Planeta Sport", "brand:en": "Planeta Sport", "brand:rs": "Planeta Sport", "brand:wikidata": "Q72193528", "name": "Planeta Sport", "shop": "sports"}, "countryCodes": ["rs"], "terms": ["planeta"], "matchScore": 2, "suggestion": true}, - "shop/sports/Play It Again Sports": {"name": "Play It Again Sports", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/playitagainsports/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7203029", "shop": "sports"}, "addTags": {"brand": "Play It Again Sports", "brand:wikidata": "Q7203029", "brand:wikipedia": "en:Play It Again Sports", "name": "Play It Again Sports", "shop": "sports"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Rebel": {"name": "Rebel", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/RebelSport/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18636397", "shop": "sports"}, "addTags": {"brand": "Rebel", "brand:wikidata": "Q18636397", "brand:wikipedia": "en:Rebel (company)", "name": "Rebel", "shop": "sports"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Sport 2000": {"name": "Sport 2000", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/SPORT2000France/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q262394", "shop": "sports"}, "addTags": {"brand": "Sport 2000", "brand:wikidata": "Q262394", "brand:wikipedia": "de:Sport 2000", "name": "Sport 2000", "shop": "sports"}, "countryCodes": ["at", "de", "fr", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Sport Chek": {"name": "Sport Chek", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/SportChekOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3494037", "shop": "sports"}, "addTags": {"brand": "Sport Chek", "brand:wikidata": "Q3494037", "brand:wikipedia": "en:Sport Chek", "name": "Sport Chek", "shop": "sports"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Sport Zone": {"name": "Sport Zone", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/sportzonept/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18485899", "shop": "sports"}, "addTags": {"brand": "Sport Zone", "brand:wikidata": "Q18485899", "brand:wikipedia": "pt:Sport Zone", "name": "Sport Zone", "shop": "sports"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Sporting Life": {"name": "Sporting Life", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/SportingLifeCan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7579583", "shop": "sports"}, "addTags": {"brand": "Sporting Life", "brand:wikidata": "Q7579583", "brand:wikipedia": "en:Sporting Life (retailer)", "name": "Sporting Life", "shop": "sports"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Sportisimo": {"name": "Sportisimo", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/1463426373966592/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q54974273", "shop": "sports"}, "addTags": {"brand": "Sportisimo", "brand:wikidata": "Q54974273", "name": "Sportisimo", "shop": "sports"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Sports Authority": {"name": "Sports Authority", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/647496242080026624/NKwGIEgb_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7579688", "shop": "sports"}, "addTags": {"brand": "Sports Authority", "brand:wikidata": "Q7579688", "brand:wikipedia": "en:Sports Authority", "name": "Sports Authority", "shop": "sports"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Sports Direct": {"name": "Sports Direct", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/SportsDirect/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7579661", "shop": "sports"}, "addTags": {"brand": "Sports Direct", "brand:wikidata": "Q7579661", "brand:wikipedia": "en:SportsDirect.com", "name": "Sports Direct", "shop": "sports"}, "terms": ["sportsdirect.com"], "matchScore": 2, "suggestion": true}, - "shop/sports/Sprinter": {"name": "Sprinter", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/718009864681885696/h9_BQE32_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6133465", "shop": "sports"}, "addTags": {"brand": "Sprinter", "brand:wikidata": "Q6133465", "brand:wikipedia": "es:Sprinter (tienda)", "name": "Sprinter", "shop": "sports"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Stadium": {"name": "Stadium", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/stadium.finland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4993863", "shop": "sports"}, "addTags": {"brand": "Stadium", "brand:wikidata": "Q4993863", "brand:wikipedia": "sv:Stadium (detaljhandelskedja)", "name": "Stadium", "shop": "sports"}, "countryCodes": ["de", "dk", "fi", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/XXL": {"name": "XXL", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/xxlnorge/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12010840", "shop": "sports"}, "addTags": {"brand": "XXL", "brand:wikidata": "Q12010840", "brand:wikipedia": "no:XXL", "name": "XXL", "shop": "sports"}, "countryCodes": ["fi", "no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Декатлон": {"name": "Декатлон", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/DecathlonSG/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q509349", "shop": "sports"}, "addTags": {"brand": "Декатлон", "brand:en": "Decathlon", "brand:ru": "Декатлон", "brand:wikidata": "Q509349", "brand:wikipedia": "ru:Decathlon", "name": "Декатлон", "name:en": "Decathlon", "name:ru": "Декатлон", "shop": "sports"}, "countryCodes": ["bg", "ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/Спортмастер": {"name": "Спортмастер", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/sportmaster.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4438176", "shop": "sports"}, "addTags": {"brand": "Спортмастер", "brand:en": "Sportmaster", "brand:ru": "Спортмастер", "brand:wikidata": "Q4438176", "brand:wikipedia": "ru:Спортмастер", "name": "Спортмастер", "name:en": "Sportmaster", "name:ru": "Спортмастер", "shop": "sports"}, "countryCodes": ["by", "kz", "ru", "ua"], "terms": ["спортмастер гипер"], "matchScore": 2, "suggestion": true}, - "shop/sports/ゴルフパートナー": {"name": "ゴルフパートナー", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/890531445592150016/h9BKD3oT_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11303729", "shop": "sports"}, "addTags": {"brand": "ゴルフパートナー", "brand:en": "Golf Partner", "brand:ja": "ゴルフパートナー", "brand:wikidata": "Q11303729", "brand:wikipedia": "ja:ゴルフパートナー", "name": "ゴルフパートナー", "name:en": "Golf Partner", "name:ja": "ゴルフパートナー", "shop": "sports", "sport": "golf"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/ゴルフ・ドゥ": {"name": "ゴルフ・ドゥ", "icon": "fas-futbol", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11303734", "shop": "sports"}, "addTags": {"brand": "ゴルフ・ドゥ", "brand:en": "Golf・Do", "brand:ja": "ゴルフ・ドゥ", "brand:wikidata": "Q11303734", "brand:wikipedia": "ja:ゴルフ・ドゥ", "name": "ゴルフ・ドゥ", "name:en": "Golf・Do", "name:ja": "ゴルフ・ドゥ", "shop": "sports", "sport": "golf"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/スポーツオーソリティ": {"name": "スポーツオーソリティ", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/647496242080026624/NKwGIEgb_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7579688", "shop": "sports"}, "addTags": {"brand": "スポーツオーソリティ", "brand:en": "Sports Authority", "brand:ja": "スポーツオーソリティ", "brand:wikidata": "Q7579688", "brand:wikipedia": "ja:スポーツオーソリティ", "name": "スポーツオーソリティ", "name:en": "Sports Authority", "name:ja": "スポーツオーソリティ", "shop": "sports"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/sports/スポーツデポ": {"name": "スポーツデポ", "icon": "fas-futbol", "imageURL": "https://pbs.twimg.com/profile_images/701601175464882176/dvEyPLdV_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11313050", "shop": "sports"}, "addTags": {"brand": "スポーツデポ", "brand:en": "Sports Depo", "brand:ja": "スポーツデポ", "brand:wikidata": "Q11313050", "brand:wikipedia": "ja:スポーツDEPO", "name": "スポーツデポ", "name:en": "Sports Depo", "name:ja": "スポーツデポ", "shop": "sports"}, "countryCodes": ["jp"], "terms": ["スポーツdepo"], "matchScore": 2, "suggestion": true}, - "shop/sports/スーパースポーツゼビオ": {"name": "スーパースポーツゼビオ", "icon": "fas-futbol", "imageURL": "https://graph.facebook.com/yourrepo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3108542", "shop": "sports"}, "addTags": {"brand": "スーパースポーツゼビオ", "brand:en": "Super Sports Xebio", "brand:ja": "スーパースポーツゼビオ", "brand:wikidata": "Q3108542", "brand:wikipedia": "ja:ゼビオホールディングス", "name": "スーパースポーツゼビオ", "name:en": "Super Sports Xebio", "name:ja": "スーパースポーツゼビオ", "shop": "sports"}, "countryCodes": ["jp"], "terms": ["ゼビオ"], "matchScore": 2, "suggestion": true}, - "shop/stationery/Bureau Vallée": {"name": "Bureau Vallée", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/BureauVallee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18385014", "shop": "stationery"}, "addTags": {"brand": "Bureau Vallée", "brand:wikidata": "Q18385014", "brand:wikipedia": "fr:Bureau Vallée", "name": "Bureau Vallée", "shop": "stationery"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Koh-i-Noor": {"name": "Koh-i-Noor", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/KohinoorHardtmuthOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q698032", "shop": "stationery"}, "addTags": {"brand": "Koh-i-Noor", "brand:wikidata": "Q698032", "brand:wikipedia": "en:Koh-i-Noor Hardtmuth", "name": "Koh-i-Noor", "official_name": "Koh-i-Noor Hardtmuth", "shop": "stationery"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/McPaper": {"name": "McPaper", "icon": "fas-paperclip", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1915329", "shop": "stationery"}, "addTags": {"brand": "McPaper", "brand:wikidata": "Q1915329", "brand:wikipedia": "de:McPaper", "name": "McPaper", "shop": "stationery"}, "countryCodes": ["ch", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Office Depot": {"name": "Office Depot", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/OfficeDepot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1337797", "shop": "stationery"}, "addTags": {"brand": "Office Depot", "brand:wikidata": "Q1337797", "brand:wikipedia": "en:Office Depot", "name": "Office Depot", "shop": "stationery"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/OfficeMax": {"name": "OfficeMax", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/OfficeDepot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7079111", "shop": "stationery"}, "addTags": {"brand": "OfficeMax", "brand:wikidata": "Q7079111", "brand:wikipedia": "en:OfficeMax", "name": "OfficeMax", "shop": "stationery"}, "countryCodes": ["mx", "nz", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Officeworks": {"name": "Officeworks", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/officeworks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7079486", "shop": "stationery"}, "addTags": {"brand": "Officeworks", "brand:wikidata": "Q7079486", "brand:wikipedia": "en:Officeworks", "name": "Officeworks", "shop": "stationery"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Pagro": {"name": "Pagro", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/pagro.at/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57550022", "shop": "stationery"}, "addTags": {"brand": "Pagro", "brand:wikidata": "Q57550022", "name": "Pagro", "shop": "stationery"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Paper Source": {"name": "Paper Source", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/PaperSource/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25000269", "shop": "stationery"}, "addTags": {"brand": "Paper Source", "brand:wikidata": "Q25000269", "brand:wikipedia": "en:Paper Source", "name": "Paper Source", "shop": "stationery"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Paperchase": {"name": "Paperchase", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/paperchase/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7132739", "shop": "stationery"}, "addTags": {"brand": "Paperchase", "brand:wikidata": "Q7132739", "brand:wikipedia": "en:Paperchase", "name": "Paperchase", "shop": "stationery"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Ryman": {"name": "Ryman", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/ryman/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7385188", "shop": "stationery"}, "addTags": {"brand": "Ryman", "brand:wikidata": "Q7385188", "brand:wikipedia": "en:Ryman", "name": "Ryman", "shop": "stationery"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Smiggle": {"name": "Smiggle", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/smiggle/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7544536", "shop": "stationery"}, "addTags": {"brand": "Smiggle", "brand:wikidata": "Q7544536", "name": "Smiggle", "shop": "stationery"}, "countryCodes": ["at", "gb", "hk", "ie", "my", "nz", "sg"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Staples": {"name": "Staples", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/staples/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q785943", "shop": "stationery"}, "addTags": {"brand": "Staples", "brand:wikidata": "Q785943", "brand:wikipedia": "en:Staples Inc.", "name": "Staples", "shop": "stationery"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Ševt": {"name": "Ševt", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/sevtpapiernictvo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15980348", "shop": "stationery"}, "addTags": {"brand": "Ševt", "brand:wikidata": "Q15980348", "brand:wikipedia": "sk:ŠEVT", "name": "Ševt", "shop": "stationery"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/stationery/Комус": {"name": "Комус", "icon": "fas-paperclip", "imageURL": "https://graph.facebook.com/komusclub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4230314", "shop": "stationery"}, "addTags": {"brand": "Комус", "brand:en": "Komus", "brand:wikidata": "Q4230314", "brand:wikipedia": "en:Komus (company)", "name": "Комус", "name:en": "Komus", "shop": "stationery"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/storage_rental/Extra Space Storage": {"name": "Extra Space Storage", "icon": "temaki-storage_rental", "imageURL": "https://graph.facebook.com/extraspace/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5422162", "shop": "storage_rental"}, "addTags": {"brand": "Extra Space Storage", "brand:wikidata": "Q5422162", "brand:wikipedia": "en:Extra Space Storage", "name": "Extra Space Storage", "shop": "storage_rental"}, "countryCodes": ["us"], "terms": ["extra space"], "matchScore": 2, "suggestion": true}, - "shop/storage_rental/Public Storage": {"name": "Public Storage", "icon": "temaki-storage_rental", "imageURL": "https://graph.facebook.com/PublicStorage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1156045", "shop": "storage_rental"}, "addTags": {"brand": "Public Storage", "brand:wikidata": "Q1156045", "brand:wikipedia": "en:Public Storage", "name": "Public Storage", "shop": "storage_rental"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/storage_rental/U-Haul": {"name": "U-Haul", "icon": "temaki-storage_rental", "imageURL": "https://graph.facebook.com/uhaul/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7862902", "shop": "storage_rental"}, "addTags": {"brand": "U-Haul", "brand:wikidata": "Q7862902", "brand:wikipedia": "en:U-Haul", "name": "U-Haul", "shop": "storage_rental"}, "countryCodes": ["ca", "us"], "terms": ["uhaul neighborhood dealer"], "matchScore": 2, "suggestion": true}, - "shop/storage_rental/UK Storage Company": {"name": "UK Storage Company", "icon": "temaki-storage_rental", "imageURL": "https://graph.facebook.com/ukstoragecompanywestonsupermare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87411468", "shop": "storage_rental"}, "addTags": {"brand": "UK Storage Company", "brand:wikidata": "Q87411468", "name": "UK Storage Company", "shop": "storage_rental"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/8 à Huit": {"name": "8 à Huit", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/fashion8a8/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2818601", "shop": "supermarket"}, "addTags": {"brand": "8 à Huit", "brand:wikidata": "Q2818601", "brand:wikipedia": "fr:8 à Huit", "name": "8 à Huit", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/99 Ranch Market": {"name": "99 Ranch Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/99RanchMarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4646307", "shop": "supermarket"}, "addTags": {"brand": "99 Ranch Market", "brand:wikidata": "Q4646307", "brand:wikipedia": "en:99 Ranch Market", "cuisine": "asian", "name": "99 Ranch Market", "name:en": "99 Ranch Market", "name:zh-Hans": "大华超级市场", "name:zh-Hant": "大華超級市場", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["99 ranch", "ranch 99"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/A&O": {"name": "A&O", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/www.aeo.it/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3600279", "shop": "supermarket"}, "addTags": {"brand": "A&O", "brand:wikidata": "Q3600279", "brand:wikipedia": "it:A&O", "name": "A&O", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/A101": {"name": "A101", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/a101iletisim/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6034496", "shop": "supermarket"}, "addTags": {"brand": "A101", "brand:wikidata": "Q6034496", "brand:wikipedia": "tr:A101", "name": "A101", "shop": "supermarket"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/AD Delhaize": {"name": "AD Delhaize", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Delhaize/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1184173", "shop": "supermarket"}, "addTags": {"brand": "AD Delhaize", "brand:wikidata": "Q1184173", "brand:wikipedia": "fr:Delhaize", "name": "AD Delhaize", "shop": "supermarket"}, "countryCodes": ["be", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ADEG": {"name": "ADEG", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mein.adeg/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q290211", "shop": "supermarket"}, "addTags": {"brand": "ADEG", "brand:wikidata": "Q290211", "brand:wikipedia": "de:ADEG Österreich", "name": "ADEG", "shop": "supermarket"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Acme": {"name": "Acme", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/acmemarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q341975", "shop": "supermarket"}, "addTags": {"brand": "Acme", "brand:wikidata": "Q341975", "brand:wikipedia": "en:Acme Markets", "name": "Acme", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Ahorramás": {"name": "Ahorramás", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Ahorramas/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58221883", "shop": "supermarket"}, "addTags": {"brand": "Ahorramás", "brand:wikidata": "Q58221883", "name": "Ahorramás", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Albert": {"name": "Albert", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/albertceskarepublika/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9144241", "shop": "supermarket"}, "addTags": {"brand": "Albert", "brand:wikidata": "Q9144241", "brand:wikipedia": "cs:Albert (obchodní řetězec)", "name": "Albert", "shop": "supermarket"}, "countryCodes": ["cz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Albert Heijn": {"name": "Albert Heijn", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/albertheijn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1653985", "shop": "supermarket"}, "addTags": {"brand": "Albert Heijn", "brand:wikidata": "Q1653985", "brand:wikipedia": "nl:Albert Heijn (supermarkt)", "name": "Albert Heijn", "shop": "supermarket"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Albert Heijn XL": {"name": "Albert Heijn XL", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q78163765", "shop": "supermarket"}, "addTags": {"brand": "Albert Heijn XL", "brand:wikidata": "Q78163765", "brand:wikipedia": "nl:Albert Heijn (supermarkt)", "name": "Albert Heijn XL", "shop": "supermarket"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Albertsons": {"name": "Albertsons", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Albertsons/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4712282", "shop": "supermarket"}, "addTags": {"brand": "Albertsons", "brand:wikidata": "Q4712282", "brand:wikipedia": "en:Albertsons", "name": "Albertsons", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["albertsons supermarket"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Alcampo": {"name": "Alcampo", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1201778971089739776/TL0LpeEQ_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2832081", "shop": "supermarket"}, "addTags": {"brand": "Alcampo", "brand:wikidata": "Q2832081", "brand:wikipedia": "es:Alcampo", "name": "Alcampo", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Aldi": {"name": "Aldi", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ALDI.USA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q125054", "shop": "supermarket"}, "addTags": {"brand": "Aldi", "brand:wikidata": "Q125054", "brand:wikipedia": "en:Aldi", "name": "Aldi", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Aldi Nord": {"name": "Aldi Nord", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/154533341244676/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q41171373", "shop": "supermarket"}, "addTags": {"brand": "Aldi Nord", "brand:wikidata": "Q41171373", "brand:wikipedia": "en:Aldi", "name": "Aldi Nord", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Aldi Süd": {"name": "Aldi Süd", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ALDI.SUED/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q41171672", "shop": "supermarket"}, "addTags": {"brand": "Aldi Süd", "brand:wikidata": "Q41171672", "brand:wikipedia": "en:Aldi", "name": "Aldi Süd", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Alfamart": {"name": "Alfamart", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/alfamartku/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23745600", "shop": "supermarket"}, "addTags": {"brand": "Alfamart", "brand:wikidata": "Q23745600", "brand:wikipedia": "en:Alfamart", "name": "Alfamart", "shop": "supermarket"}, "countryCodes": ["id", "ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Alimerka": {"name": "Alimerka", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/alimerka.es/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16482738", "shop": "supermarket"}, "addTags": {"brand": "Alimerka", "brand:wikidata": "Q16482738", "brand:wikipedia": "es:Alimerka", "name": "Alimerka", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Alnatura": {"name": "Alnatura", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Alnatura/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q876811", "shop": "supermarket"}, "addTags": {"brand": "Alnatura", "brand:wikidata": "Q876811", "brand:wikipedia": "en:Alnatura", "name": "Alnatura", "organic": "only", "shop": "supermarket"}, "countryCodes": ["ch", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Alvo": {"name": "Alvo", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/alvopeer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16068936", "shop": "supermarket"}, "addTags": {"brand": "Alvo", "brand:wikidata": "Q16068936", "brand:wikipedia": "nl:Alvo (supermarkt)", "name": "Alvo", "shop": "supermarket"}, "countryCodes": ["be", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Amigo": {"name": "Amigo", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/amigopuertorico/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4746234", "shop": "supermarket"}, "addTags": {"alt_name": "Supermercados Amigo", "brand": "Amigo", "brand:wikidata": "Q4746234", "brand:wikipedia": "en:Amigo Supermarkets", "name": "Amigo", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["amigo puerto rico", "amigo supermarket", "supermercado amigo"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Ara": {"name": "Ara", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/tiendasaracolombia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63148677", "shop": "supermarket"}, "addTags": {"brand": "Ara", "brand:wikidata": "Q63148677", "brand:wikipedia": "de:Tiendas Ara", "name": "Ara", "shop": "supermarket"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Asda": {"name": "Asda", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Asda/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q297410", "shop": "supermarket"}, "addTags": {"brand": "Asda", "brand:wikidata": "Q297410", "brand:wikipedia": "en:Asda", "name": "Asda", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Assaí Atacadista": {"name": "Assaí Atacadista", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAssai.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28679415", "shop": "supermarket"}, "addTags": {"brand": "Assaí Atacadista", "brand:wikidata": "Q28679415", "brand:wikipedia": "pt:Assaí Atacadista", "name": "Assaí Atacadista", "shop": "supermarket"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Atacadão": {"name": "Atacadão", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Atacadaosa.Oficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2868739", "shop": "supermarket"}, "addTags": {"brand": "Atacadão", "brand:wikidata": "Q2868739", "brand:wikipedia": "en:Atacadão", "name": "Atacadão", "shop": "supermarket"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Auchan": {"name": "Auchan", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/auchan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q758603", "shop": "supermarket"}, "addTags": {"brand": "Auchan", "brand:wikidata": "Q758603", "brand:wikipedia": "en:Auchan", "name": "Auchan", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Auchan Drive": {"name": "Auchan Drive", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/AuchanDrive/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2870659", "shop": "supermarket"}, "addTags": {"brand": "Auchan Drive", "brand:wikidata": "Q2870659", "brand:wikipedia": "fr:Auchan Drive", "name": "Auchan Drive", "shop": "supermarket"}, "countryCodes": ["fr", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/BI-LO": {"name": "BI-LO", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BILOSuperSaver/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4835620", "shop": "supermarket"}, "addTags": {"brand": "BI-LO", "brand:wikidata": "Q4835620", "brand:wikipedia": "en:BI-LO (United States)", "name": "BI-LO", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/BM": {"name": "BM", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BMSupermercados/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62073462", "shop": "supermarket"}, "addTags": {"brand": "BM", "brand:wikidata": "Q62073462", "name": "BM", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bashas'": {"name": "Bashas'", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BashasSupermarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4866786", "shop": "supermarket"}, "addTags": {"brand": "Bashas'", "brand:wikidata": "Q4866786", "brand:wikipedia": "en:Bashas'", "name": "Bashas'", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Biedronka": {"name": "Biedronka", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BiedronkaCodziennie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q857182", "shop": "supermarket"}, "addTags": {"brand": "Biedronka", "brand:wikidata": "Q857182", "brand:wikipedia": "pl:Biedronka (sieć handlowa)", "name": "Biedronka", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Big Bazaar": {"name": "Big Bazaar", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BigBazaar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3631008", "shop": "supermarket"}, "addTags": {"brand": "Big Bazaar", "brand:wikidata": "Q3631008", "brand:wikipedia": "en:Big Bazaar", "name": "Big Bazaar", "shop": "supermarket"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Big C": {"name": "Big C", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BigCBigService/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q858665", "shop": "supermarket"}, "addTags": {"brand": "Big C", "brand:wikidata": "Q858665", "brand:wikipedia": "en:Big C", "name": "Big C", "shop": "supermarket"}, "countryCodes": ["th", "vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Big Market": {"name": "Big Market", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28135235", "shop": "supermarket"}, "addTags": {"brand": "Big Market", "brand:wikidata": "Q28135235", "brand:wikipedia": "sq:Big Market", "name": "Big Market", "shop": "supermarket"}, "countryCodes": ["al"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Big-A": {"name": "Big-A", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11330804", "shop": "supermarket"}, "addTags": {"brand": "Big-A", "brand:en": "Big-A", "brand:jp": "ビッグ・エー", "brand:wikidata": "Q11330804", "brand:wikipedia": "jp:ビッグ・エー", "name": "Big-A", "name:en": "Big-A", "name:ja": "ビッグ・エー", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Billa": {"name": "Billa", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BILLA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q537781", "shop": "supermarket"}, "addTags": {"brand": "Billa", "brand:wikidata": "Q537781", "brand:wikipedia": "en:Billa (supermarket)", "name": "Billa", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bim": {"name": "Bim", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/bimturkiye/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1022075", "shop": "supermarket"}, "addTags": {"brand": "Bim", "brand:wikidata": "Q1022075", "brand:wikipedia": "en:Bim (company)", "name": "Bim", "shop": "supermarket"}, "countryCodes": ["ma", "tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bingo": {"name": "Bingo", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/bingotuzla/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16842066", "shop": "supermarket"}, "addTags": {"brand": "Bingo", "brand:wikidata": "Q16842066", "brand:wikipedia": "bs:Bingo (kompanija)", "name": "Bingo", "shop": "supermarket"}, "countryCodes": ["ba"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bio C' Bon": {"name": "Bio C' Bon", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogoBiocBon2.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q54312551", "shop": "supermarket"}, "addTags": {"brand": "Bio C' Bon", "brand:wikidata": "Q54312551", "brand:wikipedia": "fr:Bio c'bon", "name": "Bio C' Bon", "shop": "supermarket"}, "countryCodes": ["es", "fr", "jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bio Company": {"name": "Bio Company", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/biocompany.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q864179", "shop": "supermarket"}, "addTags": {"brand": "Bio Company", "brand:wikidata": "Q864179", "brand:wikipedia": "de:Bio Company", "name": "Bio Company", "organic": "only", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Biocoop": {"name": "Biocoop", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Biocoop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2904039", "shop": "supermarket"}, "addTags": {"brand": "Biocoop", "brand:wikidata": "Q2904039", "brand:wikipedia": "fr:Biocoop", "name": "Biocoop", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bodega Aurrera": {"name": "Bodega Aurrera", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BodegaAurrera/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3365858", "shop": "supermarket"}, "addTags": {"brand": "Bodega Aurrera", "brand:wikidata": "Q3365858", "brand:wikipedia": "en:Bodega Aurrerá", "name": "Bodega Aurrera", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/BonArea": {"name": "BonArea", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/bonarea.oficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11924743", "shop": "supermarket"}, "addTags": {"brand": "Bon Area", "brand:wikidata": "Q11924743", "brand:wikipedia": "ca:Grup Alimentari Guissona", "name": "Bon Area", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bonpreu": {"name": "Bonpreu", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/supermercatsbonpreuesclat/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11924747", "shop": "supermarket"}, "addTags": {"brand": "Bonpreu", "brand:wikidata": "Q11924747", "brand:wikipedia": "ca:Grup Bon Preu", "name": "Bonpreu", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bravo": {"name": "Bravo", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/bravo.supermarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16985159", "shop": "supermarket"}, "addTags": {"brand": "Bravo", "brand:wikidata": "Q16985159", "brand:wikipedia": "en:Bravo (supermarket)", "name": "Bravo", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Brookshire Brothers": {"name": "Brookshire Brothers", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BrookshireBros/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4975084", "shop": "supermarket"}, "addTags": {"brand": "Brookshire Brothers", "brand:wikidata": "Q4975084", "brand:wikipedia": "en:Brookshire Brothers", "name": "Brookshire Brothers", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Brookshire's": {"name": "Brookshire's", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Brookshires/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4975085", "shop": "supermarket"}, "addTags": {"brand": "Brookshire's", "brand:wikidata": "Q4975085", "brand:wikipedia": "en:Brookshire Grocery Company", "name": "Brookshire's", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Budgens": {"name": "Budgens", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/DiscoverBudgens/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4985016", "shop": "supermarket"}, "addTags": {"brand": "Budgens", "brand:wikidata": "Q4985016", "brand:wikipedia": "en:Budgens", "name": "Budgens", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bulk Barn": {"name": "Bulk Barn", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BulkBarnFoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4996466", "shop": "supermarket"}, "addTags": {"brand": "Bulk Barn", "brand:wikidata": "Q4996466", "name": "Bulk Barn", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bunnpris": {"name": "Bunnpris", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/bunnpris.no/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1774634", "shop": "supermarket"}, "addTags": {"brand": "Bunnpris", "brand:wikidata": "Q1774634", "brand:wikipedia": "en:Bunnpris", "name": "Bunnpris", "shop": "supermarket"}, "countryCodes": ["no"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Bónus": {"name": "Bónus", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/bonus.is/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3480158", "shop": "supermarket"}, "addTags": {"brand": "Bónus", "brand:wikidata": "Q3480158", "brand:wikipedia": "en:Bónus", "name": "Bónus", "shop": "supermarket"}, "countryCodes": ["fo", "is"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/C-Town Supermarkets": {"name": "C-Town Supermarkets", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Ctown.supermarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5005929", "shop": "supermarket"}, "addTags": {"brand": "C-Town Supermarkets", "brand:wikidata": "Q5005929", "brand:wikipedia": "en:C-Town Supermarkets", "name": "C-Town", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/CAP-Markt": {"name": "CAP-Markt", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCAP%20Markt%20K%C3%B6penick.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1022827", "shop": "supermarket"}, "addTags": {"brand": "CAP", "brand:wikidata": "Q1022827", "brand:wikipedia": "de:CAP (Markt)", "name": "CAP-Markt", "shop": "supermarket"}, "countryCodes": ["de"], "terms": ["cap"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/CBA": {"name": "CBA", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCBA%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q779845", "shop": "supermarket"}, "addTags": {"brand": "CBA", "brand:wikidata": "Q779845", "brand:wikipedia": "en:CBA (food retail)", "name": "CBA", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/COOP Jednota": {"name": "COOP Jednota", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/COOPJednota/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q41629254", "shop": "supermarket"}, "addTags": {"brand": "COOP Jednota", "brand:wikidata": "Q41629254", "brand:wikipedia": "sk:COOP Jednota Slovensko", "name": "COOP Jednota", "shop": "supermarket"}, "countryCodes": ["cz", "sk"], "terms": ["jednota"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Cactus": {"name": "Cactus", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mycactuslu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q466918", "shop": "supermarket"}, "addTags": {"brand": "Cactus", "brand:wikidata": "Q466918", "brand:wikipedia": "lb:Cactus", "name": "Cactus", "shop": "supermarket"}, "countryCodes": ["lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Caprabo": {"name": "Caprabo", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Caprabo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1980781", "shop": "supermarket"}, "addTags": {"brand": "Caprabo", "brand:wikidata": "Q1980781", "brand:wikipedia": "en:Caprabo", "name": "Caprabo", "shop": "supermarket"}, "countryCodes": ["ad", "es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Cardenas": {"name": "Cardenas", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/CardenasMarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64149543", "shop": "supermarket"}, "addTags": {"brand": "Cardenas", "brand:wikidata": "Q64149543", "brand:wikipedia": "en:Cardenas (supermarket)", "cuisine": "latin_american", "name": "Cardenas", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["mi pueblo", "mi pueblo food center"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Cargills Food City (Sri Lanka)": {"name": "Cargills Food City (Sri Lanka)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/cargillsfoodcity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58353955", "shop": "supermarket"}, "addTags": {"brand": "Cargills Food City", "brand:wikidata": "Q58353955", "name": "Cargills Food City", "shop": "supermarket"}, "countryCodes": ["lk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Carrefour": {"name": "Carrefour", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1239110499553488898/S31rVo48_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q217599", "shop": "supermarket"}, "addTags": {"brand": "Carrefour", "brand:wikidata": "Q217599", "brand:wikipedia": "fr:Carrefour (enseigne)", "name": "Carrefour", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Carrefour City": {"name": "Carrefour City", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/CarrefourCity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2940187", "shop": "supermarket"}, "addTags": {"brand": "Carrefour City", "brand:wikidata": "Q2940187", "brand:wikipedia": "fr:Carrefour City", "name": "Carrefour City", "shop": "supermarket"}, "countryCodes": ["be", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Carrefour Contact": {"name": "Carrefour Contact", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCarrefour%20contact%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2940188", "shop": "supermarket"}, "addTags": {"brand": "Carrefour Contact", "brand:wikidata": "Q2940188", "brand:wikipedia": "fr:Carrefour Contact", "name": "Carrefour Contact", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Carrefour Market": {"name": "Carrefour Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/carrefourmarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2689639", "shop": "supermarket"}, "addTags": {"brand": "Carrefour Market", "brand:wikidata": "Q2689639", "brand:wikipedia": "fr:Carrefour Market", "name": "Carrefour Market", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Carulla": {"name": "Carulla", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SupermercadosCarulla/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5047480", "shop": "supermarket"}, "addTags": {"brand": "Carulla", "brand:wikidata": "Q5047480", "brand:wikipedia": "en:Carulla", "name": "Carulla", "shop": "supermarket"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Casino": {"name": "Casino", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20Casino%20Supermarch%C3%A9s.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q89029184", "shop": "supermarket"}, "addTags": {"brand": "Casino", "brand:wikidata": "Q89029184", "name": "Casino", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Centre Commercial E. Leclerc": {"name": "Centre Commercial E. Leclerc", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/E.Leclerc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1273376", "shop": "supermarket"}, "addTags": {"brand": "Centre Commercial E. Leclerc", "brand:wikidata": "Q1273376", "brand:wikipedia": "fr:E.Leclerc", "name": "Centre Commercial E. Leclerc", "shop": "supermarket"}, "countryCodes": ["fr", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Chata Polska": {"name": "Chata Polska", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/chatapolskasklepy/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994406", "shop": "supermarket"}, "addTags": {"brand": "Chata Polska", "brand:wikidata": "Q61994406", "name": "Chata Polska", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Checkers": {"name": "Checkers", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/checkerssa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5089126", "shop": "supermarket"}, "addTags": {"brand": "Checkers", "brand:wikidata": "Q5089126", "brand:wikipedia": "en:Checkers (supermarket chain)", "name": "Checkers", "shop": "supermarket"}, "countryCodes": ["bw", "na", "za"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Chedraui": {"name": "Chedraui", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/CHEDRAUIOFICIAL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2961952", "shop": "supermarket"}, "addTags": {"brand": "Chedraui", "brand:wikidata": "Q2961952", "brand:wikipedia": "en:Chedraui", "name": "Chedraui", "shop": "supermarket"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/City Market": {"name": "City Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/CityMarketGrocery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5123299", "shop": "supermarket"}, "addTags": {"brand": "City Market", "brand:wikidata": "Q5123299", "brand:wikipedia": "en:City Market (US grocery store chain)", "name": "City Market", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Co-op Food": {"name": "Co-op Food", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1243828928134995968/AN-8Ptzi_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3277439", "shop": "supermarket"}, "addTags": {"brand": "Co-op Food", "brand:wikidata": "Q3277439", "brand:wikipedia": "en:Co-op Food", "name": "Co-op Food", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": ["coop", "cooperative food", "the co-operative food", "the cooperative"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Co-op (Canada)": {"name": "Co-op (Canada)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/CoopCRS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5440676", "shop": "supermarket"}, "addTags": {"brand": "Federated Co-operatives", "brand:wikidata": "Q5440676", "brand:wikipedia": "en:Federated Co-operatives", "name": "Co-op", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Coccinelle Express": {"name": "Coccinelle Express", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCoccinelle%20express%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90020479", "shop": "supermarket"}, "addTags": {"brand": "Coccinelle Express", "brand:wikidata": "Q90020479", "name": "Coccinelle Express", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Coccinelle Supermarché": {"name": "Coccinelle Supermarché", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCoccinelle%20supermarche%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90020459", "shop": "supermarket"}, "addTags": {"brand": "Coccinelle Supermarché", "brand:wikidata": "Q90020459", "name": "Coccinelle Supermarché", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Coles": {"name": "Coles", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/coles/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1108172", "shop": "supermarket"}, "addTags": {"brand": "Coles", "brand:wikidata": "Q1108172", "brand:wikipedia": "en:Coles Supermarkets", "name": "Coles", "shop": "supermarket"}, "countryCodes": ["au", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Colruyt": {"name": "Colruyt", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Colruyt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2363991", "shop": "supermarket"}, "addTags": {"brand": "Colruyt", "brand:wikidata": "Q2363991", "brand:wikipedia": "en:Colruyt (supermarket)", "name": "Colruyt", "shop": "supermarket"}, "countryCodes": ["be", "fr", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Combi": {"name": "Combi", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Combi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1113618", "shop": "supermarket"}, "addTags": {"brand": "Combi", "brand:wikidata": "Q1113618", "brand:wikipedia": "de:Combi (Einkaufsmarkt)", "name": "Combi", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Comercial Mexicana": {"name": "Comercial Mexicana", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/209308192464395/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2985173", "shop": "supermarket"}, "addTags": {"brand": "Comercial Mexicana", "brand:wikidata": "Q2985173", "brand:wikipedia": "es:Comercial Mexicana", "name": "Comercial Mexicana", "shop": "supermarket"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Conad": {"name": "Conad", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Conad/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q639075", "shop": "supermarket"}, "addTags": {"brand": "Conad", "brand:wikidata": "Q639075", "brand:wikipedia": "it:Conad", "name": "Conad", "shop": "supermarket"}, "countryCodes": ["al", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Conad City": {"name": "Conad City", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ConadCityQualiano/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57543102", "shop": "supermarket"}, "addTags": {"brand": "Conad City", "brand:wikidata": "Q57543102", "name": "Conad City", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Condis": {"name": "Condis", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Condislife/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57417581", "shop": "supermarket"}, "addTags": {"brand": "Condis", "brand:wikidata": "Q57417581", "name": "Condis", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Consum": {"name": "Consum", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/supermercadosconsum/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8350308", "shop": "supermarket"}, "addTags": {"brand": "Consum", "brand:wikidata": "Q8350308", "brand:wikipedia": "es:Consum", "name": "Consum", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Continente": {"name": "Continente", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/continenteoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2995683", "shop": "supermarket"}, "addTags": {"brand": "Continente", "brand:wikidata": "Q2995683", "brand:wikipedia": "en:Continente (Supermarket)", "name": "Continente", "shop": "supermarket"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Coop Eesti": {"name": "Coop Eesti", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12361460", "shop": "supermarket"}, "addTags": {"brand": "Coop Eesti", "brand:wikidata": "Q12361460", "brand:wikipedia": "ee:Coop Eesti", "name": "Coop", "shop": "supermarket"}, "countryCodes": ["ee"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Coop Prix": {"name": "Coop Prix", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/coopprix/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5167705", "shop": "supermarket"}, "addTags": {"brand": "Coop Prix", "brand:wikidata": "Q5167705", "brand:wikipedia": "no:Coop Prix", "name": "Coop Prix", "shop": "supermarket"}, "countryCodes": ["no"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Coop (Schweiz)": {"name": "Coop (Schweiz)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/coop.ch/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q432564", "shop": "supermarket"}, "addTags": {"brand": "Coop", "brand:wikidata": "Q432564", "brand:wikipedia": "de:Coop (Schweiz)", "name": "Coop", "shop": "supermarket"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Cora": {"name": "Cora", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/coraBelgium/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q686643", "shop": "supermarket"}, "addTags": {"brand": "Cora", "brand:wikidata": "Q686643", "brand:wikipedia": "en:Cora (hypermarket)", "name": "Cora", "shop": "supermarket"}, "countryCodes": ["be", "fr", "lu", "ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Costcutter": {"name": "Costcutter", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/costcutter/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5175072", "shop": "supermarket"}, "addTags": {"brand": "Costcutter", "brand:wikidata": "Q5175072", "brand:wikipedia": "en:Costcutter", "name": "Costcutter", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Coto": {"name": "Coto", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/coto/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5175411", "shop": "supermarket"}, "addTags": {"brand": "Coto", "brand:wikidata": "Q5175411", "brand:wikipedia": "es:Coto (supermercado)", "name": "Coto", "shop": "supermarket"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Countdown": {"name": "Countdown", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/countdown/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5176845", "shop": "supermarket"}, "addTags": {"brand": "Countdown", "brand:wikidata": "Q5176845", "brand:wikipedia": "en:Countdown (supermarket)", "name": "Countdown", "shop": "supermarket"}, "countryCodes": ["nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Covirán": {"name": "Covirán", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Coviran/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61070539", "shop": "supermarket"}, "addTags": {"brand": "Covirán", "brand:wikidata": "Q61070539", "brand:wikipedia": "eu:Covirán", "name": "Covirán", "name:pt": "Coviran", "shop": "supermarket"}, "countryCodes": ["es", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Cub Foods": {"name": "Cub Foods", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Cub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5191916", "shop": "supermarket"}, "addTags": {"brand": "Cub Foods", "brand:wikidata": "Q5191916", "brand:wikipedia": "en:Cub Foods", "name": "Cub Foods", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Côté Nature": {"name": "Côté Nature", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/113318390042872/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q90016283", "shop": "supermarket"}, "addTags": {"brand": "Côté Nature", "brand:wikidata": "Q90016283", "name": "Côté Nature", "organic": "only", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/D'Agostino": {"name": "D'Agostino", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/yourdagnyc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20656844", "shop": "supermarket"}, "addTags": {"brand": "D'Agostino", "brand:wikidata": "Q20656844", "brand:wikipedia": "en:D'Agostino Supermarkets", "name": "D'Agostino", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/D1": {"name": "D1", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/427264640797493/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q43403418", "shop": "supermarket"}, "addTags": {"brand": "D1", "brand:wikidata": "Q43403418", "brand:wikipedia": "es:Tiendas D1", "name": "D1", "shop": "supermarket"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Dagli'Brugsen": {"name": "Dagli'Brugsen", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/DagliBrugsen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12307017", "shop": "supermarket"}, "addTags": {"brand": "Dagli'Brugsen", "brand:wikidata": "Q12307017", "brand:wikipedia": "en:Dagli'Brugsen", "name": "Dagli'Brugsen", "shop": "supermarket"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Decò": {"name": "Decò", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/supermercatideco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65127915", "shop": "supermarket"}, "addTags": {"brand": "Decò", "brand:wikidata": "Q65127915", "brand:wikipedia": "it:Decò", "name": "Decò", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Deen": {"name": "Deen", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/DEENSupermarkten/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13571727", "shop": "supermarket"}, "addTags": {"brand": "Deen", "brand:wikidata": "Q13571727", "brand:wikipedia": "nl:Deen (supermarkt)", "name": "Deen", "shop": "supermarket"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Delhaize": {"name": "Delhaize", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Delhaize/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1184173", "shop": "supermarket"}, "addTags": {"brand": "Delhaize", "brand:wikidata": "Q1184173", "brand:wikipedia": "fr:Delhaize", "name": "Delhaize", "shop": "supermarket"}, "countryCodes": ["be", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Delikatesy Centrum": {"name": "Delikatesy Centrum", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Delikatesypl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11693824", "shop": "supermarket"}, "addTags": {"brand": "Delikatesy Centrum", "brand:wikidata": "Q11693824", "brand:wikipedia": "pl:Delikatesy Centrum", "name": "Delikatesy Centrum", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Denner": {"name": "Denner", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/denner.ch/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q379911", "shop": "supermarket"}, "addTags": {"brand": "Denner", "brand:wikidata": "Q379911", "brand:wikipedia": "en:Denner (supermarket)", "name": "Denner", "shop": "supermarket"}, "countryCodes": ["ch", "li"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Despar": {"name": "Despar", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/639011130107633664/nLN6cXfa_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q610492", "shop": "supermarket"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Despar", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Despensa Familiar": {"name": "Despensa Familiar", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/DespensaFamiliarGuatemala/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994849", "shop": "supermarket"}, "addTags": {"brand": "Despensa Familiar", "brand:wikidata": "Q61994849", "name": "Despensa Familiar", "shop": "supermarket"}, "countryCodes": ["gt", "hn", "sv"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Dia": {"name": "Dia", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/DIAEspana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q925132", "shop": "supermarket"}, "addTags": {"brand": "Dia", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados DIA", "name": "Dia", "shop": "supermarket"}, "terms": ["supermercado dia"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Dia Market": {"name": "Dia Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/DIAEspana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q925132", "shop": "supermarket"}, "addTags": {"brand": "Dia Market", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados DIA", "name": "Dia Market", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Dierbergs": {"name": "Dierbergs", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Dierbergs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5274978", "shop": "supermarket"}, "addTags": {"brand": "Dierbergs", "brand:wikidata": "Q5274978", "brand:wikipedia": "en:Dierbergs Markets", "name": "Dierbergs", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Dino": {"name": "Dino", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/marketdinobieniewice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11694239", "shop": "supermarket"}, "addTags": {"brand": "Dino", "brand:wikidata": "Q11694239", "brand:wikipedia": "pl:Dino Polska", "name": "Dino", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Dirk van den Broek": {"name": "Dirk van den Broek", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Dirksupermarkten/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17502722", "shop": "supermarket"}, "addTags": {"brand": "Dirk van den Broek", "brand:wikidata": "Q17502722", "brand:wikipedia": "en:Dirk (supermarket)", "name": "Dirk van den Broek", "shop": "supermarket"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Disco (Argentina)": {"name": "Disco (Argentina)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/DiscoArgentina/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6135978", "shop": "supermarket"}, "addTags": {"brand": "Disco", "brand:wikidata": "Q6135978", "brand:wikipedia": "es:Disco (supermercado de Argentina)", "name": "Disco", "shop": "supermarket"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Disco (Uruguay)": {"name": "Disco (Uruguay)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/discouruguay/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16636819", "shop": "supermarket"}, "addTags": {"brand": "Disco", "brand:wikidata": "Q16636819", "brand:wikipedia": "es:Disco (supermercado de Uruguay)", "name": "Disco", "shop": "supermarket"}, "countryCodes": ["uy"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Diska": {"name": "Diska", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/diskamarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62390177", "shop": "supermarket"}, "addTags": {"brand": "Diska", "brand:wikidata": "Q62390177", "name": "Diska", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Dollar General Market": {"name": "Dollar General Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/dollargeneral/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q145168", "shop": "supermarket"}, "addTags": {"brand": "Dollar General Market", "brand:wikidata": "Q145168", "brand:wikipedia": "en:Dollar General", "name": "Dollar General Market", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Dunnes Stores": {"name": "Dunnes Stores", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/DunnesStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1266203", "shop": "supermarket"}, "addTags": {"brand": "Dunnes Stores", "brand:wikidata": "Q1266203", "brand:wikipedia": "en:Dunnes Stores", "name": "Dunnes Stores", "shop": "supermarket"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/E-Center": {"name": "E-Center", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/EDEKA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q701755", "shop": "supermarket"}, "addTags": {"brand": "E-Center", "brand:wikidata": "Q701755", "brand:wikipedia": "de:Edeka", "name": "E-Center", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/E. Leclerc": {"name": "E. Leclerc", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/E.Leclerc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1273376", "shop": "supermarket"}, "addTags": {"brand": "E. Leclerc", "brand:wikidata": "Q1273376", "brand:wikipedia": "en:E.Leclerc", "name": "E. Leclerc", "shop": "supermarket"}, "countryCodes": ["es", "fr", "pl", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/E. Leclerc Drive": {"name": "E. Leclerc Drive", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/E.Leclerc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1273376", "shop": "supermarket"}, "addTags": {"brand": "E. Leclerc Drive", "brand:wikidata": "Q1273376", "brand:wikipedia": "fr:E.Leclerc", "name": "E. Leclerc Drive", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": ["leclerc drive"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/EMTÉ": {"name": "EMTÉ", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FEmte%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3119122", "shop": "supermarket"}, "addTags": {"brand": "EMTÉ", "brand:wikidata": "Q3119122", "brand:wikipedia": "en:EMTÉ", "name": "EMTÉ", "shop": "supermarket"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Edeka": {"name": "Edeka", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/EDEKA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q701755", "shop": "supermarket"}, "addTags": {"brand": "Edeka", "brand:wikidata": "Q701755", "brand:wikipedia": "de:Edeka", "name": "Edeka", "shop": "supermarket"}, "countryCodes": ["de"], "terms": ["edeka neukauf"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Edeka xpress": {"name": "Edeka xpress", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/EDEKA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q701755", "shop": "supermarket"}, "addTags": {"brand": "Edeka", "brand:wikidata": "Q701755", "brand:wikipedia": "de:Edeka", "name": "Edeka xpress", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Eko": {"name": "Eko", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9251859", "shop": "supermarket"}, "addTags": {"brand": "Eko", "brand:wikidata": "Q9251859", "brand:wikipedia": "pl:Eko Holding", "name": "Eko", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Ekom": {"name": "Ekom", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/1013432382051351/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62073442", "shop": "supermarket"}, "addTags": {"brand": "Ekom", "brand:wikidata": "Q62073442", "name": "Ekom", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Ekono": {"name": "Ekono", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogotipo%20Ekono.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2842729", "shop": "supermarket"}, "addTags": {"brand": "Ekono", "brand:wikidata": "Q2842729", "brand:wikipedia": "es:Ekono", "name": "Ekono", "shop": "supermarket"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Eroski": {"name": "Eroski", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Eroski/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1361349", "shop": "supermarket"}, "addTags": {"brand": "Eroski", "brand:wikidata": "Q1361349", "brand:wikipedia": "en:Eroski", "name": "Eroski", "shop": "supermarket"}, "countryCodes": ["es", "gi"], "terms": ["charter", "eroski center"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Eroski City": {"name": "Eroski City", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Eroski/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1361349", "shop": "supermarket"}, "addTags": {"brand": "Eroski", "brand:wikidata": "Q1361349", "brand:wikipedia": "en:Eroski", "name": "Eroski City", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Esselunga": {"name": "Esselunga", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Esselunga/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1059636", "shop": "supermarket"}, "addTags": {"brand": "Esselunga", "brand:wikidata": "Q1059636", "brand:wikipedia": "en:Esselunga", "name": "Esselunga", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/EuroSpin": {"name": "EuroSpin", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/EurospinItaliaSpa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1374674", "shop": "supermarket"}, "addTags": {"brand": "EuroSpin", "brand:wikidata": "Q1374674", "brand:wikipedia": "it:Eurospin", "name": "EuroSpin", "shop": "supermarket"}, "countryCodes": ["it", "si"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Eurospar": {"name": "Eurospar", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/EurosparIreland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12309283", "shop": "supermarket"}, "addTags": {"brand": "Eurospar", "brand:wikidata": "Q12309283", "brand:wikipedia": "da:Eurospar", "name": "Eurospar", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Extra": {"name": "Extra", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/extramorkved/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11964085", "shop": "supermarket"}, "addTags": {"brand": "Extra", "brand:wikidata": "Q11964085", "brand:wikipedia": "no:Extra (Coop)", "name": "Extra", "shop": "supermarket"}, "terms": ["coop extra"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Famila": {"name": "Famila", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/1674632829509874/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1395108", "shop": "supermarket"}, "addTags": {"brand": "Famila", "brand:wikidata": "Q1395108", "brand:wikipedia": "de:Famila", "name": "Famila", "shop": "supermarket"}, "countryCodes": ["de", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Family Fare": {"name": "Family Fare", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/shopfamilyfare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19868045", "shop": "supermarket"}, "addTags": {"brand": "Family Fare", "brand:wikidata": "Q19868045", "brand:wikipedia": "en:Family Fare", "name": "Family Fare", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Fareway": {"name": "Fareway", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/farewaystores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5434998", "shop": "supermarket"}, "addTags": {"brand": "Fareway", "brand:wikidata": "Q5434998", "brand:wikipedia": "en:Fareway", "name": "Fareway", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Farm Boy": {"name": "Farm Boy", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/farmboy.ca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5435469", "shop": "supermarket"}, "addTags": {"brand": "Farm Boy", "brand:wikidata": "Q5435469", "brand:wikipedia": "en:Farm Boy", "name": "Farm Boy", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Feneberg": {"name": "Feneberg", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/FenebergLebensmittel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5345378", "shop": "supermarket"}, "addTags": {"brand": "Feneberg", "brand:wikidata": "Q5345378", "brand:wikipedia": "de:Feneberg Lebensmittel", "name": "Feneberg", "shop": "supermarket"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Food 4 Less": {"name": "Food 4 Less", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/myfood4less/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5465282", "shop": "supermarket"}, "addTags": {"brand": "Food 4 Less", "brand:wikidata": "Q5465282", "brand:wikipedia": "en:Food 4 Less", "name": "Food 4 Less", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Food Basics": {"name": "Food Basics", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/foodbasics.ca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5465300", "shop": "supermarket"}, "addTags": {"brand": "Food Basics", "brand:wikidata": "Q5465300", "brand:wikipedia": "en:Food Basics", "name": "Food Basics", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Food City (USA)": {"name": "Food City (USA)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/FoodCity/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16981107", "shop": "supermarket"}, "addTags": {"brand": "Food City", "brand:wikidata": "Q16981107", "brand:wikipedia": "en:Food City (K-VA-T)", "name": "Food City", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Food Lion": {"name": "Food Lion", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/foodlion/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1435950", "shop": "supermarket"}, "addTags": {"brand": "Food Lion", "brand:wikidata": "Q1435950", "brand:wikipedia": "en:Food Lion", "name": "Food Lion", "shop": "supermarket"}, "countryCodes": ["es", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/FoodLand (USA)": {"name": "FoodLand (USA)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5465271", "shop": "supermarket"}, "addTags": {"brand": "FoodLand", "brand:wikidata": "Q5465271", "brand:wikipedia": "en:FoodLand", "name": "FoodLand", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/FoodMaxx": {"name": "FoodMaxx", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Foodmaxx/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61894844", "shop": "supermarket"}, "addTags": {"brand": "FoodMaxx", "brand:wikidata": "Q61894844", "name": "FoodMaxx", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Foodland (Australia)": {"name": "Foodland (Australia)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/FoodlandSupermarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5465555", "shop": "supermarket"}, "addTags": {"brand": "Foodland", "brand:wikidata": "Q5465555", "brand:wikipedia": "en:Foodland (South Australia)", "name": "Foodland", "shop": "supermarket"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Foodland (Canada)": {"name": "Foodland (Canada)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/dansFoodland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5465554", "shop": "supermarket"}, "addTags": {"brand": "Foodland", "brand:wikidata": "Q5465554", "brand:wikipedia": "en:Foodland (Canada)", "name": "Foodland", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Foodland (Hawaii)": {"name": "Foodland (Hawaii)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/FoodlandHawaii/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5465560", "shop": "supermarket"}, "addTags": {"brand": "Foodland", "brand:wikidata": "Q5465560", "brand:wikipedia": "en:Foodland Hawaii", "name": "Foodland", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Foodworks": {"name": "Foodworks", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/foodworksaus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5465579", "shop": "supermarket"}, "addTags": {"brand": "Foodworks", "brand:wikidata": "Q5465579", "brand:wikipedia": "en:FoodWorks", "name": "Foodworks", "shop": "supermarket"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Fortinos": {"name": "Fortinos", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/fortinosgrocery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5472662", "shop": "supermarket"}, "addTags": {"brand": "Fortinos", "brand:wikidata": "Q5472662", "brand:wikipedia": "en:Fortinos", "name": "Fortinos", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Four Square": {"name": "Four Square", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/FourSquareNZ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5475558", "shop": "supermarket"}, "addTags": {"brand": "Four Square", "brand:wikidata": "Q5475558", "brand:wikipedia": "en:Four Square (supermarket)", "name": "Four Square", "shop": "supermarket"}, "countryCodes": ["nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Fred Meyer": {"name": "Fred Meyer", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/fredmeyer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5495932", "shop": "supermarket"}, "addTags": {"brand": "Fred Meyer", "brand:wikidata": "Q5495932", "brand:wikipedia": "en:Fred Meyer", "name": "Fred Meyer", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Fresh": {"name": "Fresh", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/freshobchod/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q50737403", "shop": "supermarket"}, "addTags": {"brand": "Fresh", "brand:wikidata": "Q50737403", "brand:wikipedia": "sk:Fresh", "name": "Fresh", "shop": "supermarket"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Fresh Thyme": {"name": "Fresh Thyme", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/FreshThymeFarmersMarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64132791", "shop": "supermarket"}, "addTags": {"brand": "Fresh Thyme", "brand:wikidata": "Q64132791", "name": "Fresh Thyme", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["fresh thyme farmers market"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/FreshCo": {"name": "FreshCo", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/FreshCo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5502915", "shop": "supermarket"}, "addTags": {"brand": "FreshCo", "brand:wikidata": "Q5502915", "brand:wikipedia": "en:FreshCo", "name": "FreshCo", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Froiz": {"name": "Froiz", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/158051157541336/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17070775", "shop": "supermarket"}, "addTags": {"brand": "Froiz", "brand:wikidata": "Q17070775", "brand:wikipedia": "en:Froiz", "name": "Froiz", "shop": "supermarket"}, "countryCodes": ["es", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Fry's Food and Drug": {"name": "Fry's Food and Drug", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FFry's%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5506547", "shop": "supermarket"}, "addTags": {"brand": "Fry's Food and Drug", "brand:wikidata": "Q5506547", "brand:wikipedia": "en:Fry's Food and Drug", "name": "Fry's Food and Drug", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["frys"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Føtex": {"name": "Føtex", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/foetexdk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1480395", "shop": "supermarket"}, "addTags": {"brand": "Føtex", "brand:wikidata": "Q1480395", "brand:wikipedia": "en:Føtex", "name": "Føtex", "shop": "supermarket"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/G20": {"name": "G20", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/supermarchesg20/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3504731", "shop": "supermarket"}, "addTags": {"brand": "G20", "brand:wikidata": "Q3504731", "brand:wikipedia": "fr:Supermarchés G20", "name": "G20", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/GBarbosa": {"name": "GBarbosa", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/oficialgbarbosa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10287817", "shop": "supermarket"}, "addTags": {"brand": "GBarbosa", "brand:wikidata": "Q10287817", "brand:wikipedia": "pt:GBarbosa", "name": "GBarbosa", "shop": "supermarket"}, "countryCodes": ["br"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Gadis": {"name": "Gadis", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Gadis.supermercados/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12389151", "shop": "supermarket"}, "addTags": {"brand": "Gadis", "brand:wikidata": "Q12389151", "brand:wikipedia": "gl:Gadisa", "name": "Gadis", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Giant Eagle": {"name": "Giant Eagle", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/gianteagleinc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1522721", "shop": "supermarket"}, "addTags": {"brand": "Giant Eagle", "brand:wikidata": "Q1522721", "brand:wikipedia": "en:Giant Eagle", "name": "Giant Eagle", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["giant eagle supermarket"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Giant Hypermarket": {"name": "Giant Hypermarket", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20of%20Giant%20Hypermarket.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4217013", "shop": "supermarket"}, "addTags": {"brand": "Giant Hypermarket", "brand:wikidata": "Q4217013", "brand:wikipedia": "en:Giant Hypermarket", "name": "Giant Hypermarket", "shop": "supermarket"}, "countryCodes": ["id", "my", "sg", "vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Giant (Carlisle)": {"name": "Giant (Carlisle)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/giantfoodstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5558332", "shop": "supermarket"}, "addTags": {"brand": "Giant", "brand:wikidata": "Q5558332", "brand:wikipedia": "en:Giant Food Stores", "name": "Giant", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Giant (Landover)": {"name": "Giant (Landover)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/GiantFood/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5558336", "shop": "supermarket"}, "addTags": {"brand": "Giant", "brand:wikidata": "Q5558336", "brand:wikipedia": "en:Giant Food (Landover)", "name": "Giant", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Globus": {"name": "Globus", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Globus.de/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q457503", "shop": "supermarket"}, "addTags": {"brand": "Globus", "brand:wikidata": "Q457503", "brand:wikipedia": "en:Globus (hypermarket)", "name": "Globus", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Gordon Food Service": {"name": "Gordon Food Service", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/GordonFoodService/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1538006", "shop": "supermarket"}, "addTags": {"brand": "Gordon Food Service", "brand:wikidata": "Q1538006", "brand:wikipedia": "en:Gordon Food Service", "name": "Gordon Food Service", "shop": "supermarket"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Grand Frais": {"name": "Grand Frais", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/GrandFrais/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3114675", "shop": "supermarket"}, "addTags": {"brand": "Grand Frais", "brand:wikidata": "Q3114675", "brand:wikipedia": "fr:Grand Frais", "name": "Grand Frais", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Grocery Outlet": {"name": "Grocery Outlet", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/GroceryOutletInc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5609934", "shop": "supermarket"}, "addTags": {"brand": "Grocery Outlet", "brand:wikidata": "Q5609934", "brand:wikipedia": "en:Grocery Outlet", "name": "Grocery Outlet", "official_name": "Grocery Outlet Bargain Market", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Groszek": {"name": "Groszek", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Sklepy.Groszek/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9280965", "shop": "supermarket"}, "addTags": {"brand": "Groszek", "brand:wikidata": "Q9280965", "brand:wikipedia": "pl:Groszek (sieć sklepów)", "name": "Groszek", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Géant Casino": {"name": "Géant Casino", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/geantcasino/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1380537", "shop": "supermarket"}, "addTags": {"brand": "Géant Casino", "brand:wikidata": "Q1380537", "name": "Géant Casino", "shop": "supermarket"}, "countryCodes": ["cg", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/H Mart": {"name": "H Mart", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/hmartofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5636306", "shop": "supermarket"}, "addTags": {"alt_name:ko": "H 마트", "brand": "H Mart", "brand:wikidata": "Q5636306", "brand:wikipedia": "en:H Mart", "cuisine": "asian", "name": "H Mart", "name:en": "H Mart", "name:ko": "한아름", "name:zh-Hans": "韩亚龙", "name:zh-Hant": "韓亞龍", "shop": "supermarket"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/H-E-B": {"name": "H-E-B", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/HEB/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q830621", "shop": "supermarket"}, "addTags": {"brand": "H-E-B", "brand:wikidata": "Q830621", "brand:wikipedia": "en:H-E-B", "name": "H-E-B", "shop": "supermarket"}, "countryCodes": ["mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/HIT": {"name": "HIT", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/151789788189446/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1548713", "shop": "supermarket"}, "addTags": {"brand": "HIT", "brand:wikidata": "Q1548713", "brand:wikipedia": "de:HIT Handelsgruppe", "name": "HIT", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/HalpaHalli": {"name": "HalpaHalli", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/HalpaHalli/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11861256", "shop": "supermarket"}, "addTags": {"brand": "HalpaHalli", "brand:wikidata": "Q11861256", "brand:wikipedia": "fi:HalpaHalli", "name": "HalpaHalli", "shop": "supermarket"}, "countryCodes": ["ee", "fi", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hannaford": {"name": "Hannaford", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Hannaford/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5648760", "shop": "supermarket"}, "addTags": {"brand": "Hannaford", "brand:wikidata": "Q5648760", "brand:wikipedia": "en:Hannaford Brothers Company", "name": "Hannaford", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Harris Teeter": {"name": "Harris Teeter", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/harristeeter/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5665067", "shop": "supermarket"}, "addTags": {"brand": "Harris Teeter", "brand:wikidata": "Q5665067", "brand:wikipedia": "en:Harris Teeter", "name": "Harris Teeter", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hemköp": {"name": "Hemköp", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Hemkop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10521746", "shop": "supermarket"}, "addTags": {"brand": "Hemköp", "brand:wikidata": "Q10521746", "brand:wikipedia": "sv:Hemköp", "name": "Hemköp", "shop": "supermarket"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hero Supermarket": {"name": "Hero Supermarket", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHero%20Supermarket.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12485604", "shop": "supermarket"}, "addTags": {"brand": "Hero Supermarket", "brand:wikidata": "Q12485604", "brand:wikipedia": "en:Hero Supermarket", "name": "Hero Supermarket", "shop": "supermarket"}, "countryCodes": ["id"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Heron Foods": {"name": "Heron Foods", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/heronfoodslimited/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5743472", "shop": "supermarket"}, "addTags": {"brand": "Heron Foods", "brand:wikidata": "Q5743472", "brand:wikipedia": "en:Heron Foods", "name": "Heron Foods", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hipermaxi": {"name": "Hipermaxi", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81968262", "shop": "supermarket"}, "addTags": {"brand": "Hipermaxi", "brand:wikidata": "Q81968262", "name": "Hipermaxi", "shop": "supermarket"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hofer": {"name": "Hofer", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/HOFER.AT/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15815751", "shop": "supermarket"}, "addTags": {"brand": "Hofer", "brand:wikidata": "Q15815751", "brand:wikipedia": "de:Hofer KG", "name": "Hofer", "shop": "supermarket"}, "countryCodes": ["at", "si"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hoogvliet": {"name": "Hoogvliet", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Hoogvliet.supermarkten/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2770647", "shop": "supermarket"}, "addTags": {"brand": "Hoogvliet", "brand:wikidata": "Q2770647", "brand:wikipedia": "nl:Hoogvliet (supermarkt)", "name": "Hoogvliet", "shop": "supermarket"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hruška": {"name": "Hruška", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58196374", "shop": "supermarket"}, "addTags": {"brand": "Hruška", "brand:wikidata": "Q58196374", "name": "Hruška", "shop": "supermarket"}, "countryCodes": ["cz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hy-Vee": {"name": "Hy-Vee", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/HyVee/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1639719", "shop": "supermarket"}, "addTags": {"brand": "Hy-Vee", "brand:wikidata": "Q1639719", "brand:wikipedia": "en:Hy-Vee", "name": "Hy-Vee", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Hyper U": {"name": "Hyper U", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ULesCommercants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2529029", "shop": "supermarket"}, "addTags": {"brand": "Hyper U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Hyper U", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/IC Norte": {"name": "IC Norte", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81967653", "shop": "supermarket"}, "addTags": {"brand": "IC Norte", "brand:wikidata": "Q81967653", "name": "IC Norte", "shop": "supermarket"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ICA": {"name": "ICA", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ICA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1663776", "shop": "supermarket"}, "addTags": {"brand": "ICA", "brand:wikidata": "Q1663776", "brand:wikipedia": "sv:Ica", "name": "ICA", "shop": "supermarket"}, "countryCodes": ["no", "se"], "terms": ["ica supermarket"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ICA Kvantum": {"name": "ICA Kvantum", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ICA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1663776", "shop": "supermarket"}, "addTags": {"brand": "ICA Kvantum", "brand:wikidata": "Q1663776", "brand:wikipedia": "sv:Ica", "name": "ICA Kvantum", "shop": "supermarket"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ICA Maxi": {"name": "ICA Maxi", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ICA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1663776", "shop": "supermarket"}, "addTags": {"brand": "ICA Maxi", "brand:wikidata": "Q1663776", "brand:wikipedia": "sv:Ica", "name": "ICA Maxi", "shop": "supermarket"}, "countryCodes": ["no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/IDEA": {"name": "IDEA", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/IDEASrbija/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q23461622", "shop": "supermarket"}, "addTags": {"brand": "IDEA", "brand:wikidata": "Q23461622", "brand:wikipedia": "en:Idea (supermarkets)", "name": "IDEA", "shop": "supermarket"}, "countryCodes": ["rs"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/IGA": {"name": "IGA", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/IGACorp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3146662", "shop": "supermarket"}, "addTags": {"brand": "IGA", "brand:wikidata": "Q3146662", "brand:wikipedia": "en:IGA (supermarkets)", "name": "IGA", "shop": "supermarket"}, "countryCodes": ["au", "ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Ingles": {"name": "Ingles", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/inglesmarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6032595", "shop": "supermarket"}, "addTags": {"brand": "Ingles", "brand:wikidata": "Q6032595", "brand:wikipedia": "en:Ingles", "name": "Ingles", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Intermarché": {"name": "Intermarché", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1242150382085779463/Cmm3JM1n_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3153200", "shop": "supermarket"}, "addTags": {"brand": "Intermarché", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Intermarché Super": {"name": "Intermarché Super", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1242150382085779463/Cmm3JM1n_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3153200", "shop": "supermarket"}, "addTags": {"brand": "Intermarché Super", "brand:wikidata": "Q3153200", "brand:wikipedia": "fr:Intermarché", "name": "Intermarché Super", "shop": "supermarket"}, "countryCodes": ["be", "fr", "pl", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Interspar": {"name": "Interspar", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/INTERSPAR/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15820339", "shop": "supermarket"}, "addTags": {"brand": "Interspar", "brand:wikidata": "Q15820339", "brand:wikipedia": "de:Interspar (Österreich)", "name": "Interspar", "shop": "supermarket"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Irma": {"name": "Irma", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q797150", "shop": "supermarket"}, "addTags": {"brand": "Irma", "brand:wikidata": "Q797150", "brand:wikipedia": "en:Irma (supermarket)", "name": "Irma", "shop": "supermarket"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Jack's": {"name": "Jack's", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/shopjacksuk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60741213", "shop": "supermarket"}, "addTags": {"brand": "Jack's", "brand:wikidata": "Q60741213", "brand:wikipedia": "en:Jack's (store)", "name": "Jack's", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Jan Linders": {"name": "Jan Linders", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/JanLindersSupermarkten/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2200982", "shop": "supermarket"}, "addTags": {"brand": "Jan Linders", "brand:wikidata": "Q2200982", "brand:wikipedia": "nl:Jan Linders Supermarkten", "name": "Jan Linders", "shop": "supermarket"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Jewel-Osco": {"name": "Jewel-Osco", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/JewelOsco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3178470", "shop": "supermarket"}, "addTags": {"brand": "Jewel-Osco", "brand:wikidata": "Q3178470", "brand:wikipedia": "en:Jewel (supermarket)", "name": "Jewel-Osco", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Jumbo": {"name": "Jumbo", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/jumbosupermarkten/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2262314", "shop": "supermarket"}, "addTags": {"brand": "Jumbo", "brand:wikidata": "Q2262314", "brand:wikipedia": "en:Jumbo (supermarket)", "name": "Jumbo", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/K+K": {"name": "K+K", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/KlaasundKock/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1718009", "shop": "supermarket"}, "addTags": {"brand": "K+K", "brand:wikidata": "Q1718009", "brand:wikipedia": "de:K+K Klaas & Kock", "name": "K+K", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/K-Citymarket": {"name": "K-Citymarket", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/citymarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11868561", "shop": "supermarket"}, "addTags": {"brand": "K-Citymarket", "brand:wikidata": "Q11868561", "brand:wikipedia": "fi:K-Citymarket", "name": "K-Citymarket", "shop": "supermarket"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/K-Supermarket": {"name": "K-Supermarket", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/KSupermarketketju/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5408668", "shop": "supermarket"}, "addTags": {"brand": "K-Supermarket", "brand:wikidata": "Q5408668", "brand:wikipedia": "fi:K-Supermarket", "name": "K-Supermarket", "shop": "supermarket"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Kaufland": {"name": "Kaufland", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/132476996783723/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q685967", "shop": "supermarket"}, "addTags": {"brand": "Kaufland", "brand:wikidata": "Q685967", "brand:wikipedia": "en:Kaufland", "name": "Kaufland", "shop": "supermarket"}, "countryCodes": ["bg", "cz", "de", "hr", "pl", "ro", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Ketal": {"name": "Ketal", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q81967299", "shop": "supermarket"}, "addTags": {"brand": "Ketal", "brand:wikidata": "Q81967299", "name": "Ketal", "shop": "supermarket"}, "countryCodes": ["bo"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/King Soopers": {"name": "King Soopers", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/kingsoopers/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6412065", "shop": "supermarket"}, "addTags": {"brand": "King Soopers", "brand:wikidata": "Q6412065", "brand:wikipedia": "en:King Soopers", "name": "King Soopers", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Kings": {"name": "Kings", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/KingsFoodMarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6412914", "shop": "supermarket"}, "addTags": {"brand": "Kings", "brand:wikidata": "Q6412914", "brand:wikipedia": "en:Kings Food Markets", "name": "Kings", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Kiwi": {"name": "Kiwi", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/kiwiminipris/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1613639", "shop": "supermarket"}, "addTags": {"brand": "Kiwi", "brand:wikidata": "Q1613639", "brand:wikipedia": "en:Kiwi (store)", "name": "Kiwi", "shop": "supermarket"}, "countryCodes": ["dk", "no"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Konzum (Balkans)": {"name": "Konzum (Balkans)", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FKonzum%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q518563", "shop": "supermarket"}, "addTags": {"brand": "Konzum", "brand:wikidata": "Q518563", "brand:wikipedia": "hr:Konzum", "name": "Konzum", "shop": "supermarket"}, "countryCodes": ["ba", "hr", "rs"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Kroger": {"name": "Kroger", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Kroger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q153417", "shop": "supermarket"}, "addTags": {"brand": "Kroger", "brand:wikidata": "Q153417", "brand:wikipedia": "en:Kroger", "name": "Kroger", "shop": "supermarket"}, "terms": ["kroger food and drug", "krogers"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Kroger Marketplace": {"name": "Kroger Marketplace", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Kroger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q153417", "shop": "supermarket"}, "addTags": {"brand": "Kroger Marketplace", "brand:wikidata": "Q153417", "brand:wikipedia": "en:Kroger", "name": "Kroger Marketplace", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Krónan": {"name": "Krónan", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/kronan.is/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16419327", "shop": "supermarket"}, "addTags": {"brand": "Krónan", "brand:wikidata": "Q16419327", "brand:wikipedia": "is:Krónan (verslun)", "name": "Krónan", "shop": "supermarket"}, "countryCodes": ["is"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Kvickly": {"name": "Kvickly", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Kvickly/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7061148", "shop": "supermarket"}, "addTags": {"brand": "Kvickly", "brand:wikidata": "Q7061148", "brand:wikipedia": "en:Kvickly", "name": "Kvickly", "shop": "supermarket"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/La Anónima": {"name": "La Anónima", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/laanonimaoficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6135985", "shop": "supermarket"}, "addTags": {"brand": "La Anónima", "brand:wikidata": "Q6135985", "brand:wikipedia": "es:La Anónima", "name": "La Anónima", "shop": "supermarket"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/La Comer": {"name": "La Comer", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/LaComerOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q26765126", "shop": "supermarket"}, "addTags": {"brand": "La Comer", "brand:wikidata": "Q26765126", "brand:wikipedia": "es:La Comer", "name": "La Comer", "shop": "supermarket"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/La Michoacana Meat Market": {"name": "La Michoacana Meat Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lamichoacanameatmarket.officialpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6463872", "shop": "supermarket"}, "addTags": {"brand": "La Michoacana Meat Market", "brand:en": "La Michoacana Meat Market", "brand:es": "La Michoacana", "brand:wikidata": "Q6463872", "brand:wikipedia": "en:La Michoacana Meat Market", "cuisine": "latin_american", "name": "La Michoacana Meat Market", "name:en": "La Michoacana Meat Market", "name:es": "La Michoacana", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["la michoacana"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/La Plaza de DIA": {"name": "La Plaza de DIA", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/LaPlazadeDIA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58904673", "shop": "supermarket"}, "addTags": {"brand": "La Plaza de DIA", "brand:wikidata": "Q58904673", "name": "La Plaza de DIA", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/La Sirena": {"name": "La Sirena", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1205054191066124289/xaCxY6XI_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21034458", "shop": "supermarket"}, "addTags": {"brand": "La Sirena", "brand:wikidata": "Q21034458", "brand:wikipedia": "ca:La Sirena", "name": "La Sirena", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/La Vie Claire": {"name": "La Vie Claire", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Lavieclaire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3213589", "shop": "supermarket"}, "addTags": {"brand": "La Vie Claire", "brand:wikidata": "Q3213589", "brand:wikipedia": "fr:La Vie Claire", "name": "La Vie Claire", "organic": "only", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Landi": {"name": "Landi", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/landivechigen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1803010", "shop": "supermarket"}, "addTags": {"brand": "Landi", "brand:wikidata": "Q1803010", "brand:wikipedia": "de:Landi (Unternehmen)", "name": "Landi", "shop": "supermarket"}, "countryCodes": ["ch"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Leader Price": {"name": "Leader Price", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/leaderpriceofficiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2181426", "shop": "supermarket"}, "addTags": {"brand": "Leader Price", "brand:wikidata": "Q2181426", "brand:wikipedia": "fr:Leader Price", "name": "Leader Price", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Lewiatan": {"name": "Lewiatan", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/psh.lewiatan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11755396", "shop": "supermarket"}, "addTags": {"brand": "Lewiatan", "brand:wikidata": "Q11755396", "brand:wikipedia": "pl:Lewiatan (sieć handlowa)", "name": "Lewiatan", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Lider": {"name": "Lider", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lidercl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6711261", "shop": "supermarket"}, "addTags": {"brand": "Lider", "brand:wikidata": "Q6711261", "brand:wikipedia": "es:Líder (supermercado)", "name": "Lider", "shop": "supermarket"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Lider Express": {"name": "Lider Express", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lidercl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6711261", "shop": "supermarket"}, "addTags": {"brand": "Lider", "brand:wikidata": "Q6711261", "brand:wikipedia": "es:Líder (supermercado)", "name": "Lider Express", "shop": "supermarket"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Lidl": {"name": "Lidl", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lidl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q151954", "shop": "supermarket"}, "addTags": {"brand": "Lidl", "brand:wikidata": "Q151954", "brand:wikipedia": "en:Lidl", "name": "Lidl", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Lincolnshire Co-op": {"name": "Lincolnshire Co-op", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lincolnshirecoop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6551231", "shop": "supermarket"}, "addTags": {"brand": "Lincolnshire Co-op", "brand:wikidata": "Q6551231", "brand:wikipedia": "en:Lincolnshire Co-operative", "name": "Lincolnshire Co-op", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Linella": {"name": "Linella", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61085990", "shop": "supermarket"}, "addTags": {"brand": "Linella", "brand:wikidata": "Q61085990", "brand:wikipedia": "ro:Linella", "name": "Linella", "shop": "supermarket"}, "countryCodes": ["md"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Loblaws": {"name": "Loblaws", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/LoblawsON/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3257626", "shop": "supermarket"}, "addTags": {"brand": "Loblaws", "brand:wikidata": "Q3257626", "brand:wikipedia": "en:Loblaws", "name": "Loblaws", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": ["loblaws great food"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Londis (Ireland)": {"name": "Londis (Ireland)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/londisireland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21015800", "shop": "supermarket"}, "addTags": {"brand": "Londis", "brand:wikidata": "Q21015800", "brand:wikipedia": "en:Londis (Ireland)", "name": "Londis", "shop": "supermarket"}, "countryCodes": ["ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Londis (UK)": {"name": "Londis (UK)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/102483611097059/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21008564", "shop": "supermarket"}, "addTags": {"brand": "Londis", "brand:wikidata": "Q21008564", "brand:wikipedia": "en:Londis (United Kingdom)", "name": "Londis", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Lotte Mart": {"name": "Lotte Mart", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lottemart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q326715", "shop": "supermarket"}, "addTags": {"brand": "Lotte Mart", "brand:wikidata": "Q326715", "brand:wikipedia": "en:Lotte Mart", "name": "Lotte Mart", "shop": "supermarket"}, "countryCodes": ["id", "kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Lowe's Market": {"name": "Lowe's Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/LowesSupermarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6693107", "shop": "supermarket"}, "addTags": {"brand": "Lowe's Market", "brand:wikidata": "Q6693107", "brand:wikipedia": "en:Lowe's Market", "name": "Lowe's Market", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Lowes Foods": {"name": "Lowes Foods", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/LowesFoodsStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6693991", "shop": "supermarket"}, "addTags": {"brand": "Lowes Foods", "brand:wikidata": "Q6693991", "brand:wikipedia": "en:Lowes Foods", "name": "Lowes Foods", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Lucky": {"name": "Lucky", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/LuckySupermarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6698032", "shop": "supermarket"}, "addTags": {"brand": "Lucky", "brand:wikidata": "Q6698032", "brand:wikipedia": "en:Lucky Stores", "name": "Lucky", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["luckys"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Lupa": {"name": "Lupa", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/LupaSupermercados/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58044048", "shop": "supermarket"}, "addTags": {"brand": "Lupa", "brand:wikidata": "Q58044048", "name": "Lupa", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/M&S Foodhall": {"name": "M&S Foodhall", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/MarksandSpencer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q714491", "shop": "supermarket"}, "addTags": {"brand": "M&S Foodhall", "brand:wikidata": "Q714491", "brand:wikipedia": "en:Marks & Spencer", "name": "M&S Foodhall", "shop": "supermarket"}, "terms": ["marks & spencer foodhall"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/M&S Simply Food": {"name": "M&S Simply Food", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/MarksandSpencer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q714491", "shop": "supermarket"}, "addTags": {"brand": "M&S Simply Food", "brand:wikidata": "Q714491", "brand:wikipedia": "en:Marks & Spencer", "name": "M&S Simply Food", "shop": "supermarket"}, "terms": ["marks & spencer simply food"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/MD": {"name": "MD", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mdspa.it/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3841263", "shop": "supermarket"}, "addTags": {"brand": "MD", "brand:wikidata": "Q3841263", "brand:wikipedia": "en:MD Discount", "name": "MD", "shop": "supermarket"}, "countryCodes": ["it"], "terms": ["md discount"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/MEGAドン・キホーテ": {"name": "MEGAドン・キホーテ", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1248051445049384960/OEEckC9G_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1185381", "shop": "supermarket"}, "addTags": {"brand": "ドン・キホーテ", "brand:en": "Don Quijote", "brand:ja": "ドン・キホーテ", "brand:wikidata": "Q1185381", "brand:wikipedia": "ja:ドン・キホーテ (企業)", "name": "MEGAドン・キホーテ", "name:en": "MEGA Don Quijote", "name:ja": "MEGAドン・キホーテ", "opening_hours": "24/7", "shop": "supermarket", "short_name": "MEGAドンキ", "short_name:en": "MegaDonki", "short_name:ja": "MEGAドンキ"}, "countryCodes": ["jp"], "terms": ["メガ・ドン・キホーテ"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/MPREIS": {"name": "MPREIS", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/MPREIS.at/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q873491", "shop": "supermarket"}, "addTags": {"brand": "MPREIS", "brand:wikidata": "Q873491", "brand:wikipedia": "de:MPreis", "name": "MPREIS", "shop": "supermarket"}, "countryCodes": ["at", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Marc's": {"name": "Marc's", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/MarcsStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17080259", "shop": "supermarket"}, "addTags": {"brand": "Marc's", "brand:wikidata": "Q17080259", "brand:wikipedia": "en:Marc's", "name": "Marc's", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Markant": {"name": "Markant", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57523365", "shop": "supermarket"}, "addTags": {"brand": "Markant", "brand:wikidata": "Q57523365", "name": "Markant", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Market Basket": {"name": "Market Basket", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/marketbasket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2079198", "shop": "supermarket"}, "addTags": {"brand": "Market Basket", "brand:wikidata": "Q2079198", "brand:wikipedia": "en:Market Basket (New England)", "name": "Market Basket", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Marktkauf": {"name": "Marktkauf", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMarktkauf.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1533254", "shop": "supermarket"}, "addTags": {"brand": "Marktkauf", "brand:wikidata": "Q1533254", "brand:wikipedia": "de:Marktkauf Holding", "name": "Marktkauf", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Martin's Super Markets": {"name": "Martin's Super Markets", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/martinssupermarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6774803", "shop": "supermarket"}, "addTags": {"brand": "Martin's Super Markets", "brand:wikidata": "Q6774803", "brand:wikipedia": "en:Martin's Super Markets", "name": "Martin's Super Markets", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Masymas": {"name": "Masymas", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo-masymas%20.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6135987", "shop": "supermarket"}, "addTags": {"brand": "Masymas", "brand:wikidata": "Q6135987", "brand:wikipedia": "es:Supermercados Masymas", "name": "Masymas", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Match": {"name": "Match", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SupermarchesMatch/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q513977", "shop": "supermarket"}, "addTags": {"brand": "Match", "brand:wikidata": "Q513977", "brand:wikipedia": "en:Match (supermarket)", "name": "Match", "shop": "supermarket"}, "countryCodes": ["be", "fr", "hu", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Maxi Dia": {"name": "Maxi Dia", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/DIAEspana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q925132", "shop": "supermarket"}, "addTags": {"brand": "Maxi Dia", "brand:wikidata": "Q925132", "brand:wikipedia": "es:Supermercados DIA", "name": "Maxi Dia", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Maxima X": {"name": "Maxima X", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/MaximaLV/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1881222", "shop": "supermarket"}, "addTags": {"brand": "Maxima X", "brand:wikidata": "Q1881222", "brand:wikipedia": "en:Maxima Group", "name": "Maxima X", "shop": "supermarket"}, "countryCodes": ["bg", "ee", "lt", "lv"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Maxima XX": {"name": "Maxima XX", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/MaximaLV/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1881222", "shop": "supermarket"}, "addTags": {"brand": "Maxima XX", "brand:wikidata": "Q1881222", "brand:wikipedia": "en:Maxima Group", "name": "Maxima XX", "shop": "supermarket"}, "countryCodes": ["bg", "ee", "lt", "lv", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Maxima XXX": {"name": "Maxima XXX", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/MaximaLV/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1881222", "shop": "supermarket"}, "addTags": {"brand": "Maxima XXX", "brand:wikidata": "Q1881222", "brand:wikipedia": "en:Maxima Group", "name": "Maxima XXX", "shop": "supermarket"}, "countryCodes": ["bg", "ee", "lt", "lv", "pl"], "terms": ["maxima"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Maximarkt": {"name": "Maximarkt", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/meinmaximarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55524814", "shop": "supermarket"}, "addTags": {"brand": "Maximarkt", "brand:wikidata": "Q55524814", "brand:wikipedia": "de:Maximarkt", "name": "Maximarkt", "shop": "supermarket"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Maxi (Canada)": {"name": "Maxi (Canada)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/maxi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3302441", "shop": "supermarket"}, "addTags": {"brand": "Maxi", "brand:wikidata": "Q3302441", "brand:wikipedia": "fr:Maxi (supermarché)", "name": "Maxi", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Maxi (Serbia)": {"name": "Maxi (Serbia)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Maxi.Srbija/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6795490", "shop": "supermarket"}, "addTags": {"brand": "Maxi", "brand:wikidata": "Q6795490", "brand:wikipedia": "en:Maxi (Serbian supermarket)", "name": "Maxi", "shop": "supermarket"}, "countryCodes": ["rs"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Mega Image": {"name": "Mega Image", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/MegaImageRomania/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6808085", "shop": "supermarket"}, "addTags": {"brand": "Mega Image", "brand:wikidata": "Q6808085", "brand:wikipedia": "en:Mega Image", "name": "Mega Image", "shop": "supermarket"}, "countryCodes": ["ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Mego": {"name": "Mego", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mego.lv/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16363314", "shop": "supermarket"}, "addTags": {"brand": "Mego", "brand:wikidata": "Q16363314", "brand:wikipedia": "lv:Mego", "name": "Mego", "shop": "supermarket"}, "countryCodes": ["lv"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Meijer": {"name": "Meijer", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/meijer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1917753", "shop": "supermarket"}, "addTags": {"brand": "Meijer", "brand:wikidata": "Q1917753", "brand:wikipedia": "en:Meijer", "name": "Meijer", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Meny": {"name": "Meny", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/meny/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10581720", "shop": "supermarket"}, "addTags": {"brand": "Meny", "brand:wikidata": "Q10581720", "brand:wikipedia": "en:Meny", "name": "Meny", "shop": "supermarket"}, "countryCodes": ["dk", "no"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Mercadona": {"name": "Mercadona", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mercadona/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q377705", "shop": "supermarket"}, "addTags": {"brand": "Mercadona", "brand:wikidata": "Q377705", "brand:wikipedia": "en:Mercadona", "name": "Mercadona", "shop": "supermarket"}, "countryCodes": ["es", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Mercator": {"name": "Mercator", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Mercator/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q738412", "shop": "supermarket"}, "addTags": {"brand": "Mercator", "brand:wikidata": "Q738412", "brand:wikipedia": "en:Mercator (retail)", "name": "Mercator", "shop": "supermarket"}, "countryCodes": ["ba", "hr", "me", "rs", "si"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Merkur": {"name": "Merkur", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/merkurmarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1921857", "shop": "supermarket"}, "addTags": {"brand": "Merkur", "brand:wikidata": "Q1921857", "brand:wikipedia": "de:Merkur (Österreich)", "name": "Merkur", "shop": "supermarket"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Metro (Ontario)": {"name": "Metro (Ontario)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/metro.ontario/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1145669", "shop": "supermarket"}, "addTags": {"brand": "Metro", "brand:wikidata": "Q1145669", "brand:wikipedia": "en:Metro Inc.", "name": "Metro", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Metro (Peru)": {"name": "Metro (Peru)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/metroperu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16640217", "shop": "supermarket"}, "addTags": {"brand": "Metro", "brand:wikidata": "Q16640217", "brand:wikipedia": "en:Tiendas Metro", "name": "Metro", "shop": "supermarket"}, "countryCodes": ["pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Metro (Quebec)": {"name": "Metro (Quebec)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/metro.ontario/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1145669", "shop": "supermarket"}, "addTags": {"brand": "Metro", "brand:wikidata": "Q1145669", "brand:wikipedia": "fr:Metro (entreprise québécoise)", "name": "Metro", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Migros": {"name": "Migros", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/migros/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q680727", "shop": "supermarket"}, "addTags": {"brand": "Migros", "brand:wikidata": "Q680727", "brand:wikipedia": "en:Migros", "name": "Migros", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Mila": {"name": "Mila", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mila.zakupyazmilo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48844636", "shop": "supermarket"}, "addTags": {"brand": "Mila", "brand:wikidata": "Q48844636", "brand:wikipedia": "pl:Mila (sieć sklepów)", "name": "Mila", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Milk-Agro": {"name": "Milk-Agro", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/milkagro.sk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64173785", "shop": "supermarket"}, "addTags": {"brand": "Milk-Agro", "brand:wikidata": "Q64173785", "name": "Milk-Agro", "shop": "supermarket"}, "countryCodes": ["sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Minipreço": {"name": "Minipreço", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/minipreco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3042224", "shop": "supermarket"}, "addTags": {"brand": "Minipreço", "brand:wikidata": "Q3042224", "brand:wikipedia": "en:Minipreço", "name": "Minipreço", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Mix Markt": {"name": "Mix Markt", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mixmarkt.eu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q327854", "shop": "supermarket"}, "addTags": {"brand": "Mix Markt", "brand:wikidata": "Q327854", "brand:wikipedia": "de:Mix Markt", "name": "Mix Markt", "shop": "supermarket"}, "countryCodes": ["at", "be", "cy", "cz", "de", "es", "fr", "gb", "gr", "it", "me", "nl", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Monoprix": {"name": "Monoprix", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Monoprix/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3321241", "shop": "supermarket"}, "addTags": {"brand": "Monoprix", "brand:wikidata": "Q3321241", "brand:wikipedia": "en:Monoprix", "name": "Monoprix", "shop": "supermarket"}, "countryCodes": ["ad", "fr", "tn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/More": {"name": "More", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/morestore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6910891", "shop": "supermarket"}, "addTags": {"brand": "More", "brand:wikidata": "Q6910891", "brand:wikipedia": "en:More (store)", "name": "More", "shop": "supermarket"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Morrisons": {"name": "Morrisons", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Morrisons/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q922344", "shop": "supermarket"}, "addTags": {"brand": "Morrisons", "brand:wikidata": "Q922344", "brand:wikipedia": "en:Morrisons", "name": "Morrisons", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/NP": {"name": "NP", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNP-Markt%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15836148", "shop": "supermarket"}, "addTags": {"brand": "NP", "brand:wikidata": "Q15836148", "brand:wikipedia": "de:NP-Markt", "name": "NP", "shop": "supermarket"}, "terms": ["np-markt"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/NTUC Fairprice": {"name": "NTUC Fairprice", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/thatsmyfairprice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6955519", "shop": "supermarket"}, "addTags": {"brand": "NTUC Fairprice", "brand:wikidata": "Q6955519", "brand:wikipedia": "en:NTUC FairPrice", "name": "NTUC Fairprice", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Nah & Frisch": {"name": "Nah & Frisch", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/nahundfrisch.at/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1963643", "shop": "supermarket"}, "addTags": {"brand": "Nah & Frisch", "brand:wikidata": "Q1963643", "brand:wikipedia": "de:Nah & Frisch", "name": "Nah & Frisch", "shop": "supermarket"}, "countryCodes": ["at", "de"], "terms": ["nah und frisch"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Nahkauf": {"name": "Nahkauf", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/nahkauf/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57515238", "shop": "supermarket"}, "addTags": {"brand": "Nahkauf", "brand:wikidata": "Q57515238", "name": "Nahkauf", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Naturalia": {"name": "Naturalia", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Naturaliamagasinsbio/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3337081", "shop": "supermarket"}, "addTags": {"brand": "Naturalia", "brand:wikidata": "Q3337081", "brand:wikipedia": "fr:Naturalia", "name": "Naturalia", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Netto Marken-Discount": {"name": "Netto Marken-Discount", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/nettomarkendiscount/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q879858", "shop": "supermarket"}, "addTags": {"brand": "Netto Marken-Discount", "brand:wikidata": "Q879858", "brand:wikipedia": "de:Netto Marken-Discount", "name": "Netto Marken-Discount", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Netto (Les Mousquetaires)": {"name": "Netto (Les Mousquetaires)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/nettofrance/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2720988", "shop": "supermarket"}, "addTags": {"brand": "Netto", "brand:wikidata": "Q2720988", "brand:wikipedia": "fr:Netto", "name": "Netto", "shop": "supermarket"}, "countryCodes": ["fr", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Netto (Salling)": {"name": "Netto (Salling)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/nettodk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q552652", "shop": "supermarket"}, "addTags": {"brand": "Netto", "brand:wikidata": "Q552652", "brand:wikipedia": "da:Netto (supermarkedskæde)", "name": "Netto", "shop": "supermarket"}, "countryCodes": ["da", "de", "pl", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Nettó (Iceland)": {"name": "Nettó (Iceland)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/netto.is/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q67205962", "shop": "supermarket"}, "addTags": {"brand": "Nettó", "brand:wikidata": "Q67205962", "name": "Nettó", "shop": "supermarket"}, "countryCodes": ["is"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/New Seasons Market": {"name": "New Seasons Market", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/976972905975136256/NeeBGHeX_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7011463", "shop": "supermarket"}, "addTags": {"brand": "New Seasons Market", "brand:wikidata": "Q7011463", "brand:wikipedia": "en:New Seasons Market", "name": "New Seasons Market", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["new seasons"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/New World": {"name": "New World", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/newworld/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7012488", "shop": "supermarket"}, "addTags": {"brand": "New World", "brand:wikidata": "Q7012488", "brand:wikipedia": "en:New World (supermarket)", "name": "New World", "shop": "supermarket"}, "countryCodes": ["nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Nisa Extra": {"name": "Nisa Extra", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/nisalocally/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16999069", "shop": "supermarket"}, "addTags": {"brand": "Nisa Extra", "brand:wikidata": "Q16999069", "brand:wikipedia": "en:Nisa (retailer)", "name": "Nisa Extra", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/No Frills": {"name": "No Frills", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/nofrillsCA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3342407", "shop": "supermarket"}, "addTags": {"brand": "No Frills", "brand:wikidata": "Q3342407", "brand:wikipedia": "en:No Frills (grocery store)", "name": "No Frills", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Norfa XL": {"name": "Norfa XL", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Norfalt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1998983", "shop": "supermarket"}, "addTags": {"brand": "Norfa XL", "brand:wikidata": "Q1998983", "brand:wikipedia": "lt:Norfa", "name": "Norfa XL", "shop": "supermarket"}, "countryCodes": ["lt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Norma": {"name": "Norma", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FNorma%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q450180", "shop": "supermarket"}, "addTags": {"brand": "Norma", "brand:wikidata": "Q450180", "brand:wikipedia": "de:Norma (Handelskette)", "name": "Norma", "shop": "supermarket"}, "countryCodes": ["at", "cz", "de", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Northern Store": {"name": "Northern Store", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/TheNorthWestCompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7754361", "shop": "supermarket"}, "addTags": {"brand": "Northern Store", "brand:wikidata": "Q7754361", "brand:wikipedia": "en:The North West Company", "name": "Northern Store", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Okay": {"name": "Okay", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/okaycompact/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2159701", "shop": "supermarket"}, "addTags": {"brand": "Okay", "brand:wikidata": "Q2159701", "brand:wikipedia": "fr:OKay", "name": "Okay", "shop": "supermarket"}, "countryCodes": ["be"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Olímpica": {"name": "Olímpica", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SupertiendaOlimpica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24749847", "shop": "supermarket"}, "addTags": {"brand": "Olímpica", "brand:wikidata": "Q24749847", "brand:wikipedia": "es:Grupo Empresarial Olímpica", "name": "Olímpica", "shop": "supermarket"}, "countryCodes": ["co"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/PLUS": {"name": "PLUS", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/PLUSsupermarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1978981", "shop": "supermarket"}, "addTags": {"brand": "PLUS", "brand:wikidata": "Q1978981", "brand:wikipedia": "nl:PLUS (Nederlandse supermarkt)", "name": "PLUS", "shop": "supermarket"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/POLOmarket": {"name": "POLOmarket", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/polomarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11821937", "shop": "supermarket"}, "addTags": {"brand": "POLOmarket", "brand:wikidata": "Q11821937", "brand:wikipedia": "pl:Polomarket", "name": "POLOmarket", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Palí": {"name": "Palí", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/PaliCostaRica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1064887", "shop": "supermarket"}, "addTags": {"brand": "Palí", "brand:wikidata": "Q1064887", "brand:wikipedia": "es:Walmart de México y Centroamérica", "name": "Palí", "shop": "supermarket"}, "countryCodes": ["cr", "ni"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Pam": {"name": "Pam", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/pampanoramaufficiale/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3777398", "shop": "supermarket"}, "addTags": {"brand": "Pam", "brand:wikidata": "Q3777398", "brand:wikipedia": "it:Gruppo PAM", "name": "Pam", "shop": "supermarket"}, "countryCodes": ["ch", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Patel Brothers": {"name": "Patel Brothers", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/pbrosfan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55641396", "shop": "supermarket"}, "addTags": {"brand": "Patel Brothers", "brand:wikidata": "Q55641396", "brand:wikipedia": "en:Patel Brothers", "cuisine": "indian", "name": "Patel Brothers", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Pavilions": {"name": "Pavilions", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/pavilions/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7155886", "shop": "supermarket"}, "addTags": {"brand": "Pavilions", "brand:wikidata": "Q7155886", "brand:wikipedia": "en:Pavilions (supermarket)", "name": "Pavilions", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Penny": {"name": "Penny", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPenny-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q284688", "shop": "supermarket"}, "addTags": {"brand": "Penny", "brand:wikidata": "Q284688", "brand:wikipedia": "en:Penny (supermarket)", "name": "Penny", "shop": "supermarket"}, "countryCodes": ["at", "cz", "de", "hu", "it", "ro"], "terms": ["penny market", "penny markt"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Pick 'n Save": {"name": "Pick 'n Save", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/PickNSaveStores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7371288", "shop": "supermarket"}, "addTags": {"brand": "Pick 'n Save", "brand:wikidata": "Q7371288", "brand:wikipedia": "en:Roundy's", "name": "Pick 'n Save", "shop": "supermarket"}, "countryCodes": ["us", "za"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Pick n Pay": {"name": "Pick n Pay", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Picknpay/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7190735", "shop": "supermarket"}, "addTags": {"brand": "Pick n Pay", "brand:wikidata": "Q7190735", "brand:wikipedia": "en:Pick n Pay Stores", "name": "Pick n Pay", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Piggly Wiggly": {"name": "Piggly Wiggly", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/pigglywigglystores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3388303", "shop": "supermarket"}, "addTags": {"brand": "Piggly Wiggly", "brand:wikidata": "Q3388303", "brand:wikipedia": "en:Piggly Wiggly", "name": "Piggly Wiggly", "shop": "supermarket"}, "countryCodes": ["gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Pingo Doce": {"name": "Pingo Doce", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/pingodoce/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1575057", "shop": "supermarket"}, "addTags": {"brand": "Pingo Doce", "brand:wikidata": "Q1575057", "brand:wikipedia": "en:Pingo Doce", "name": "Pingo Doce", "shop": "supermarket"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Piotr i Paweł": {"name": "Piotr i Paweł", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/piotripawelstronaoficjalna/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2096356", "shop": "supermarket"}, "addTags": {"brand": "Piotr i Paweł", "brand:wikidata": "Q2096356", "brand:wikipedia": "pl:Piotr i Paweł", "name": "Piotr i Paweł", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Plaza Vea": {"name": "Plaza Vea", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/PlazaVeaOficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7203672", "shop": "supermarket"}, "addTags": {"brand": "Plaza Vea", "brand:wikidata": "Q7203672", "brand:wikipedia": "en:Plaza Vea", "name": "Plaza Vea", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Plodine": {"name": "Plodine", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/PlodineHrvatska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58040098", "shop": "supermarket"}, "addTags": {"brand": "Plodine", "brand:wikidata": "Q58040098", "name": "Plodine", "shop": "supermarket"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Poiesz": {"name": "Poiesz", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/poieszsupermarkten/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2521700", "shop": "supermarket"}, "addTags": {"brand": "Poiesz", "brand:wikidata": "Q2521700", "brand:wikipedia": "nl:Poiesz Supermarkten", "name": "Poiesz", "shop": "supermarket"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Price Chopper (Kansas City)": {"name": "Price Chopper (Kansas City)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mypricechopper/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7242572", "shop": "supermarket"}, "addTags": {"brand": "Price Chopper", "brand:wikidata": "Q7242572", "brand:wikipedia": "en:Price Chopper (supermarket)", "name": "Price Chopper", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Price Chopper (New York)": {"name": "Price Chopper (New York)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/PriceChopper/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7242574", "shop": "supermarket"}, "addTags": {"brand": "Price Chopper", "brand:wikidata": "Q7242574", "brand:wikipedia": "en:Price Chopper Supermarkets", "name": "Price Chopper", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Prisma": {"name": "Prisma", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/prisma.fi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12047031", "shop": "supermarket"}, "addTags": {"brand": "Prisma", "brand:wikidata": "Q12047031", "brand:wikipedia": "fi:Prisma (kauppaketju)", "name": "Prisma", "shop": "supermarket"}, "countryCodes": ["ee", "fi", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Prix": {"name": "Prix", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/prixqualitaitaliana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61994819", "shop": "supermarket"}, "addTags": {"brand": "Prix", "brand:wikidata": "Q61994819", "name": "Prix", "shop": "supermarket"}, "countryCodes": ["it"], "terms": ["prix quality"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Profi": {"name": "Profi", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Profi.ro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q956664", "shop": "supermarket"}, "addTags": {"brand": "Profi", "brand:wikidata": "Q956664", "brand:wikipedia": "en:Profi", "name": "Profi", "shop": "supermarket"}, "countryCodes": ["be", "hu", "ro"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Provigo": {"name": "Provigo", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ProvigoleMarcheTroisRivieres/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3408306", "shop": "supermarket"}, "addTags": {"brand": "Provigo", "brand:wikidata": "Q3408306", "brand:wikipedia": "fr:Provigo", "name": "Provigo", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Proxy Delhaize": {"name": "Proxy Delhaize", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Delhaize/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q14903417", "shop": "supermarket"}, "addTags": {"brand": "Proxy Delhaize", "brand:wikidata": "Q14903417", "brand:wikipedia": "en:Delhaize Group", "name": "Proxy Delhaize", "shop": "supermarket"}, "countryCodes": ["be", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Publix": {"name": "Publix", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/publix/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q672170", "shop": "supermarket"}, "addTags": {"brand": "Publix", "brand:wikidata": "Q672170", "brand:wikipedia": "en:Publix", "name": "Publix", "shop": "supermarket"}, "countryCodes": ["br", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Pueblo": {"name": "Pueblo", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/supermercadospueblo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7258464", "shop": "supermarket"}, "addTags": {"brand": "Pueblo", "brand:wikidata": "Q7258464", "brand:wikipedia": "en:Pueblo Supermarkets", "name": "Pueblo", "official_name": "Supermercados Pueblo", "official_name:en": "Pueblo Supermarkets", "official_name:es": "Supermercados Pueblo", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Punto Simply": {"name": "Punto Simply", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SDASUPERMERCATI/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3484790", "shop": "supermarket"}, "addTags": {"brand": "Punto Simply", "brand:wikidata": "Q3484790", "brand:wikipedia": "it:Simply Market", "name": "Punto Simply", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Puregold": {"name": "Puregold", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/puregold.shopping/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7261170", "shop": "supermarket"}, "addTags": {"brand": "Puregold", "brand:wikidata": "Q7261170", "brand:wikipedia": "en:Puregold", "name": "Puregold", "shop": "supermarket"}, "countryCodes": ["ph"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Pão de Açúcar": {"name": "Pão de Açúcar", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/paodeacucar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3411543", "shop": "supermarket"}, "addTags": {"brand": "Pão de Açúcar", "brand:wikidata": "Q3411543", "brand:wikipedia": "pt:Pão de Açúcar (supermercado brasileiro)", "name": "Pão de Açúcar", "shop": "supermarket"}, "countryCodes": ["br", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/QFC": {"name": "QFC", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/QFC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7265425", "shop": "supermarket"}, "addTags": {"brand": "QFC", "brand:wikidata": "Q7265425", "brand:wikipedia": "en:QFC", "name": "QFC", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Raley's": {"name": "Raley's", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/raleys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7286970", "shop": "supermarket"}, "addTags": {"brand": "Raley's", "brand:wikidata": "Q7286970", "brand:wikipedia": "en:Raley's Supermarkets", "name": "Raley's", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Ralphs": {"name": "Ralphs", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Ralphs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3929820", "shop": "supermarket"}, "addTags": {"brand": "Ralphs", "brand:wikidata": "Q3929820", "brand:wikipedia": "en:Ralphs", "name": "Ralphs", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Real": {"name": "Real", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/real/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q698473", "shop": "supermarket"}, "addTags": {"brand": "Real", "brand:wikidata": "Q698473", "brand:wikipedia": "en:Real (hypermarket)", "name": "Real", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Real Canadian Superstore": {"name": "Real Canadian Superstore", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/RealCanadianSuperstore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7300856", "shop": "supermarket"}, "addTags": {"brand": "Real Canadian Superstore", "brand:wikidata": "Q7300856", "brand:wikipedia": "en:Real Canadian Superstore", "name": "Real Canadian Superstore", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Redner's": {"name": "Redner's", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7306166", "shop": "supermarket"}, "addTags": {"brand": "Redner's", "brand:wikidata": "Q7306166", "brand:wikipedia": "en:Redner's Markets", "name": "Redner's", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["redners warehouse market"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Reliance Fresh": {"name": "Reliance Fresh", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/RelianceFreshOfficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7311014", "shop": "supermarket"}, "addTags": {"brand": "Reliance Fresh", "brand:wikidata": "Q7311014", "brand:wikipedia": "en:Reliance Fresh", "name": "Reliance Fresh", "shop": "supermarket"}, "countryCodes": ["in"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Rema 1000": {"name": "Rema 1000", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/REMA1000/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q28459", "shop": "supermarket"}, "addTags": {"brand": "Rema 1000", "brand:wikidata": "Q28459", "brand:wikipedia": "en:REMA 1000", "name": "Rema 1000", "shop": "supermarket"}, "countryCodes": ["dk", "no"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Rewe": {"name": "Rewe", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Rewe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16968817", "shop": "supermarket"}, "addTags": {"brand": "Rewe", "brand:wikidata": "Q16968817", "brand:wikipedia": "en:REWE", "name": "Rewe", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Rewe City": {"name": "Rewe City", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Rewe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16968817", "shop": "supermarket"}, "addTags": {"brand": "Rewe City", "brand:wikidata": "Q16968817", "brand:wikipedia": "en:REWE", "name": "Rewe City", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Rimi": {"name": "Rimi", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRimi%20Baltic%20Logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3741108", "shop": "supermarket"}, "addTags": {"brand": "Rimi", "brand:wikidata": "Q3741108", "brand:wikipedia": "en:Rimi Baltic", "name": "Rimi", "shop": "supermarket"}, "countryCodes": ["ee", "lt", "lv"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/S-market": {"name": "S-market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/smarketkemio/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11891613", "shop": "supermarket"}, "addTags": {"brand": "S-market", "brand:wikidata": "Q11891613", "brand:wikipedia": "fi:S-market", "name": "S-market", "shop": "supermarket"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Safeway": {"name": "Safeway", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Safeway/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1508234", "shop": "supermarket"}, "addTags": {"brand": "Safeway", "brand:wikidata": "Q1508234", "brand:wikipedia": "en:Safeway Inc.", "name": "Safeway", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Sainsbury's": {"name": "Sainsbury's", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/sainsburys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q152096", "shop": "supermarket"}, "addTags": {"brand": "Sainsbury's", "brand:wikidata": "Q152096", "brand:wikipedia": "en:Sainsbury's", "name": "Sainsbury's", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Santa Isabel": {"name": "Santa Isabel", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SantaIsabelChile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7419620", "shop": "supermarket"}, "addTags": {"brand": "Santa Isabel", "brand:wikidata": "Q7419620", "brand:wikipedia": "es:Santa Isabel (supermercado)", "name": "Santa Isabel", "shop": "supermarket"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Save-A-Lot": {"name": "Save-A-Lot", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/savealot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7427972", "shop": "supermarket"}, "addTags": {"brand": "Save-A-Lot", "brand:wikidata": "Q7427972", "brand:wikipedia": "en:Save-A-Lot", "name": "Save-A-Lot", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Save-On-Foods": {"name": "Save-On-Foods", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SaveOnFoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7427974", "shop": "supermarket"}, "addTags": {"brand": "Save-On-Foods", "brand:wikidata": "Q7427974", "brand:wikipedia": "en:Save-On-Foods", "name": "Save-On-Foods", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Schnucks": {"name": "Schnucks", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Schnucks/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7431920", "shop": "supermarket"}, "addTags": {"brand": "Schnucks", "brand:wikidata": "Q7431920", "brand:wikipedia": "en:Schnucks", "name": "Schnucks", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Selver": {"name": "Selver", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3771177", "shop": "supermarket"}, "addTags": {"brand": "Selver", "brand:wikidata": "Q3771177", "brand:wikipedia": "en:Selver", "name": "Selver", "shop": "supermarket"}, "countryCodes": ["ee"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Shaw's": {"name": "Shaw's", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Shaws/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q578387", "shop": "supermarket"}, "addTags": {"brand": "Shaw's", "brand:wikidata": "Q578387", "brand:wikipedia": "en:Shaw's and Star Market", "name": "Shaw's", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Sheng Siong": {"name": "Sheng Siong", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3481878", "shop": "supermarket"}, "addTags": {"brand": "Sheng Siong", "brand:wikidata": "Q3481878", "brand:wikipedia": "en:Sheng Siong", "name": "Sheng Siong", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ShopRite (USA)": {"name": "ShopRite (USA)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/shoprite.supermarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7501097", "shop": "supermarket"}, "addTags": {"brand": "ShopRite", "brand:wikidata": "Q7501097", "brand:wikipedia": "en:ShopRite (United States)", "name": "ShopRite", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Shoprite (Africa)": {"name": "Shoprite (Africa)", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ShopriteSA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1857639", "shop": "supermarket"}, "addTags": {"brand": "Shoprite", "brand:wikidata": "Q1857639", "brand:wikipedia": "en:Shoprite (South Africa)", "name": "Shoprite", "shop": "supermarket"}, "countryCodes": ["ao", "bw", "cd", "gh", "ls", "mg", "mu", "mw", "mz", "na", "ng", "sz", "ug", "za", "zm"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Shoprite (Isle of Man)": {"name": "Shoprite (Isle of Man)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7501242", "shop": "supermarket"}, "addTags": {"brand": "Shoprite", "brand:wikidata": "Q7501242", "brand:wikipedia": "en:Shoprite (Isle of Man)", "name": "Shoprite", "shop": "supermarket"}, "countryCodes": ["im"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Sigma": {"name": "Sigma", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/supermercatisigmaitalia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3977979", "shop": "supermarket"}, "addTags": {"brand": "Sigma", "brand:wikidata": "Q3977979", "brand:wikipedia": "it:Supermercati Sigma", "name": "Sigma", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Simply Market": {"name": "Simply Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SDASUPERMERCATI/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3484790", "shop": "supermarket"}, "addTags": {"brand": "Simply Market", "brand:wikidata": "Q3484790", "brand:wikipedia": "en:Simply Market", "name": "Simply Market", "shop": "supermarket"}, "terms": ["simply"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Sky": {"name": "Sky", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCoop%20Deutschland%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1129779", "shop": "supermarket"}, "addTags": {"brand": "Sky", "brand:wikidata": "Q1129779", "brand:wikipedia": "de:Coop eG", "name": "Sky", "shop": "supermarket"}, "countryCodes": ["de", "lv", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Smart & Final": {"name": "Smart & Final", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SmartFinal/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7543916", "shop": "supermarket"}, "addTags": {"brand": "Smart & Final", "brand:wikidata": "Q7543916", "brand:wikipedia": "en:Smart & Final", "name": "Smart & Final", "shop": "supermarket"}, "countryCodes": ["mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Smatch": {"name": "Smatch", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5185959", "shop": "supermarket"}, "addTags": {"brand": "Smatch", "brand:wikidata": "Q5185959", "brand:wikipedia": "fr:Smatch", "name": "Smatch", "shop": "supermarket"}, "countryCodes": ["be", "lu"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Smith's": {"name": "Smith's", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1192029587607343104/HcbJ1_RT_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7544856", "shop": "supermarket"}, "addTags": {"brand": "Smith's", "brand:wikidata": "Q7544856", "brand:wikipedia": "en:Smith's Food and Drug", "name": "Smith's", "shop": "supermarket"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Sobeys": {"name": "Sobeys", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Sobeys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1143340", "shop": "supermarket"}, "addTags": {"brand": "Sobeys", "brand:wikidata": "Q1143340", "brand:wikipedia": "en:Sobeys", "name": "Sobeys", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Soriana": {"name": "Soriana", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/tiendasoriana/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q735562", "shop": "supermarket"}, "addTags": {"brand": "Soriana", "brand:wikidata": "Q735562", "brand:wikipedia": "en:Soriana", "name": "Soriana", "shop": "supermarket"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Sorli Discau": {"name": "Sorli Discau", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1205054191066124289/xaCxY6XI_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21034458", "shop": "supermarket"}, "addTags": {"brand": "Sorli Discau", "brand:wikidata": "Q21034458", "brand:wikipedia": "ca:Sorli", "name": "Sorli Discau", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Spar": {"name": "Spar", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/639011130107633664/nLN6cXfa_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q610492", "shop": "supermarket"}, "addTags": {"brand": "Spar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Spar", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Społem": {"name": "Społem", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SpolemSpoldzielczoscSpozywcow/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11826043", "shop": "supermarket"}, "addTags": {"brand": "Społem", "brand:wikidata": "Q11826043", "brand:wikipedia": "pl:Powszechna Spółdzielnia Spożywców „Społem”", "name": "Społem", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Sprouts Farmers Market": {"name": "Sprouts Farmers Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SproutsFarmersMarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7581369", "shop": "supermarket"}, "addTags": {"brand": "Sprouts Farmers Market", "brand:wikidata": "Q7581369", "brand:wikipedia": "en:Sprouts Farmers Market", "name": "Sprouts Farmers Market", "shop": "supermarket", "short_name": "Sprouts"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Stater Bros.": {"name": "Stater Bros.", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/StaterBrosMarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7604016", "shop": "supermarket"}, "addTags": {"brand": "Stater Bros.", "brand:wikidata": "Q7604016", "brand:wikipedia": "en:Stater Bros.", "name": "Stater Bros.", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["stater brothers"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Stokrotka": {"name": "Stokrotka", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/sklepy.stokrotka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9345945", "shop": "supermarket"}, "addTags": {"brand": "Stokrotka", "brand:wikidata": "Q9345945", "brand:wikipedia": "pl:Stokrotka (sieć handlowa)", "name": "Stokrotka", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Stop & Shop": {"name": "Stop & Shop", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/StopandShop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3658429", "shop": "supermarket"}, "addTags": {"brand": "Stop & Shop", "brand:wikidata": "Q3658429", "brand:wikipedia": "en:Stop & Shop", "name": "Stop & Shop", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Suma": {"name": "Suma", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58012362", "shop": "supermarket"}, "addTags": {"brand": "Suma", "brand:wikidata": "Q58012362", "name": "Suma", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Supabarn": {"name": "Supabarn", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSupabarn%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7641883", "shop": "supermarket"}, "addTags": {"brand": "Supabarn", "brand:wikidata": "Q7641883", "brand:wikipedia": "en:Supabarn Supermarkets", "name": "Supabarn", "official_name": "Supabarn Supermarkets", "shop": "supermarket"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Super C": {"name": "Super C", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/superc.ca/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3504127", "shop": "supermarket"}, "addTags": {"brand": "Super C", "brand:wikidata": "Q3504127", "brand:wikipedia": "fr:Super C (entreprise)", "name": "Super C", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Super H Mart": {"name": "Super H Mart", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/hmartofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5636306", "shop": "supermarket"}, "addTags": {"brand": "H Mart", "brand:wikidata": "Q5636306", "brand:wikipedia": "en:H Mart", "cuisine": "asian", "name": "Super H Mart", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Super One Foods": {"name": "Super One Foods", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SuperOneGrocery/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17108733", "shop": "supermarket"}, "addTags": {"brand": "Super One Foods", "brand:wikidata": "Q17108733", "brand:wikipedia": "en:Super One Foods", "name": "Super One Foods", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Super U": {"name": "Super U", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ULesCommercants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2529029", "shop": "supermarket"}, "addTags": {"brand": "Super U", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "Super U", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Super del Norte": {"name": "Super del Norte", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/superdelnorte/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q88388513", "shop": "supermarket"}, "addTags": {"brand": "Super del Norte", "brand:wikidata": "Q88388513", "name": "Super del Norte", "shop": "supermarket"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/SuperBrugsen": {"name": "SuperBrugsen", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SuperBrugsen/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12337746", "shop": "supermarket"}, "addTags": {"brand": "SuperBrugsen", "brand:wikidata": "Q12337746", "brand:wikipedia": "en:SuperBrugsen", "name": "SuperBrugsen", "shop": "supermarket"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/SuperValu": {"name": "SuperValu", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SuperValuIreland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7642081", "shop": "supermarket"}, "addTags": {"brand": "SuperValu", "brand:wikidata": "Q7642081", "brand:wikipedia": "en:SuperValu (Ireland)", "name": "SuperValu", "shop": "supermarket"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/SuperVerd": {"name": "SuperVerd", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/superverd/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11950546", "shop": "supermarket"}, "addTags": {"brand": "Superverd", "brand:wikidata": "Q11950546", "brand:wikipedia": "ca:Superverd", "name": "Superverd", "shop": "supermarket"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Superama": {"name": "Superama", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1145720603724455942/zkMvSg5e_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6135762", "shop": "supermarket"}, "addTags": {"brand": "Superama", "brand:wikidata": "Q6135762", "brand:wikipedia": "es:Superama", "name": "Superama", "shop": "supermarket"}, "countryCodes": ["mx"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Supercor": {"name": "Supercor", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/tusupercor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6135841", "shop": "supermarket"}, "addTags": {"brand": "Supercor", "brand:wikidata": "Q6135841", "brand:wikipedia": "es:Supercor", "name": "Supercor", "shop": "supermarket"}, "countryCodes": ["es", "pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Supersol": {"name": "Supersol", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SupersolSupermercados/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62073427", "shop": "supermarket"}, "addTags": {"brand": "Supersol", "brand:wikidata": "Q62073427", "name": "Supersol", "shop": "supermarket"}, "countryCodes": ["ar", "es", "ma", "uy"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Superspar": {"name": "Superspar", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/639011130107633664/nLN6cXfa_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q610492", "shop": "supermarket"}, "addTags": {"brand": "Superspar", "brand:wikidata": "Q610492", "brand:wikipedia": "en:Spar (retailer)", "name": "Superspar", "shop": "supermarket"}, "countryCodes": ["es", "za"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/T&T Supermarket": {"name": "T&T Supermarket", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/TTSupermarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q837893", "shop": "supermarket"}, "addTags": {"brand": "T&T Supermarket", "brand:wikidata": "Q837893", "brand:wikipedia": "en:T & T Supermarket", "name": "T&T Supermarket", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tegut": {"name": "Tegut", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/tegut/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1547993", "shop": "supermarket"}, "addTags": {"brand": "Tegut", "brand:wikidata": "Q1547993", "brand:wikipedia": "en:Tegut", "name": "Tegut", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tesco": {"name": "Tesco", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/1183230681723205/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q487494", "shop": "supermarket"}, "addTags": {"brand": "Tesco", "brand:wikidata": "Q487494", "brand:wikipedia": "en:Tesco", "name": "Tesco", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tesco Extra": {"name": "Tesco Extra", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1168444842420187138/sBm0zlbM_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25172225", "shop": "supermarket"}, "addTags": {"brand": "Tesco Extra", "brand:wikidata": "Q25172225", "brand:wikipedia": "en:Tesco Extra", "name": "Tesco Extra", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tesco Lotus": {"name": "Tesco Lotus", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2378901", "shop": "supermarket"}, "addTags": {"brand": "Tesco Lotus", "brand:wikidata": "Q2378901", "brand:wikipedia": "th:เทสโก้ โลตัส", "name": "Tesco Lotus", "shop": "supermarket"}, "countryCodes": ["th"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tesco Metro": {"name": "Tesco Metro", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1168444842420187138/sBm0zlbM_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57551648", "shop": "supermarket"}, "addTags": {"brand": "Tesco Metro", "brand:wikidata": "Q57551648", "name": "Tesco Metro", "shop": "supermarket"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/The Food Warehouse": {"name": "The Food Warehouse", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/FoodWarehouse/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87263899", "shop": "supermarket"}, "addTags": {"brand": "The Food Warehouse", "brand:wikidata": "Q87263899", "name": "The Food Warehouse", "shop": "supermarket"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/The Fresh Market": {"name": "The Fresh Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/TheFreshMarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7735265", "shop": "supermarket"}, "addTags": {"brand": "The Fresh Market", "brand:wikidata": "Q7735265", "brand:wikipedia": "en:The Fresh Market", "name": "The Fresh Market", "shop": "supermarket"}, "countryCodes": ["us"], "terms": ["fresh market"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/The Grocery Outlet": {"name": "The Grocery Outlet", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/almostperfectinc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16062155", "shop": "supermarket"}, "addTags": {"brand": "The Grocery Outlet", "brand:wikidata": "Q16062155", "brand:wikipedia": "en:The Grocery Outlet", "name": "The Grocery Outlet", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tigros": {"name": "Tigros", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Tigros/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24935610", "shop": "supermarket"}, "addTags": {"brand": "Tigros", "brand:wikidata": "Q24935610", "brand:wikipedia": "it:Tigros", "name": "Tigros", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Todis": {"name": "Todis", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/todisbuongiornoconvenienza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3992174", "shop": "supermarket"}, "addTags": {"brand": "Todis", "brand:wikidata": "Q3992174", "brand:wikipedia": "it:Todis", "name": "Todis", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tommy": {"name": "Tommy", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/tommyprodavaonice/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12643718", "shop": "supermarket"}, "addTags": {"brand": "Tommy", "brand:wikidata": "Q12643718", "brand:wikipedia": "hr:Tommy", "name": "Tommy", "shop": "supermarket"}, "countryCodes": ["hr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Top Market": {"name": "Top Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/topmarketpolska/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9360044", "shop": "supermarket"}, "addTags": {"brand": "Top Market", "brand:wikidata": "Q9360044", "brand:wikipedia": "pl:Top Market", "name": "Top Market", "shop": "supermarket"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tops": {"name": "Tops", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/topsfriendlymarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7825137", "shop": "supermarket"}, "addTags": {"brand": "Tops", "brand:wikidata": "Q7825137", "brand:wikipedia": "en:Tops Friendly Markets", "name": "Tops", "official_name": "Tops Friendly Markets", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tottus": {"name": "Tottus", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/TottusPeru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7828510", "shop": "supermarket"}, "addTags": {"brand": "Tottus", "brand:wikidata": "Q7828510", "brand:wikipedia": "en:Tottus", "name": "Tottus", "shop": "supermarket"}, "countryCodes": ["cl", "pe"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Trader Joe's": {"name": "Trader Joe's", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/156443021054392/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q688825", "shop": "supermarket"}, "addTags": {"brand": "Trader Joe's", "brand:wikidata": "Q688825", "brand:wikipedia": "en:Trader Joe's", "name": "Trader Joe's", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Treff 3000": {"name": "Treff 3000", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/EDEKA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q701755", "shop": "supermarket"}, "addTags": {"brand": "Treff 3000", "brand:wikidata": "Q701755", "brand:wikipedia": "de:Edeka", "name": "Treff 3000", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Tuodì": {"name": "Tuodì", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/TUODI.it/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3706995", "shop": "supermarket"}, "addTags": {"brand": "Tuodì", "brand:wikidata": "Q3706995", "brand:wikipedia": "it:Tuodì", "name": "Tuodì", "shop": "supermarket"}, "countryCodes": ["it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/U Express": {"name": "U Express", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ULesCommercants/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2529029", "shop": "supermarket"}, "addTags": {"brand": "U Express", "brand:wikidata": "Q2529029", "brand:wikipedia": "en:Système U", "name": "U Express", "shop": "supermarket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Unimarc": {"name": "Unimarc", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/unimarc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6156244", "shop": "supermarket"}, "addTags": {"brand": "Unimarc", "brand:wikidata": "Q6156244", "brand:wikipedia": "es:Unimarc", "name": "Unimarc", "shop": "supermarket"}, "countryCodes": ["cl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Unimarkt": {"name": "Unimarkt", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Unimarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1169599", "shop": "supermarket"}, "addTags": {"brand": "Unimarkt", "brand:wikidata": "Q1169599", "brand:wikipedia": "de:Unimarkt", "name": "Unimarkt", "shop": "supermarket"}, "countryCodes": ["at"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Vallarta": {"name": "Vallarta", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/vallarta.supermarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7911833", "shop": "supermarket"}, "addTags": {"brand": "Vallarta", "brand:wikidata": "Q7911833", "brand:wikipedia": "en:Vallarta Supermarkets", "cuisine": "latin_american", "name": "Vallarta", "name:es": "Vallarta", "official_name": "Vallarta Supermarkets", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Valu-mart": {"name": "Valu-mart", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/valumartCA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7912687", "shop": "supermarket"}, "addTags": {"brand": "Valu-mart", "brand:wikidata": "Q7912687", "brand:wikipedia": "en:Valu-mart", "name": "Valu-mart", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Vea": {"name": "Vea", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/760081378868391936/qPOPFsTZ_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5858167", "shop": "supermarket"}, "addTags": {"brand": "Vea", "brand:wikidata": "Q5858167", "brand:wikipedia": "es:Vea (supermercado)", "name": "Vea", "shop": "supermarket"}, "countryCodes": ["ar"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/VinMart": {"name": "VinMart", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/sieuthivinmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60245505", "shop": "supermarket"}, "addTags": {"brand": "VinMart", "brand:wikidata": "Q60245505", "brand:wikipedia": "vi:VinMart", "name": "VinMart", "shop": "supermarket"}, "countryCodes": ["vn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Volg": {"name": "Volg", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/1953378021650189/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2530746", "shop": "supermarket"}, "addTags": {"brand": "Volg", "brand:wikidata": "Q2530746", "brand:wikipedia": "de:Volg", "name": "Volg", "shop": "supermarket"}, "countryCodes": ["ch", "li"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Vomar": {"name": "Vomar", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/vomarvoordeelmarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3202837", "shop": "supermarket"}, "addTags": {"brand": "Vomar", "brand:wikidata": "Q3202837", "brand:wikipedia": "nl:Vomar", "name": "Vomar", "shop": "supermarket"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Vons": {"name": "Vons", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/vons/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7941609", "shop": "supermarket"}, "addTags": {"brand": "Vons", "brand:wikidata": "Q7941609", "brand:wikipedia": "en:Vons", "name": "Vons", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Waitrose": {"name": "Waitrose", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/waitroseandpartners/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q771734", "shop": "supermarket"}, "addTags": {"brand": "Waitrose", "brand:wikidata": "Q771734", "brand:wikipedia": "en:Waitrose & Partners", "name": "Waitrose", "official_name": "Waitrose & Partners", "shop": "supermarket"}, "countryCodes": ["gb", "je"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Walmart Neighborhood Market": {"name": "Walmart Neighborhood Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q483551", "shop": "supermarket"}, "addTags": {"brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "name": "Walmart Neighborhood Market", "shop": "supermarket"}, "countryCodes": ["ca", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Walmart Supercenter": {"name": "Walmart Supercenter", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q483551", "shop": "supermarket"}, "addTags": {"brand": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "en:Walmart", "name": "Walmart Supercenter", "shop": "supermarket"}, "terms": ["walmart supercentre"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Wasgau": {"name": "Wasgau", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/wasgau/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2536857", "shop": "supermarket"}, "addTags": {"brand": "Wasgau", "brand:wikidata": "Q2536857", "brand:wikipedia": "de:Wasgau (Unternehmen)", "name": "Wasgau", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Wegmans": {"name": "Wegmans", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Wegmans/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11288478", "shop": "supermarket"}, "addTags": {"brand": "Wegmans", "brand:wikidata": "Q11288478", "brand:wikipedia": "en:Wegmans", "name": "Wegmans", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Weis": {"name": "Weis", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/WeisMarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7980370", "shop": "supermarket"}, "addTags": {"brand": "Weis", "brand:wikidata": "Q7980370", "brand:wikipedia": "en:Weis Markets", "name": "Weis", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Whole Foods Market": {"name": "Whole Foods Market", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/WholeFoods/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1809448", "shop": "supermarket"}, "addTags": {"brand": "Whole Foods Market", "brand:wikidata": "Q1809448", "brand:wikipedia": "en:Whole Foods Market", "name": "Whole Foods Market", "shop": "supermarket"}, "countryCodes": ["ca", "gb", "us"], "terms": ["whole foods"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Willys": {"name": "Willys", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Willys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10720214", "shop": "supermarket"}, "addTags": {"brand": "Willys", "brand:wikidata": "Q10720214", "brand:wikipedia": "sv:Willys", "name": "Willys", "shop": "supermarket"}, "countryCodes": ["se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/WinCo Foods": {"name": "WinCo Foods", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/winco.official.page/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8023592", "shop": "supermarket"}, "addTags": {"brand": "WinCo Foods", "brand:wikidata": "Q8023592", "brand:wikipedia": "en:WinCo Foods", "name": "WinCo Foods", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Winn-Dixie": {"name": "Winn-Dixie", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/winndixie/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1264366", "shop": "supermarket"}, "addTags": {"brand": "Winn-Dixie", "brand:wikidata": "Q1264366", "brand:wikipedia": "en:Winn-Dixie", "name": "Winn-Dixie", "shop": "supermarket"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Woolworths": {"name": "Woolworths", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/woolworths/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3249145", "shop": "supermarket"}, "addTags": {"brand": "Woolworths", "brand:wikidata": "Q3249145", "brand:wikipedia": "en:Woolworths Supermarkets", "name": "Woolworths", "shop": "supermarket"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Your Independent Grocer": {"name": "Your Independent Grocer", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/YourIndependentGrocer/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8058833", "shop": "supermarket"}, "addTags": {"brand": "Your Independent Grocer", "brand:wikidata": "Q8058833", "brand:wikipedia": "en:Your Independent Grocer", "name": "Your Independent Grocer", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": ["independent"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Zehrs": {"name": "Zehrs", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ZehrsON/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8068546", "shop": "supermarket"}, "addTags": {"brand": "Zehrs", "brand:wikidata": "Q8068546", "brand:wikipedia": "en:Zehrs Markets", "name": "Zehrs", "shop": "supermarket"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/basic": {"name": "basic", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FBasic%20logo.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q809994", "shop": "supermarket"}, "addTags": {"brand": "basic", "brand:wikidata": "Q809994", "brand:wikipedia": "de:Basic AG", "name": "basic", "organic": "only", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/bi1": {"name": "bi1", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56325139", "shop": "supermarket"}, "addTags": {"brand": "bi1", "brand:wikidata": "Q56325139", "brand:wikipedia": "pl:Bi1", "name": "bi1", "shop": "supermarket"}, "countryCodes": ["fr", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/denn's Biomarkt": {"name": "denn's Biomarkt", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/dennsBiomarkt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48883773", "shop": "supermarket"}, "addTags": {"brand": "denn's Biomarkt", "brand:wikidata": "Q48883773", "name": "denn's Biomarkt", "organic": "only", "shop": "supermarket"}, "countryCodes": ["at", "de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/fakta": {"name": "fakta", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/fakta/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3172238", "shop": "supermarket"}, "addTags": {"brand": "fakta", "brand:wikidata": "Q3172238", "brand:wikipedia": "en:Fakta", "name": "fakta", "shop": "supermarket"}, "countryCodes": ["dk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/nah und gut": {"name": "nah und gut", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/EDEKA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q701755", "shop": "supermarket"}, "addTags": {"brand": "nah und gut", "brand:wikidata": "Q701755", "brand:wikipedia": "de:Edeka", "name": "nah und gut", "shop": "supermarket"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Şok": {"name": "Şok", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SokMarketler/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q19613992", "shop": "supermarket"}, "addTags": {"brand": "Şok", "brand:wikidata": "Q19613992", "brand:wikipedia": "tr:Şok (market)", "name": "Şok", "shop": "supermarket"}, "countryCodes": ["tr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ΑΒ Βασιλόπουλος": {"name": "ΑΒ Βασιλόπουλος", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ab.vassilopoulos.sa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4721807", "shop": "supermarket"}, "addTags": {"brand": "ΑΒ Βασιλόπουλος", "brand:el": "ΑΒ Βασιλόπουλος", "brand:en": "AB Vassilopoulos", "brand:wikidata": "Q4721807", "brand:wikipedia": "el:Άλφα Βήτα Βασιλόπουλος", "name": "ΑΒ Βασιλόπουλος", "name:el": "ΑΒ Βασιλόπουλος", "name:en": "AB Vassilopoulos", "shop": "supermarket"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Γαλαξίας": {"name": "Γαλαξίας", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/galaxias.sm/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5518063", "shop": "supermarket"}, "addTags": {"brand": "Γαλαξίας", "brand:el": "Γαλαξίας", "brand:en": "Galaxias", "brand:wikidata": "Q5518063", "brand:wikipedia": "el:Γαλαξίας (σούπερ μάρκετ)", "name": "Γαλαξίας", "name:el": "Γαλαξίας", "name:en": "Galaxias", "shop": "supermarket"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Μασούτης": {"name": "Μασούτης", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/masoutis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6783887", "shop": "supermarket"}, "addTags": {"brand": "Μασούτης", "brand:el": "Μασούτης", "brand:en": "Masoutis", "brand:wikidata": "Q6783887", "brand:wikipedia": "en:Masoutis", "name": "Μασούτης", "name:el": "Μασούτης", "name:en": "Masoutis", "shop": "supermarket"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Σκλαβενίτης": {"name": "Σκλαβενίτης", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Sklabenites/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7536037", "shop": "supermarket"}, "addTags": {"brand": "Σκλαβενίτης", "brand:el": "Σκλαβενίτης", "brand:en": "Sklavenitis", "brand:wikidata": "Q7536037", "brand:wikipedia": "el:Σκλαβενίτης", "name": "Σκλαβενίτης", "name:el": "Σκλαβενίτης", "name:en": "Sklavenitis", "shop": "supermarket"}, "countryCodes": ["gr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Абсолют (Russia)": {"name": "Абсолют (Russia)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62389597", "shop": "supermarket"}, "addTags": {"brand": "Абсолют", "brand:wikidata": "Q62389597", "name": "Абсолют", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Абсолют (Ukraine)": {"name": "Абсолют (Ukraine)", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62389546", "shop": "supermarket"}, "addTags": {"brand": "Абсолют", "brand:wikidata": "Q62389546", "name": "Абсолют", "shop": "supermarket"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Азбука Вкуса": {"name": "Азбука Вкуса", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/azbukavkusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4058209", "shop": "supermarket"}, "addTags": {"brand": "Азбука Вкуса", "brand:en": "Azbuka Vkusa", "brand:wikidata": "Q4058209", "brand:wikipedia": "en:Azbuka Vkusa", "name": "Азбука Вкуса", "name:en": "Azbuka Vkusa", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Атак": {"name": "Атак", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1565040269/logo_schiever_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2868738", "shop": "supermarket"}, "addTags": {"brand": "Атак", "brand:en": "Atac", "brand:wikidata": "Q2868738", "brand:wikipedia": "ru:Atac", "name": "Атак", "name:en": "Atac", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Ашан": {"name": "Ашан", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/auchan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q758603", "shop": "supermarket"}, "addTags": {"brand": "Ашан", "brand:en": "Auchan", "brand:wikidata": "Q758603", "brand:wikipedia": "ru:Auchan", "name": "Ашан", "name:en": "Auchan", "shop": "supermarket"}, "countryCodes": ["ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Брусничка": {"name": "Брусничка", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/freshmarket.brusnichka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21656645", "shop": "supermarket"}, "addTags": {"brand": "Брусничка", "brand:en": "Brusnichka", "brand:wikidata": "Q21656645", "brand:wikipedia": "uk:Брусничка (торгова мережа)", "name": "Брусничка", "name:en": "Brusnichka", "shop": "supermarket"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Булмаг": {"name": "Булмаг", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/BulMagSupermarkets/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66133376", "shop": "supermarket"}, "addTags": {"brand": "Булмаг", "brand:en": "BulMag", "brand:wikidata": "Q66133376", "name": "Булмаг", "name:en": "BulMag", "shop": "supermarket"}, "countryCodes": ["bg"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Виктория": {"name": "Виктория", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/SupermarketVictoria/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4111046", "shop": "supermarket"}, "addTags": {"brand": "Виктория", "brand:wikidata": "Q4111046", "brand:wikipedia": "ru:Виктория (сеть магазинов)", "name": "Виктория", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Виталюр": {"name": "Виталюр", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/vitalur.by/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55663075", "shop": "supermarket"}, "addTags": {"brand": "Виталюр", "brand:wikidata": "Q55663075", "brand:wikipedia": "ru:Виталюр", "name": "Виталюр", "shop": "supermarket"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Вопак": {"name": "Вопак", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/vopak.com.ua/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30966107", "shop": "supermarket"}, "addTags": {"brand": "Вопак", "brand:en": "Vopak", "brand:wikidata": "Q30966107", "brand:wikipedia": "uk:Вопак", "name": "Вопак", "name:en": "Vopak", "shop": "supermarket"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Гроздь": {"name": "Гроздь", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/grozdmag/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q21638412", "shop": "supermarket"}, "addTags": {"brand": "Гроздь", "brand:wikidata": "Q21638412", "brand:wikipedia": "ru:Гроздь (сеть магазинов)", "name": "Гроздь", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Гулливер": {"name": "Гулливер", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/gullivermarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58003470", "shop": "supermarket"}, "addTags": {"brand": "Гулливер", "brand:wikidata": "Q58003470", "name": "Гулливер", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Десяточка": {"name": "Десяточка", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61876182", "shop": "supermarket"}, "addTags": {"brand": "Десяточка", "brand:en": "Desyatochka", "brand:wikidata": "Q61876182", "name": "Десяточка", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Дикси": {"name": "Дикси", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Dixyclub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4161561", "shop": "supermarket"}, "addTags": {"brand": "Дикси", "brand:en": "Dixy", "brand:wikidata": "Q4161561", "brand:wikipedia": "ru:Дикси (сеть магазинов)", "name": "Дикси", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Евроопт": {"name": "Евроопт", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Eurooptby/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2565040", "shop": "supermarket"}, "addTags": {"brand": "Евроопт", "brand:en": "Euroopt", "brand:ru": "Евроопт", "brand:wikidata": "Q2565040", "brand:wikipedia": "be:Еўрагандаль", "name": "Евроопт", "name:en": "Euroopt", "name:ru": "Евроопт", "shop": "supermarket"}, "countryCodes": ["by"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Евроопт Hyper": {"name": "Евроопт Hyper", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65455975", "shop": "supermarket"}, "addTags": {"brand": "Евроопт Hyper", "brand:wikidata": "Q65455975", "name": "Евроопт Hyper", "shop": "supermarket"}, "countryCodes": ["by"], "terms": ["евроопт гипер"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Евроопт Super": {"name": "Евроопт Super", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q65455960", "shop": "supermarket"}, "addTags": {"brand": "Евроопт Super", "brand:wikidata": "Q65455960", "name": "Евроопт Super", "shop": "supermarket"}, "countryCodes": ["by"], "terms": ["евроопт супер"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Карусель": {"name": "Карусель", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/karuselgiper/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4216307", "shop": "supermarket"}, "addTags": {"brand": "Карусель", "brand:en": "Karusel", "brand:wikidata": "Q4216307", "brand:wikipedia": "ru:Карусель (сеть магазинов)", "name": "Карусель", "name:en": "Karusel", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Кировский": {"name": "Кировский", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Kirovskii/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q63301903", "shop": "supermarket"}, "addTags": {"brand": "Кировский", "brand:wikidata": "Q63301903", "name": "Кировский", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Командор": {"name": "Командор", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/prkomandor/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61876152", "shop": "supermarket"}, "addTags": {"brand": "Командор", "brand:en": "Komandor", "brand:wikidata": "Q61876152", "name": "Командор", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Красный Яр": {"name": "Красный Яр", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1786753", "shop": "supermarket"}, "addTags": {"brand": "Красный Яр", "brand:en": "Krasnyj Jar", "brand:wikidata": "Q1786753", "brand:wikipedia": "ru:Красный Яр", "name": "Красный Яр", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Лента": {"name": "Лента", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lentacom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4258608", "shop": "supermarket"}, "addTags": {"brand": "Лента", "brand:en": "Lenta", "brand:wikidata": "Q4258608", "brand:wikipedia": "ru:Лента (сеть магазинов)", "name": "Лента", "name:en": "Lenta", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Магнит": {"name": "Магнит", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/magnitretail/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q940518", "shop": "supermarket"}, "addTags": {"brand": "Магнит", "brand:en": "Magnit", "brand:wikidata": "Q940518", "brand:wikipedia": "ru:Магнит (сеть магазинов)", "name": "Магнит", "name:en": "Magnit", "shop": "supermarket"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Макси": {"name": "Макси", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/Maxi.Srbija/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6795490", "shop": "supermarket"}, "addTags": {"brand": "Макси", "brand:en": "Maxi", "brand:wikidata": "Q6795490", "brand:wikipedia": "sr:Макси", "name": "Макси", "name:en": "Maxi", "shop": "supermarket"}, "countryCodes": ["rs"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Мария-Ра": {"name": "Мария-Ра", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mariarashop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4281631", "shop": "supermarket"}, "addTags": {"brand": "Мария-Ра", "brand:en": "Maria-ra", "brand:wikidata": "Q4281631", "brand:wikipedia": "ru:Мария-Ра", "name": "Мария-Ра", "name:en": "Maria-ra", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Монетка": {"name": "Монетка", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4301704", "shop": "supermarket"}, "addTags": {"brand": "Монетка", "brand:en": "Monetka", "brand:wikidata": "Q4301704", "brand:wikipedia": "ru:Монетка (сеть магазинов)", "name": "Монетка", "name:en": "Monetka", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Народная 7Я семьЯ": {"name": "Народная 7Я семьЯ", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F7Family.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4032436", "shop": "supermarket"}, "addTags": {"brand": "Народная 7Я семьЯ", "brand:en": "People's 7th Family", "brand:wikidata": "Q4032436", "brand:wikipedia": "ru:Народная 7Я семья", "name": "Народная 7Я семьЯ", "name:en": "People's 7th Family", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": ["семья"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Перекрёсток": {"name": "Перекрёсток", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/perekrestok/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1684639", "shop": "supermarket"}, "addTags": {"brand": "Перекрёсток", "brand:en": "Perekryostok", "brand:wikidata": "Q1684639", "brand:wikipedia": "en:Perekrestok (supermarket chain)", "name": "Перекрёсток", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": ["перекресток"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Покупочка": {"name": "Покупочка", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/121978851838251/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58003270", "shop": "supermarket"}, "addTags": {"brand": "Покупочка", "brand:wikidata": "Q58003270", "name": "Покупочка", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Полушка": {"name": "Полушка", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4371080", "shop": "supermarket"}, "addTags": {"brand": "Полушка", "brand:en": "Polushka", "brand:wikidata": "Q4371080", "brand:wikipedia": "ru:Полушка (сеть магазинов)", "name": "Полушка", "name:en": "Polushka", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Пятёрочка": {"name": "Пятёрочка", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/pyaterochka/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1768969", "shop": "supermarket"}, "addTags": {"brand": "Пятёрочка", "brand:en": "Pyaterochka", "brand:wikidata": "Q1768969", "brand:wikipedia": "ru:Пятёрочка", "name": "Пятёрочка", "name:en": "Pyaterochka", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": ["пятерочка"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Радеж": {"name": "Радеж", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/radezhshop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4387165", "shop": "supermarket"}, "addTags": {"brand": "Радеж", "brand:en": "Radezh", "brand:wikidata": "Q4387165", "brand:wikipedia": "ru:Радеж (торговая сеть)", "name": "Радеж", "name:en": "Radezh", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Рукавичка": {"name": "Рукавичка", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/rukavychka.ua/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20092568", "shop": "supermarket"}, "addTags": {"brand": "Рукавичка", "brand:en": "Rukavychka", "brand:wikidata": "Q20092568", "brand:wikipedia": "uk:Рукавичка (торгова мережа)", "name": "Рукавичка", "name:en": "Rukavychka", "shop": "supermarket"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Светофор": {"name": "Светофор", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/svetoforkryj/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61875920", "shop": "supermarket"}, "addTags": {"brand": "Светофор", "brand:en": "Svetofor", "brand:wikidata": "Q61875920", "name": "Светофор", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Семишагофф": {"name": "Семишагофф", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58003374", "shop": "supermarket"}, "addTags": {"brand": "Семишагофф", "brand:wikidata": "Q58003374", "name": "Семишагофф", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Сільпо": {"name": "Сільпо", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/silpo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4419434", "shop": "supermarket"}, "addTags": {"brand": "Сільпо", "brand:en": "Silpo", "brand:wikidata": "Q4419434", "brand:wikipedia": "en:Silpo", "name": "Сільпо", "name:en": "Silpo", "shop": "supermarket"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Таврия В": {"name": "Таврия В", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/tavriavonline/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q61823146", "shop": "supermarket"}, "addTags": {"brand": "Таврия В", "brand:wikidata": "Q61823146", "brand:wikipedia": "uk:Таврія В", "name": "Таврия В", "shop": "supermarket"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Фора": {"name": "Фора", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/fora.ukraine/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12165977", "shop": "supermarket"}, "addTags": {"brand": "Фора", "brand:en": "Fora", "brand:wikidata": "Q12165977", "brand:wikipedia": "uk:Фора (мережа магазинів)", "name": "Фора", "name:en": "Fora", "shop": "supermarket"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Фуршет": {"name": "Фуршет", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/furshetcom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4493564", "shop": "supermarket"}, "addTags": {"brand": "Фуршет", "brand:en": "Furshet", "brand:wikidata": "Q4493564", "brand:wikipedia": "uk:Фуршет (мережа супермаркетів)", "name": "Фуршет", "name:en": "Furshet", "shop": "supermarket"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/Эдельвейс": {"name": "Эдельвейс", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57979368", "shop": "supermarket"}, "addTags": {"brand": "Эдельвейс", "brand:en": "Edelveis", "brand:wikidata": "Q57979368", "name": "Эдельвейс", "name:en": "Edelveis", "shop": "supermarket"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/いなげや": {"name": "いなげや", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/151131734909829/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17193392", "shop": "supermarket"}, "addTags": {"brand": "いなげや", "brand:en": "Inageya", "brand:ja": "いなげや", "brand:wikidata": "Q17193392", "brand:wikipedia": "ja:いなげや", "name": "いなげや", "name:en": "Inageya", "name:ja": "いなげや", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/まいばすけっと": {"name": "まいばすけっと", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/mybasket.official/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11278154", "shop": "supermarket"}, "addTags": {"brand": "まいばすけっと", "brand:en": "My Basket", "brand:ja": "まいばすけっと", "brand:wikidata": "Q11278154", "brand:wikipedia": "ja:まいばすけっと", "name": "まいばすけっと", "name:en": "My Basket", "name:ja": "まいばすけっと", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ゆめタウン": {"name": "ゆめタウン", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11280900", "shop": "supermarket"}, "addTags": {"brand": "ゆめタウン", "brand:en": "YouMe Town", "brand:ja": "ゆめタウン", "brand:wikidata": "Q11280900", "brand:wikipedia": "ja:ゆめタウン", "name": "ゆめタウン", "name:en": "YouMe Town", "name:ja": "ゆめタウン", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/アコレ": {"name": "アコレ", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11283128", "shop": "supermarket"}, "addTags": {"alt_name:en": "Acolle", "brand": "アコレ", "brand:en": "A・Colle", "brand:ja": "アコレ", "brand:wikidata": "Q11283128", "brand:wikipedia": "ja:アコレ", "name": "アコレ", "name:en": "A・Colle", "name:ja": "アコレ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/アピタ": {"name": "アピタ", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAPITA%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q55384637", "shop": "supermarket"}, "addTags": {"brand": "アピタ", "brand:en": "APITA", "brand:ja": "アピタ", "brand:wikidata": "Q55384637", "name": "アピタ", "name:en": "APITA", "name:ja": "アピタ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/イオン": {"name": "イオン", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/aeonretail.english/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11285951", "shop": "supermarket"}, "addTags": {"brand": "イオン", "brand:en": "AEON", "brand:ja": "イオン", "brand:wikidata": "Q11285951", "brand:wikipedia": "ja:イオン (店舗ブランド)", "name": "イオン", "name:en": "AEON", "name:ja": "イオン", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/イオンマーケット": {"name": "イオンマーケット", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11331715", "shop": "supermarket"}, "addTags": {"brand": "イオンマーケット", "brand:en": "Aeon Market", "brand:ja": "イオンマーケット", "brand:wikidata": "Q11331715", "brand:wikipedia": "ja:イオンマーケット", "name": "イオンマーケット", "name:en": "Aeon Market", "name:ja": "イオンマーケット", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/イズミヤ": {"name": "イズミヤ", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/izumiya.co.jp/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11286632", "shop": "supermarket"}, "addTags": {"brand": "イズミヤ", "brand:en": "Izumiya", "brand:ja": "イズミヤ", "brand:wikidata": "Q11286632", "brand:wikipedia": "ja:イズミヤ", "name": "イズミヤ", "name:en": "Izumiya", "name:ja": "イズミヤ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": ["いづみや"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/イトーヨーカドー": {"name": "イトーヨーカドー", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/itoyokado/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3088746", "shop": "supermarket"}, "addTags": {"brand": "イトーヨーカドー", "brand:en": "Ito-Yokado", "brand:ja": "イトーヨーカドー", "brand:wikidata": "Q3088746", "brand:wikipedia": "en:Ito-Yokado", "name": "イトーヨーカドー", "name:en": "Ito-Yokado", "name:ja": "イトーヨーカドー", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": ["イトーヨーカ堂"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/エコス": {"name": "エコス", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1874285059/ECOS_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11289886", "shop": "supermarket"}, "addTags": {"brand": "エコス", "brand:en": "Ecos", "brand:ja": "エコス", "brand:wikidata": "Q11289886", "brand:wikipedia": "ja:エコス", "name": "エコス", "name:en": "Ecos", "name:ja": "エコス", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/エーコープ": {"name": "エーコープ", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FA-coop%20text%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11291524", "shop": "supermarket"}, "addTags": {"brand": "エーコープ", "brand:en": "A-COOP", "brand:ja": "エーコープ", "brand:wikidata": "Q11291524", "brand:wikipedia": "ja:エーコープ", "name": "エーコープ", "name:en": "A-COOP", "name:ja": "エーコープ", "organic": "only", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": ["aコープ"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/オリンピック": {"name": "オリンピック", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1113319986393518080/QC3um42C_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11292764", "shop": "supermarket"}, "addTags": {"brand": "オリンピック", "brand:en": "Olympic", "brand:ja": "オリンピック", "brand:wikidata": "Q11292764", "brand:wikipedia": "ja:Olympicグループ", "name": "オリンピック", "name:en": "Olympic", "name:ja": "オリンピック", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/オークワ": {"name": "オークワ", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/okuwa.net/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11293166", "shop": "supermarket"}, "addTags": {"brand": "オークワ", "brand:en": "Okuwa", "brand:ja": "オークワ", "brand:wikidata": "Q11293166", "brand:wikipedia": "ja:オークワ", "name": "オークワ", "name:en": "Okuwa", "name:ja": "オークワ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/オーケーストア": {"name": "オーケーストア", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1128535559641559040/FozyK10M_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11293184", "shop": "supermarket"}, "addTags": {"brand": "オーケー", "brand:en": "OK", "brand:ja": "オーケー", "brand:wikidata": "Q11293184", "brand:wikipedia": "ja:オーケー", "name": "オーケーストア", "name:en": "OK Store", "name:ja": "オーケーストア", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": ["オーケー, okストア"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/カスミ": {"name": "カスミ", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/kasumi.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11294160", "shop": "supermarket"}, "addTags": {"brand": "カスミ", "brand:en": "Kasumi", "brand:ja": "カスミ", "brand:wikidata": "Q11294160", "brand:wikipedia": "ja:カスミ", "name": "カスミ", "name:en": "Kasumi", "name:ja": "カスミ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/キョーエイ": {"name": "キョーエイ", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/kyoei.fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11297581", "shop": "supermarket"}, "addTags": {"brand": "キョーエイ", "brand:en": "Kyoei", "brand:ja": "キョーエイ", "brand:wikidata": "Q11297581", "brand:wikipedia": "ja:キョーエイ", "name": "キョーエイ", "name:en": "Kyoei", "name:ja": "キョーエイ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/コープ": {"name": "コープ", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FCoop-Logo.PNG&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11508615", "shop": "supermarket"}, "addTags": {"alt_name:en": "Co-op", "brand": "コープ", "brand:en": "CO・OP", "brand:ja": "コープ", "brand:wikidata": "Q11508615", "brand:wikipedia": "ja:日本生活協同組合連合会", "name": "コープ", "name:ja": "コープ", "official_name": "日本生活協同組合連合会", "official_name:en": "Japanese Consumers' Co-operative Union", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/コープこう": {"name": "コープこう", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/coopkobe/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5137453", "shop": "supermarket"}, "addTags": {"alt_name:en": "Co-op Kobe", "brand": "コープこう", "brand:en": "CO・OP Kobe", "brand:ja": "コープこう", "brand:wikidata": "Q5137453", "brand:wikipedia": "ja:生活協同組合コープこうべ", "name": "コープこう", "name:en": "CO・OP Kobe", "name:ja": "コープこう", "official_name": "生活協同組合コープこうべ", "official_name:en": "The Consumer Co-operative Kobe", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/サミット": {"name": "サミット", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/877018274264883201/pgvUi2hw_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11305129", "shop": "supermarket"}, "addTags": {"brand": "サミット", "brand:en": "Summit", "brand:ja": "サミット", "brand:wikidata": "Q11305129", "brand:wikipedia": "ja:サミット (チェーンストア)", "name": "サミット", "name:en": "Summit", "name:ja": "サミット", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/スーパーバリュー": {"name": "スーパーバリュー", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11313802", "shop": "supermarket"}, "addTags": {"brand": "スーパーバリュー", "brand:en": "Super Value", "brand:ja": "スーパーバリュー", "brand:wikidata": "Q11313802", "brand:wikipedia": "ja:スーパーバリュー", "name": "スーパーバリュー", "name:en": "Super Value", "name:ja": "スーパーバリュー", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ダイエー": {"name": "ダイエー", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/official.daiei/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11316644", "shop": "supermarket"}, "addTags": {"brand": "ダイエー", "brand:en": "daiei", "brand:ja": "ダイエー", "brand:wikidata": "Q11316644", "brand:wikipedia": "ja:ダイエー (店舗ブランド)", "name": "ダイエー", "name:en": "Daiei", "name:ja": "ダイエー", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/トウズ": {"name": "トウズ", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q53308796", "shop": "supermarket"}, "addTags": {"brand": "トウズ", "brand:en": "Tou's", "brand:ja": "トウズ", "brand:wikidata": "Q53308796", "brand:wikipedia": "ja:トウズ", "name": "トウズ", "name:en": "Tou's", "name:ja": "トウズ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/バロー": {"name": "バロー", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/138259402886129/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11328346", "shop": "supermarket"}, "addTags": {"brand": "バロー", "brand:en": "Valor", "brand:ja": "バロー", "brand:wikidata": "Q11328346", "brand:wikipedia": "ja:バロー (チェーンストア)", "name": "バロー", "name:en": "Valor", "name:ja": "バロー", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ピアゴ": {"name": "ピアゴ", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPIAGO%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q91014434", "shop": "supermarket"}, "addTags": {"brand": "ピアゴ", "brand:en": "PIAGO", "brand:ja": "ピアゴ", "brand:wikidata": "Q91014434", "name": "ピアゴ", "name:en": "PIAGO", "name:ja": "ピアゴ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/フジ": {"name": "フジ", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/fujicompanies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8963035", "shop": "supermarket"}, "addTags": {"brand": "フジ", "brand:en": "Fuji", "brand:ja": "フジ", "brand:wikidata": "Q8963035", "brand:wikipedia": "ja:フジ (チェーンストア)", "name": "フジ", "name:en": "Fuji", "name:ja": "フジ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/フジグラン": {"name": "フジグラン", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/fujicompanies/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8963035", "shop": "supermarket"}, "addTags": {"brand": "フジ", "brand:en": "Fuji", "brand:ja": "フジ", "brand:wikidata": "Q8963035", "brand:wikipedia": "ja:フジ (チェーンストア)", "name": "フジグラン", "name:en": "Fuji GRAND", "name:ja": "フジグラン", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ベイシア": {"name": "ベイシア", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11336776", "shop": "supermarket"}, "addTags": {"brand": "ベイシア", "brand:en": "Beisia", "brand:ja": "ベイシア", "brand:wikidata": "Q11336776", "brand:wikipedia": "ja:ベイシア", "name": "ベイシア", "name:en": "Beisia", "name:ja": "ベイシア", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/マックスバリュ": {"name": "マックスバリュ", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/158243057524643/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1960109", "shop": "supermarket"}, "addTags": {"brand": "マックスバリュ", "brand:en": "Maxvalu Tokai", "brand:ja": "マックスバリュ", "brand:wikidata": "Q1960109", "brand:wikipedia": "en:MaxValu", "name": "マックスバリュ", "name:en": "Maxvalu Tokai", "name:ja": "マックスバリュ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/マミーマート": {"name": "マミーマート", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMammy%20Mart%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11340902", "shop": "supermarket"}, "addTags": {"brand": "マミーマート", "brand:en": "Mammy Mart", "brand:ja": "マミーマート", "brand:wikidata": "Q11340902", "brand:wikipedia": "ja:マミーマート", "name": "マミーマート", "name:en": "Mammy Mart", "name:ja": "マミーマート", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/マルエツ": {"name": "マルエツ", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/maruetsu.rakuten/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11341197", "shop": "supermarket"}, "addTags": {"brand": "マルエツ", "brand:en": "Maruetsu", "brand:ja": "マルエツ", "brand:wikidata": "Q11341197", "brand:wikipedia": "ja:マルエツ", "name": "マルエツ", "name:en": "Maruetsu", "name:ja": "マルエツ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/マルナカ": {"name": "マルナカ", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMarunaka%20text%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11341399", "shop": "supermarket"}, "addTags": {"brand": "マルナカ", "brand:en": "Marunaka", "brand:ja": "マルナカ", "brand:wikidata": "Q11341399", "brand:wikipedia": "ja:マルナカ (チェーンストア)", "name": "マルナカ", "name:en": "Marunaka", "name:ja": "マルナカ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ヤオコー": {"name": "ヤオコー", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/yaokococoro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11344967", "shop": "supermarket"}, "addTags": {"brand": "ヤオコー", "brand:en": "Yaoko", "brand:ja": "ヤオコー", "brand:wikidata": "Q11344967", "brand:wikipedia": "ja:ヤオコー", "name": "ヤオコー", "name:en": "Yaoko", "name:ja": "ヤオコー", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ヤマナカ": {"name": "ヤマナカ", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11345199", "shop": "supermarket"}, "addTags": {"brand": "ヤマナカ", "brand:en": "Yamanaka", "brand:ja": "ヤマナカ", "brand:wikidata": "Q11345199", "brand:wikipedia": "ja:ヤマナカ", "name": "ヤマナカ", "name:en": "Yamanaka", "name:ja": "ヤマナカ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ヨークベニマル": {"name": "ヨークベニマル", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/ybfan89/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11346199", "shop": "supermarket"}, "addTags": {"brand": "ヨークベニマル", "brand:en": "York Benimaru", "brand:ja": "ヨークベニマル", "brand:wikidata": "Q11346199", "brand:wikipedia": "ja:ヨークベニマル", "name": "ヨークベニマル", "name:en": "York Benimaru", "name:ja": "ヨークベニマル", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ヨークマート": {"name": "ヨークマート", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/137658762945673/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11346201", "shop": "supermarket"}, "addTags": {"brand": "ヨークマート", "brand:en": "YorkMart", "brand:ja": "ヨークマート", "brand:wikidata": "Q11346201", "brand:wikipedia": "ja:ヨークマート", "name": "ヨークマート", "name:en": "YorkMart", "name:ja": "ヨークマート", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ライフ": {"name": "ライフ", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lifecorp428/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11346476", "shop": "supermarket"}, "addTags": {"brand": "ライフ", "brand:en": "Life", "brand:ja": "ライフ", "brand:wikidata": "Q11346476", "brand:wikipedia": "ja:ライフコーポレーション", "name": "ライフ", "name:en": "Life", "name:ja": "ライフ", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/ワイズマート": {"name": "ワイズマート", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1025282426530975744/QlC5k-zI_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11351175", "shop": "supermarket"}, "addTags": {"brand": "ワイズマート", "brand:en": "Y'smart", "brand:ja": "ワイズマート", "brand:wikidata": "Q11351175", "brand:wikipedia": "ja:ワイズマート", "name": "ワイズマート", "name:en": "Y'smart", "name:ja": "ワイズマート", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": ["よしのぶっさん"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/全聯": {"name": "全聯", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/pxmartchannel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7262792", "shop": "supermarket"}, "addTags": {"brand": "全聯", "brand:en": "Pxmart", "brand:wikidata": "Q7262792", "brand:wikipedia": "en:PX Mart", "name": "全聯", "name:en": "Pxmart", "shop": "supermarket"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/全聯福利中心": {"name": "全聯福利中心", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/pxmartchannel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7262792", "shop": "supermarket"}, "addTags": {"brand": "全聯福利中心", "brand:en": "Pxmart", "brand:wikidata": "Q7262792", "brand:wikipedia": "en:PX Mart", "name": "全聯福利中心", "name:en": "Pxmart", "shop": "supermarket"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/家乐福": {"name": "家乐福", "icon": "maki-grocery", "imageURL": "https://pbs.twimg.com/profile_images/1239110499553488898/S31rVo48_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q217599", "shop": "supermarket"}, "addTags": {"brand": "家乐福", "brand:wikidata": "Q217599", "brand:wikipedia": "wuu:家乐福", "name": "家乐福", "shop": "supermarket"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/惠康 Wellcome": {"name": "惠康 Wellcome", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/wellcome.supermarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q706247", "shop": "supermarket"}, "addTags": {"brand": "惠康 Wellcome", "brand:en": "Wellcome", "brand:wikidata": "Q706247", "brand:wikipedia": "zh:惠康", "name": "惠康 Wellcome", "name:en": "Wellcome", "shop": "supermarket"}, "countryCodes": ["hk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/成城石井": {"name": "成城石井", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/seijoishii/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11495410", "shop": "supermarket"}, "addTags": {"brand": "成城石井", "brand:en": "Seijo Ishii", "brand:ja": "成城石井", "brand:wikidata": "Q11495410", "brand:wikipedia": "ja:成城石井", "name": "成城石井", "name:en": "Seijo Ishii", "name:ja": "成城石井", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/東急ストア": {"name": "東急ストア", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/255001091240615/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11526963", "shop": "supermarket"}, "addTags": {"brand": "東急ストア", "brand:en": "Tokyu Store", "brand:ja": "東急ストア", "brand:wikidata": "Q11526963", "brand:wikipedia": "ja:東急ストア", "name": "東急ストア", "name:en": "Tokyu Store", "name:ja": "東急ストア", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/東武ストア": {"name": "東武ストア", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11527478", "shop": "supermarket"}, "addTags": {"brand": "東武ストア", "brand:en": "Tobu Store", "brand:ja": "東武ストア", "brand:wikidata": "Q11527478", "brand:wikipedia": "ja:東武ストア", "name": "東武ストア", "name:en": "Tobu Store", "name:ja": "東武ストア", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/業務スーパー": {"name": "業務スーパー", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/gsjdf/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11590183", "shop": "supermarket"}, "addTags": {"brand": "業務スーパー", "brand:en": "Gyomu Super", "brand:ja": "業務スーパー", "brand:wikidata": "Q11590183", "brand:wikipedia": "ja:神戸物産", "name": "業務スーパー", "name:en": "Gyōmu sūpā", "name:ja": "業務スーパー", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/沃尔玛": {"name": "沃尔玛", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/walmart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q483551", "shop": "supermarket"}, "addTags": {"brand": "沃尔玛", "brand:en": "Walmart", "brand:wikidata": "Q483551", "brand:wikipedia": "wuu:沃尔玛", "name": "沃尔玛", "name:en": "Walmart", "shop": "supermarket"}, "countryCodes": ["cn"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/相鉄ローゼン": {"name": "相鉄ローゼン", "icon": "maki-grocery", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSotetsu%20Rosen%20simple%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11582450", "shop": "supermarket"}, "addTags": {"alt_name": "そうてつローゼン", "brand": "相鉄ローゼン", "brand:en": "Sotetsu Rosen", "brand:ja": "相鉄ローゼン", "brand:wikidata": "Q11582450", "brand:wikipedia": "ja:相鉄ローゼン", "name": "相鉄ローゼン", "name:en": "Sotetsu Rosen", "name:ja": "相鉄ローゼン", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": ["そうてつローゼン"], "matchScore": 2, "suggestion": true}, - "shop/supermarket/美廉社": {"name": "美廉社", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/simplemart1/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15914017", "shop": "supermarket"}, "addTags": {"brand": "美廉社", "brand:en": "Simple Mart", "brand:wikidata": "Q15914017", "brand:wikipedia": "zh:美廉社", "name": "美廉社", "name:en": "Simple Mart", "shop": "supermarket"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/西友": {"name": "西友", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/yourrepo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3108542", "shop": "supermarket"}, "addTags": {"brand": "西友", "brand:en": "Seiyu", "brand:wikidata": "Q3108542", "brand:wikipedia": "en:Seiyu Group", "name": "西友", "name:en": "Seiyu", "shop": "supermarket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/頂好": {"name": "頂好", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/wellcome.supermarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q706247", "shop": "supermarket"}, "addTags": {"brand": "頂好", "brand:en": "Wellcome", "brand:wikidata": "Q706247", "brand:wikipedia": "en:Wellcome", "name": "頂好", "name:en": "Wellcome", "shop": "supermarket"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/頂好超市": {"name": "頂好超市", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/wellcome.supermarket/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q706247", "shop": "supermarket"}, "addTags": {"brand": "頂好超市", "brand:en": "Wellcome", "brand:wikidata": "Q706247", "brand:wikipedia": "en:Wellcome", "name": "頂好超市", "name:en": "Wellcome", "shop": "supermarket"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/롯데마트": {"name": "롯데마트", "icon": "maki-grocery", "imageURL": "https://graph.facebook.com/lottemart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q326715", "shop": "supermarket"}, "addTags": {"brand": "롯데마트", "brand:ko": "롯데마트", "brand:wikidata": "Q326715", "brand:wikipedia": "ko:롯데마트", "name": "롯데마트", "name:en": "Lotte Mart", "name:ko": "롯데마트", "shop": "supermarket"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/supermarket/하나로마트": {"name": "하나로마트", "icon": "maki-grocery", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12590611", "shop": "supermarket"}, "addTags": {"brand": "하나로마트", "brand:en": "Hanaro Mart", "brand:ko": "하나로마트", "brand:wikidata": "Q12590611", "brand:wikipedia": "ko:농협유통", "name": "하나로마트", "name:ko": "하나로마트", "shop": "supermarket"}, "countryCodes": ["kr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/swimming_pool/Leslie's Pool Supplies": {"name": "Leslie's Pool Supplies", "icon": "fas-swimmer", "imageURL": "https://graph.facebook.com/lesliespoolcare/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6530568", "shop": "swimming_pool"}, "addTags": {"brand": "Leslie's Pool Supplies", "brand:wikidata": "Q6530568", "brand:wikipedia": "en:Leslie's Poolmart", "name": "Leslie's Pool Supplies", "official_name": "Leslie's Pool Supplies Service & Repair", "shop": "swimming_pool"}, "countryCodes": ["us"], "terms": ["leslies pool supply", "leslies swimming pool supplies"], "matchScore": 2, "suggestion": true}, - "shop/tea/DavidsTea": {"name": "DavidsTea", "icon": "maki-teahouse", "imageURL": "https://graph.facebook.com/DAVIDsTEA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3019129", "shop": "tea"}, "addTags": {"brand": "DavidsTea", "brand:wikidata": "Q3019129", "brand:wikipedia": "en:DavidsTea", "name": "DavidsTea", "shop": "tea"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tea/Kusmi Tea": {"name": "Kusmi Tea", "icon": "maki-teahouse", "imageURL": "https://graph.facebook.com/KusmiTea.Paris/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q944186", "shop": "tea"}, "addTags": {"brand": "Kusmi Tea", "brand:wikidata": "Q944186", "brand:wikipedia": "en:Kusmi Tea", "name": "Kusmi Tea", "shop": "tea"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tea/Palais des Thés": {"name": "Palais des Thés", "icon": "maki-teahouse", "imageURL": "https://graph.facebook.com/palaisdesthes/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3225161", "shop": "tea"}, "addTags": {"brand": "Palais des Thés", "brand:wikidata": "Q3225161", "brand:wikipedia": "en:Le Palais des Thés", "name": "Palais des Thés", "shop": "tea"}, "countryCodes": ["be", "fr", "ge", "il", "lu", "no", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tea/T2": {"name": "T2", "icon": "maki-teahouse", "imageURL": "https://graph.facebook.com/T2Tea/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q48802134", "shop": "tea"}, "addTags": {"brand": "T2", "brand:wikidata": "Q48802134", "brand:wikipedia": "en:T2 (Australian company)", "name": "T2", "shop": "tea"}, "countryCodes": ["au"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tea/TeeGschwendner": {"name": "TeeGschwendner", "icon": "maki-teahouse", "imageURL": "https://graph.facebook.com/TeeGschwendner/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2399969", "shop": "tea"}, "addTags": {"brand": "TeeGschwendner", "brand:wikidata": "Q2399969", "brand:wikipedia": "de:TeeGschwendner", "name": "TeeGschwendner", "shop": "tea"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/A1": {"name": "A1", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/A1Fanpage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q688755", "shop": "telecommunication"}, "addTags": {"brand": "A1", "brand:wikidata": "Q688755", "brand:wikipedia": "en:A1 Telekom Austria Group", "name": "A1", "shop": "telecommunication"}, "countryCodes": ["at", "bg", "by", "hr", "si"], "terms": ["velcom", "velcom|a1", "велком"], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/Bell": {"name": "Bell", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/BellCanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q815694", "shop": "telecommunication"}, "addTags": {"brand": "Bell", "brand:wikidata": "Q815694", "brand:wikipedia": "en:Bell Canada", "name": "Bell", "shop": "telecommunication"}, "countryCodes": ["ca"], "terms": ["bell canada"], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/Malitel": {"name": "Malitel", "icon": "maki-telephone", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6743829", "shop": "telecommunication"}, "addTags": {"brand": "Malitel", "brand:wikidata": "Q6743829", "brand:wikipedia": "en:Malitel", "name": "Malitel", "shop": "telecommunication"}, "countryCodes": ["ml"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/Ooredoo": {"name": "Ooredoo", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/ooredooqatar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q919935", "shop": "telecommunication"}, "addTags": {"brand": "Ooredoo", "brand:wikidata": "Q919935", "brand:wikipedia": "en:Ooredoo", "name": "Ooredoo", "shop": "telecommunication"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/Orange Mali": {"name": "Orange Mali", "icon": "maki-telephone", "imageURL": "https://pbs.twimg.com/profile_images/905755776660234248/CaXneU0v_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3355061", "shop": "telecommunication"}, "addTags": {"brand": "Orange Mali", "brand:wikidata": "Q3355061", "brand:wikipedia": "fr:Orange Mali", "name": "Orange Mali", "shop": "telecommunication"}, "countryCodes": ["ml"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/Spectrum": {"name": "Spectrum", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/Spectrum/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7805197", "shop": "telecommunication"}, "addTags": {"brand": "Spectrum", "brand:wikidata": "Q7805197", "brand:wikipedia": "en:Spectrum (cable service)", "name": "Spectrum", "shop": "telecommunication"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/Xfinity": {"name": "Xfinity", "icon": "maki-telephone", "imageURL": "https://pbs.twimg.com/profile_images/1131771952828375040/wTv-dtEe_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5151002", "shop": "telecommunication"}, "addTags": {"brand": "Xfinity", "brand:wikidata": "Q5151002", "brand:wikipedia": "en:Xfinity", "name": "Xfinity", "shop": "telecommunication"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/МТС": {"name": "МТС", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/mts/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1368919", "shop": "telecommunication"}, "addTags": {"brand": "МТС", "brand:en": "MTS", "brand:wikidata": "Q1368919", "brand:wikipedia": "en:MTS (network provider)", "name": "МТС", "name:en": "MTS", "shop": "telecommunication"}, "countryCodes": ["by", "ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/Ростелеком": {"name": "Ростелеком", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/288785311160831/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1477012", "shop": "telecommunication"}, "addTags": {"brand": "Ростелеком", "brand:wikidata": "Q1477012", "brand:wikipedia": "en:Rostelecom", "name": "Ростелеком", "shop": "telecommunication"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/Укртелеком": {"name": "Укртелеком", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/Ukrtelecom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1505321", "shop": "telecommunication"}, "addTags": {"brand": "Укртелеком", "brand:wikidata": "Q1505321", "brand:wikipedia": "en:Ukrtelecom", "name": "Укртелеком", "shop": "telecommunication"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/中華電信": {"name": "中華電信", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/684453775036802/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q717531", "shop": "telecommunication"}, "addTags": {"brand": "中華電信", "brand:en": "Chunghwa Telecom", "brand:wikidata": "Q717531", "brand:wikipedia": "zh:中華電信", "brand:zh": "中華電信", "name": "中華電信", "name:en": "Chunghwa Telecom", "name:zh": "中華電信", "shop": "telecommunication"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/telecommunication/遠傳電信": {"name": "遠傳電信", "icon": "maki-telephone", "imageURL": "https://graph.facebook.com/fareastone/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5434486", "shop": "telecommunication"}, "addTags": {"brand": "遠傳電信", "brand:en": "FarEasTone", "brand:wikidata": "Q5434486", "brand:wikipedia": "zh:遠傳電信", "brand:zh": "遠傳電信", "name": "遠傳電信", "name:en": "FarEasTone", "name:zh": "遠傳電信", "shop": "telecommunication"}, "countryCodes": ["tw"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/ticket/Boutique Grandes Lignes": {"name": "Boutique Grandes Lignes", "icon": "fas-ticket-alt", "imageURL": "https://graph.facebook.com/SNCFOFFICIEL/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13646", "shop": "ticket"}, "addTags": {"brand": "Boutique Grandes Lignes", "brand:wikidata": "Q13646", "brand:wikipedia": "fr:Société nationale des chemins de fer français", "name": "Boutique Grandes Lignes", "shop": "ticket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/ticket/DB Reisezentrum": {"name": "DB Reisezentrum", "icon": "fas-ticket-alt", "imageURL": "https://graph.facebook.com/348950735250586/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15842100", "shop": "ticket"}, "addTags": {"brand": "DB Reisezentrum", "brand:wikidata": "Q15842100", "brand:wikipedia": "de:Reisezentrum", "name": "DB Reisezentrum", "shop": "ticket"}, "countryCodes": ["de"], "terms": ["reisezentrum"], "matchScore": 2, "suggestion": true}, - "shop/ticket/Guichet Transilien": {"name": "Guichet Transilien", "icon": "fas-ticket-alt", "imageURL": "https://pbs.twimg.com/profile_images/1187367754988429313/HmyF6sUy_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q389554", "shop": "ticket"}, "addTags": {"brand": "Guichet Transilien", "brand:wikidata": "Q389554", "brand:wikipedia": "fr:Transilien", "name": "Guichet Transilien", "shop": "ticket"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/ticket/みどりの窓口": {"name": "みどりの窓口", "icon": "fas-ticket-alt", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11279064", "shop": "ticket"}, "addTags": {"brand": "みどりの窓口", "brand:en": "Midori-no-madoguchi", "brand:ja": "みどりの窓口", "brand:wikidata": "Q11279064", "brand:wikipedia": "ja:みどりの窓口", "name": "みどりの窓口", "name:en": "JR Ticket Office", "name:ja": "みどりの窓口", "shop": "ticket"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tiles/Tile Giant": {"name": "Tile Giant", "icon": "temaki-tiling", "imageURL": "https://graph.facebook.com/tilegiantofficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q87007841", "shop": "tiles"}, "addTags": {"brand": "Tile Giant", "brand:wikidata": "Q87007841", "name": "Tile Giant", "shop": "tiles"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tiles/Topps Tiles": {"name": "Topps Tiles", "icon": "temaki-tiling", "imageURL": "https://graph.facebook.com/toppstiles/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17026595", "shop": "tiles"}, "addTags": {"brand": "Topps Tiles", "brand:wikidata": "Q17026595", "brand:wikipedia": "en:Topps Tiles", "name": "Topps Tiles", "shop": "tiles"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tobacco/Nemzeti Dohánybolt": {"name": "Nemzeti Dohánybolt", "icon": "temaki-pipe", "imageURL": "https://graph.facebook.com/195460840603881/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20639040", "shop": "tobacco"}, "addTags": {"brand": "Nemzeti Dohánybolt", "brand:wikidata": "Q20639040", "brand:wikipedia": "en:Dohánybolt", "name": "Nemzeti Dohánybolt", "shop": "tobacco"}, "countryCodes": ["hu"], "terms": ["dohánybolt"], "matchScore": 2, "suggestion": true}, - "shop/tool_hire/HSS Hire": {"name": "HSS Hire", "icon": "temaki-tools", "imageURL": "https://pbs.twimg.com/profile_images/1128980411504373760/yYZco9IU_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5636000", "shop": "tool_hire"}, "addTags": {"brand": "HSS Hire", "brand:wikidata": "Q5636000", "brand:wikipedia": "en:HSS Hire", "name": "HSS Hire", "shop": "tool_hire"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tool_hire/Kiloutou": {"name": "Kiloutou", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogotype%20en%20utilisation%20depuis%202016.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3196672", "shop": "tool_hire"}, "addTags": {"brand": "Kiloutou", "brand:wikidata": "Q3196672", "brand:wikipedia": "fr:Kiloutou", "name": "Kiloutou", "shop": "tool_hire"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tool_hire/Loxam": {"name": "Loxam", "icon": "temaki-tools", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLoxam%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3264407", "shop": "tool_hire"}, "addTags": {"brand": "Loxam", "brand:wikidata": "Q3264407", "brand:wikipedia": "fr:Loxam", "name": "Loxam", "shop": "tool_hire"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Build-A-Bear Workshop": {"name": "Build-A-Bear Workshop", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/Buildabear/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1002992", "shop": "toys"}, "addTags": {"brand": "Build-A-Bear Workshop", "brand:wikidata": "Q1002992", "brand:wikipedia": "en:Build-A-Bear Workshop", "name": "Build-A-Bear Workshop", "shop": "toys"}, "countryCodes": ["ca", "gb", "us"], "terms": ["build a bear"], "matchScore": 2, "suggestion": true}, - "shop/toys/Dráčik": {"name": "Dráčik", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/2185187834828492/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57653669", "shop": "toys"}, "addTags": {"brand": "Dráčik", "brand:wikidata": "Q57653669", "name": "Dráčik", "shop": "toys"}, "countryCodes": ["cz", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Early Learning Centre": {"name": "Early Learning Centre", "icon": "fas-rocket", "imageURL": "https://pbs.twimg.com/profile_images/1169193556151537664/rPFaBs5D_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5326681", "shop": "toys"}, "addTags": {"alt_name": "ELC", "brand": "Early Learning Centre", "brand:wikidata": "Q5326681", "brand:wikipedia": "en:Early Learning Centre", "name": "Early Learning Centre", "shop": "toys"}, "terms": ["early learning center"], "matchScore": 2, "suggestion": true}, - "shop/toys/Hawkin's Bazaar": {"name": "Hawkin's Bazaar", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/HawkinsBazaar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16983539", "shop": "toys"}, "addTags": {"brand": "Hawkin's Bazaar", "brand:wikidata": "Q16983539", "name": "Hawkin's Bazaar", "shop": "toys"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Intertoys": {"name": "Intertoys", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/Intertoys/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1891407", "shop": "toys"}, "addTags": {"brand": "Intertoys", "brand:wikidata": "Q1891407", "brand:wikipedia": "nl:Intertoys", "name": "Intertoys", "shop": "toys"}, "countryCodes": ["be", "de", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/JouéClub": {"name": "JouéClub", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/JoueClubFr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3187152", "shop": "toys"}, "addTags": {"brand": "JouéClub", "brand:wikidata": "Q3187152", "brand:wikipedia": "fr:JouéClub", "name": "JouéClub", "shop": "toys"}, "countryCodes": ["ad", "fr", "it", "lb", "ma", "qa"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/King Jouet": {"name": "King Jouet", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/KingJouet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3197009", "shop": "toys"}, "addTags": {"brand": "King Jouet", "brand:en": "King Toy", "brand:wikidata": "Q3197009", "brand:wikipedia": "fr:King Jouet", "name": "King Jouet", "name:en": "King Toy", "shop": "toys"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/La Grande Récré": {"name": "La Grande Récré", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/lagranderecre/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3209556", "shop": "toys"}, "addTags": {"brand": "La Grande Récré", "brand:wikidata": "Q3209556", "brand:wikipedia": "fr:La Grande Récré (magasin)", "name": "La Grande Récré", "shop": "toys"}, "countryCodes": ["be", "ci", "es", "fr", "ma"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Lego": {"name": "Lego", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/lego/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1063455", "shop": "toys"}, "addTags": {"brand": "Lego", "brand:wikidata": "Q1063455", "brand:wikipedia": "en:The Lego Group", "name": "Lego", "shop": "toys"}, "terms": ["lego store"], "matchScore": 2, "suggestion": true}, - "shop/toys/Lekia": {"name": "Lekia", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/lekiasweden/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56303274", "shop": "toys"}, "addTags": {"brand": "Lekia", "brand:wikidata": "Q56303274", "brand:wikipedia": "sv:Lekia", "name": "Lekia", "shop": "toys"}, "countryCodes": ["no", "se"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Maxi Toys": {"name": "Maxi Toys", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/MaxiToys.FR/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16663879", "shop": "toys"}, "addTags": {"brand": "Maxi Toys", "brand:wikidata": "Q16663879", "brand:wikipedia": "fr:Maxi Toys", "name": "Maxi Toys", "shop": "toys"}, "countryCodes": ["be", "de", "fr", "it"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Menkind": {"name": "Menkind", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/Menkind/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q66725844", "shop": "toys"}, "addTags": {"brand": "Menkind", "brand:wikidata": "Q66725844", "name": "Menkind", "shop": "toys"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Ri Happy Brinquedos": {"name": "Ri Happy Brinquedos", "icon": "fas-rocket", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10360441", "shop": "toys"}, "addTags": {"brand": "Ri Happy Brinquedos", "brand:wikidata": "Q10360441", "brand:wikipedia": "pt:Ri Happy Brinquedos", "name": "Ri Happy Brinquedos", "shop": "toys"}, "countryCodes": ["pt"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Smyths": {"name": "Smyths", "icon": "fas-rocket", "imageURL": "https://pbs.twimg.com/profile_images/1201814536459898880/TC3S7JHH_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7546779", "shop": "toys"}, "addTags": {"brand": "Smyths", "brand:wikidata": "Q7546779", "brand:wikipedia": "en:Smyths", "name": "Smyths", "shop": "toys"}, "countryCodes": ["at", "ch", "de", "gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/The Entertainer": {"name": "The Entertainer", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/TheEntertainerToyShop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7732289", "shop": "toys"}, "addTags": {"brand": "The Entertainer", "brand:wikidata": "Q7732289", "brand:wikipedia": "en:The Entertainer (retailer)", "name": "The Entertainer", "shop": "toys"}, "countryCodes": ["gb", "je"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Toys R Us": {"name": "Toys R Us", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/toysrus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q696334", "shop": "toys"}, "addTags": {"brand": "Toys R Us", "brand:wikidata": "Q696334", "brand:wikipedia": "en:Toys \"R\" Us", "name": "Toys R Us", "shop": "toys"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Детский мир": {"name": "Детский мир", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/detmir/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16643324", "shop": "toys"}, "addTags": {"brand": "Детский мир", "brand:en": "Detskiy Mir", "brand:wikidata": "Q16643324", "brand:wikipedia": "en:Detsky Mir", "name": "Детский мир", "name:en": "Detskiy Mir", "shop": "toys"}, "countryCodes": ["kz", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/toys/Кораблик": {"name": "Кораблик", "icon": "fas-rocket", "imageURL": "https://graph.facebook.com/korablik.ru/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57653416", "shop": "toys"}, "addTags": {"brand": "Кораблик", "brand:wikidata": "Q57653416", "name": "Кораблик", "shop": "toys"}, "countryCodes": ["ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/trade/84 Lumber": {"name": "84 Lumber", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/84lumber/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4644779", "shop": "trade"}, "addTags": {"brand": "84 Lumber", "brand:wikidata": "Q4644779", "brand:wikipedia": "en:84 Lumber", "name": "84 Lumber", "shop": "trade", "trade": "building_supplies"}, "countryCodes": ["us"], "terms": ["84", "eighty-four lumber"], "matchScore": 2, "suggestion": true}, - "shop/trade/Bradfords Building Supplies": {"name": "Bradfords Building Supplies", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/BradfordsBuild/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17986044", "shop": "trade"}, "addTags": {"brand": "Bradfords Building Supplies", "brand:wikidata": "Q17986044", "brand:wikipedia": "en:Bradfords Group", "name": "Bradfords Building Supplies", "shop": "trade"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/trade/Caterpillar": {"name": "Caterpillar", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/caterpillarinc/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q459965", "shop": "trade"}, "addTags": {"brand": "Caterpillar", "brand:wikidata": "Q459965", "brand:wikipedia": "en:Caterpillar Inc.", "name": "Caterpillar", "shop": "trade", "short_name": "CAT", "trade": "agricultural_equipment"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/trade/Fastenal": {"name": "Fastenal", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/fastenalcompany/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3067119", "shop": "trade"}, "addTags": {"brand": "Fastenal", "brand:wikidata": "Q3067119", "brand:wikipedia": "en:Fastenal", "name": "Fastenal", "shop": "trade"}, "countryCodes": ["ca", "pa", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/trade/Grainger": {"name": "Grainger", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/grainger/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1627894", "shop": "trade"}, "addTags": {"brand": "Grainger", "brand:wikidata": "Q1627894", "brand:wikipedia": "en:W. W. Grainger", "name": "Grainger", "shop": "trade"}, "countryCodes": ["ca", "us"], "terms": ["granger", "w. w. grainger"], "matchScore": 2, "suggestion": true}, - "shop/trade/John Deere": {"name": "John Deere", "icon": "temaki-tools", "imageURL": "https://graph.facebook.com/JohnDeereUSCA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q496302", "shop": "trade"}, "addTags": {"brand": "John Deere", "brand:wikidata": "Q496302", "brand:wikipedia": "en:John Deere", "name": "John Deere", "shop": "trade", "trade": "agricultural_equipment"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Alltours": {"name": "Alltours", "icon": "fas-suitcase", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FAlltours%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2649481", "shop": "travel_agency"}, "addTags": {"brand": "Alltours", "brand:wikidata": "Q2649481", "brand:wikipedia": "de:Alltours", "name": "Alltours", "shop": "travel_agency"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/American Automobile Association": {"name": "American Automobile Association", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/AAAFanPage/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q463436", "shop": "travel_agency"}, "addTags": {"brand": "American Automobile Association", "brand:wikidata": "Q463436", "brand:wikipedia": "en:American Automobile Association", "name": "American Automobile Association", "shop": "travel_agency", "short_name": "AAA"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Coral Travel": {"name": "Coral Travel", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/coraltravel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q58011479", "shop": "travel_agency"}, "addTags": {"brand": "Coral Travel", "brand:wikidata": "Q58011479", "name": "Coral Travel", "shop": "travel_agency"}, "countryCodes": ["pl", "ru", "ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/D-reizen": {"name": "D-reizen", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/dreizenvakanties/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2445498", "shop": "travel_agency"}, "addTags": {"brand": "D-reizen", "brand:wikidata": "Q2445498", "brand:wikipedia": "nl:D-reizen", "name": "D-reizen", "shop": "travel_agency"}, "countryCodes": ["nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/DER Reisebüro": {"name": "DER Reisebüro", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/DER/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q56729186", "shop": "travel_agency"}, "addTags": {"brand": "DER Reisebüro", "brand:wikidata": "Q56729186", "brand:wikipedia": "de:Deutsches Reisebüro", "name": "DER Reisebüro", "shop": "travel_agency"}, "countryCodes": ["de"], "terms": ["der deutsches reisebüro"], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Expedia CruiseShipCenters": {"name": "Expedia CruiseShipCenters", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/ExpediaCSC/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5189985", "shop": "travel_agency"}, "addTags": {"brand": "Expedia CruiseShipCenters", "brand:wikidata": "Q5189985", "brand:wikipedia": "en:Expedia CruiseShipCenters", "name": "Expedia CruiseShipCenters", "shop": "travel_agency"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/First Reisebüro": {"name": "First Reisebüro", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/TUIDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q573103", "shop": "travel_agency"}, "addTags": {"brand": "First Reisebüro", "brand:wikidata": "Q573103", "brand:wikipedia": "en:TUI AG", "name": "First Reisebüro", "shop": "travel_agency"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Flight Centre": {"name": "Flight Centre", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/flightcentreAU/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5459202", "shop": "travel_agency"}, "addTags": {"brand": "Flight Centre", "brand:wikidata": "Q5459202", "brand:wikipedia": "en:Flight Centre", "name": "Flight Centre", "shop": "travel_agency"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Halcón Viajes": {"name": "Halcón Viajes", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/halconviajes.oficial/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57591939", "shop": "travel_agency"}, "addTags": {"brand": "Halcón Viajes", "brand:wikidata": "Q57591939", "name": "Halcón Viajes", "shop": "travel_agency"}, "countryCodes": ["es"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Havas Voyages": {"name": "Havas Voyages", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/havas.voyages/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57628091", "shop": "travel_agency"}, "addTags": {"brand": "Havas Voyages", "brand:wikidata": "Q57628091", "name": "Havas Voyages", "shop": "travel_agency"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Hays Travel": {"name": "Hays Travel", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/HaysTravel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q70250954", "shop": "travel_agency"}, "addTags": {"brand": "Hays Travel", "brand:wikidata": "Q70250954", "brand:wikipedia": "en:Hays Travel", "name": "Hays Travel", "shop": "travel_agency"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/JTB": {"name": "JTB", "icon": "fas-suitcase", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FJTB%20Logo%20Japanese%20Tagline.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6109053", "shop": "travel_agency"}, "addTags": {"brand": "JTB", "brand:wikidata": "Q6109053", "brand:wikipedia": "ja:JTB", "name": "JTB", "official_name": "日本交通公社", "official_name:en": "Japan Travel Bureau", "shop": "travel_agency"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Kuoni": {"name": "Kuoni", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/kuonitraveluk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q684355", "shop": "travel_agency"}, "addTags": {"brand": "Kuoni", "brand:wikidata": "Q684355", "brand:wikipedia": "en:Kuoni Travel", "name": "Kuoni", "shop": "travel_agency"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Liberty Travel": {"name": "Liberty Travel", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/LibertyTravel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17031665", "shop": "travel_agency"}, "addTags": {"brand": "Liberty Travel", "brand:wikidata": "Q17031665", "brand:wikipedia": "en:Liberty Travel", "name": "Liberty Travel", "shop": "travel_agency"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Miles Morgan Travel": {"name": "Miles Morgan Travel", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/milesmorgantravelagent/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q83179278", "shop": "travel_agency"}, "addTags": {"brand": "Miles Morgan Travel", "brand:wikidata": "Q83179278", "name": "Miles Morgan Travel", "shop": "travel_agency"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Neckermann Reisen": {"name": "Neckermann Reisen", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/neckermann.be/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17300280", "shop": "travel_agency"}, "addTags": {"brand": "Neckermann Reisen", "brand:wikidata": "Q17300280", "name": "Neckermann Reisen", "shop": "travel_agency"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Reiseland": {"name": "Reiseland", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/reiseland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q40387610", "shop": "travel_agency"}, "addTags": {"brand": "Reiseland", "brand:wikidata": "Q40387610", "brand:wikipedia": "de:OTTO Reisen", "name": "Reiseland", "shop": "travel_agency"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/STA Travel": {"name": "STA Travel", "icon": "fas-suitcase", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSTA%20Travel%20Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2208025", "shop": "travel_agency"}, "addTags": {"brand": "STA Travel", "brand:wikidata": "Q2208025", "brand:wikipedia": "en:STA Travel", "name": "STA Travel", "shop": "travel_agency"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Selectour": {"name": "Selectour", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/SelectourVoyages/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3478073", "shop": "travel_agency"}, "addTags": {"brand": "Selectour", "brand:wikidata": "Q3478073", "brand:wikipedia": "fr:Selectour", "name": "Selectour", "shop": "travel_agency"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/TUI (Group)": {"name": "TUI (Group)", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/TUIDeutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q573103", "shop": "travel_agency"}, "addTags": {"brand": "TUI", "brand:wikidata": "Q573103", "brand:wikipedia": "en:TUI AG", "name": "TUI", "shop": "travel_agency"}, "terms": ["tui reisecenter"], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/TUI (UK)": {"name": "TUI (UK)", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/worldofTUI/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7795876", "shop": "travel_agency"}, "addTags": {"brand": "TUI", "brand:wikidata": "Q7795876", "brand:wikipedia": "en:TUI UK", "name": "TUI", "shop": "travel_agency"}, "countryCodes": ["gb"], "terms": ["thomson"], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/The Co-operative Travel": {"name": "The Co-operative Travel", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/cooperativetraveluk/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7726526", "shop": "travel_agency"}, "addTags": {"brand": "The Co-operative Travel", "brand:wikidata": "Q7726526", "brand:wikipedia": "en:The Co-operative Travel", "name": "The Co-operative Travel", "shop": "travel_agency"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Thomas Cook": {"name": "Thomas Cook", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/thomascook/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2141800", "shop": "travel_agency"}, "addTags": {"brand": "Thomas Cook", "brand:wikidata": "Q2141800", "brand:wikipedia": "en:Thomas Cook Group", "name": "Thomas Cook", "shop": "travel_agency"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Turkish Airlines": {"name": "Turkish Airlines", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/turkishairlines/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4548", "shop": "travel_agency"}, "addTags": {"brand": "Turkish Airlines", "brand:wikidata": "Q4548", "brand:wikipedia": "en:Turkish Airlines", "name": "Turkish Airlines", "shop": "travel_agency"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/ltur": {"name": "ltur", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/ltur/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q519040", "shop": "travel_agency"}, "addTags": {"brand": "ltur", "brand:wikidata": "Q519040", "brand:wikipedia": "de:L’TUR", "name": "ltur", "shop": "travel_agency"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/Поехали с нами": {"name": "Поехали с нами", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/PoehaliSNamiua/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25439141", "shop": "travel_agency"}, "addTags": {"brand": "Поехали с нами", "brand:wikidata": "Q25439141", "brand:wikipedia": "uk:Поїхали з нами", "name": "Поехали с нами", "shop": "travel_agency"}, "countryCodes": ["ua"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/エイチ・アイ・エス": {"name": "エイチ・アイ・エス", "icon": "fas-suitcase", "imageURL": "https://graph.facebook.com/H.I.S.Japan/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1452225", "shop": "travel_agency"}, "addTags": {"alt_name:en": "HIS", "brand": "エイチ・アイ・エス", "brand:en": "H.I.S.", "brand:ja": "エイチ・アイ・エス", "brand:wikidata": "Q1452225", "brand:wikipedia": "ja:エイチ・アイ・エス", "name": "エイチ・アイ・エス", "name:en": "H.I.S.", "name:ja": "エイチ・アイ・エス", "shop": "travel_agency"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/travel_agency/近畿日本ツーリスト": {"name": "近畿日本ツーリスト", "icon": "fas-suitcase", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%E8%BF%91%E7%95%BF%E6%97%A5%E6%9C%AC%E3%83%84%E3%83%BC%E3%83%AA%E3%82%B9%E3%83%88%20%E7%9C%8B%E6%9D%BF.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11638632", "shop": "travel_agency"}, "addTags": {"brand": "近畿日本ツーリスト", "brand:en": "KNT", "brand:ja": "近畿日本ツーリスト", "brand:wikidata": "Q11638632", "brand:wikipedia": "ja:近畿日本ツーリスト", "name": "近畿日本ツーリスト", "name:en": "KNT", "name:ja": "近畿日本ツーリスト", "official_name:en": "Kinki Nippon Tourist", "shop": "travel_agency"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Alliance Tire Company": {"name": "Alliance Tire Company", "icon": "temaki-tire", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q420541", "shop": "tyres"}, "addTags": {"brand": "Alliance", "brand:wikidata": "Q420541", "brand:wikipedia": "en:Alliance Tire Company Ltd", "name": "Alliance Tire Company", "shop": "tyres"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Apollo Tyres": {"name": "Apollo Tyres", "icon": "temaki-tire", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FApollo%20Tyres%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4780362", "shop": "tyres"}, "addTags": {"brand": "Apollo Tyres", "brand:wikidata": "Q4780362", "brand:wikipedia": "en:Apollo Tyres", "name": "Apollo Tyres", "shop": "tyres"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Big O Tires": {"name": "Big O Tires", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/BigOTires/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4906085", "shop": "tyres"}, "addTags": {"brand": "Big O Tires", "brand:wikidata": "Q4906085", "brand:wikipedia": "en:Big O Tires", "name": "Big O Tires", "shop": "tyres"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Bridgestone": {"name": "Bridgestone", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/BridgestoneTires/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q179433", "shop": "tyres"}, "addTags": {"brand": "Bridgestone", "brand:wikidata": "Q179433", "brand:wikipedia": "en:Bridgestone", "name": "Bridgestone", "shop": "tyres"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Continental AG": {"name": "Continental AG", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/Continental/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q163241", "shop": "tyres"}, "addTags": {"brand": "Continental AG", "brand:wikidata": "Q163241", "brand:wikipedia": "en:Continental AG", "name": "Continental AG", "shop": "tyres"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Cooper Tire & Rubber Company": {"name": "Cooper Tire & Rubber Company", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/coopertire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1129847", "shop": "tyres"}, "addTags": {"brand": "Cooper Tire & Rubber Company", "brand:wikidata": "Q1129847", "brand:wikipedia": "en:Cooper Tire & Rubber Company", "name": "Cooper Tire & Rubber Company", "shop": "tyres"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Discount Tire": {"name": "Discount Tire", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/DiscountTire/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5281735", "shop": "tyres"}, "addTags": {"brand": "Discount Tire", "brand:wikidata": "Q5281735", "brand:wikipedia": "en:Discount Tire", "name": "Discount Tire", "shop": "tyres"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Eurotyre (BelgiumNetherlands)": {"name": "Eurotyre (Belgium/Netherlands)", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/corteauto.eurotyre/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q91309121", "shop": "tyres"}, "addTags": {"brand": "Eurotyre", "brand:wikidata": "Q91309121", "name": "Eurotyre", "shop": "tyres"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Eurotyre (France)": {"name": "Eurotyre (France)", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/EurotyreFr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3060871", "shop": "tyres"}, "addTags": {"brand": "Eurotyre", "brand:wikidata": "Q3060871", "brand:wikipedia": "fr:Eurotyre", "name": "Eurotyre", "shop": "tyres"}, "countryCodes": ["fr", "so"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Express Oil Change & Tire Engineers": {"name": "Express Oil Change & Tire Engineers", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/expressoil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q39057654", "shop": "tyres"}, "addTags": {"brand": "Express Oil Change & Tire Engineers", "brand:wikidata": "Q39057654", "brand:wikipedia": "en:Express Oil Change & Tire Engineers", "name": "Express Oil Change & Tire Engineers", "shop": "tyres"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Les Schwab Tire Center": {"name": "Les Schwab Tire Center", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/lesschwab/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6529977", "shop": "tyres"}, "addTags": {"brand": "Les Schwab Tire Center", "brand:wikidata": "Q6529977", "brand:wikipedia": "en:Les Schwab Tire Centers", "name": "Les Schwab Tire Center", "shop": "tyres"}, "countryCodes": ["us"], "terms": ["les schwab"], "matchScore": 2, "suggestion": true}, - "shop/tyres/Michelin": {"name": "Michelin", "icon": "temaki-tire", "imageURL": "https://pbs.twimg.com/profile_images/1031457567963312128/I7Vnou9B_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q151107", "shop": "tyres"}, "addTags": {"brand": "Michelin", "brand:wikidata": "Q151107", "brand:wikipedia": "en:Michelin", "name": "Michelin", "shop": "tyres"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Pneuhage": {"name": "Pneuhage", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/pneuhage.reifendienste/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2099972", "shop": "tyres"}, "addTags": {"brand": "Pneuhage", "brand:wikidata": "Q2099972", "brand:wikipedia": "de:Pneuhage", "name": "Pneuhage", "shop": "tyres"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Tire Discounters": {"name": "Tire Discounters", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/TireDiscounters/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q29093639", "shop": "tyres"}, "addTags": {"brand": "Tire Discounters", "brand:wikidata": "Q29093639", "brand:wikipedia": "en:Tire Discounters", "name": "Tire Discounters", "shop": "tyres"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Tires Plus": {"name": "Tires Plus", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/TiresPlus/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q64015091", "shop": "tyres"}, "addTags": {"brand": "Tires Plus", "brand:wikidata": "Q64015091", "name": "Tires Plus", "shop": "tyres"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/tyres/Vianor": {"name": "Vianor", "icon": "temaki-tire", "imageURL": "https://graph.facebook.com/VianorSuomi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q10714920", "shop": "tyres"}, "addTags": {"brand": "Vianor", "brand:wikidata": "Q10714920", "brand:wikipedia": "sv:Vianor", "name": "Vianor", "shop": "tyres"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/vacuum_cleaner/Oreck": {"name": "Oreck", "icon": "temaki-vacuum", "imageURL": "https://graph.facebook.com/oreck/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q57273844", "shop": "vacuum_cleaner"}, "addTags": {"brand": "Oreck", "brand:wikidata": "Q57273844", "name": "Oreck", "shop": "vacuum_cleaner"}, "countryCodes": ["us"], "terms": ["oreck vacuums"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/99 Cents Only Stores": {"name": "99 Cents Only Stores", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/99CentsOnly/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4646294", "shop": "variety_store"}, "addTags": {"brand": "99 Cents Only Stores", "brand:wikidata": "Q4646294", "brand:wikipedia": "en:99 Cents Only Stores", "name": "99 Cents Only Stores", "shop": "variety_store"}, "countryCodes": ["us"], "terms": ["99 cent only stores", "99 cents only"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Action": {"name": "Action", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/actiondotcom/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2634111", "shop": "variety_store"}, "addTags": {"brand": "Action", "brand:wikidata": "Q2634111", "brand:wikipedia": "nl:Action (winkel)", "name": "Action", "shop": "variety_store"}, "countryCodes": ["at", "be", "de", "fr", "lu", "nl", "pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/B&M Bargains": {"name": "B&M Bargains", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/bmstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4836931", "shop": "variety_store"}, "addTags": {"brand": "B&M Bargains", "brand:wikidata": "Q4836931", "brand:wikipedia": "en:B & M", "name": "B&M Bargains", "shop": "variety_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Big Bazar": {"name": "Big Bazar", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/bigbazarbv/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15873104", "shop": "variety_store"}, "addTags": {"brand": "Big Bazar", "brand:wikidata": "Q15873104", "brand:wikipedia": "nl:Big Bazar", "name": "Big Bazar", "shop": "variety_store"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Daiso Japan": {"name": "Daiso Japan", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/daisojapanusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q866991", "shop": "variety_store"}, "addTags": {"brand": "Daiso", "brand:wikidata": "Q866991", "brand:wikipedia": "en:Daiso", "name": "Daiso Japan", "shop": "variety_store", "short_name": "Daiso"}, "countryCodes": ["au", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Dealz": {"name": "Dealz", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1242817497973350400/MkhRtzSk_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16942585", "shop": "variety_store"}, "addTags": {"brand": "Dealz", "brand:wikidata": "Q16942585", "brand:wikipedia": "en:Dealz", "name": "Dealz", "shop": "variety_store"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Dollar General": {"name": "Dollar General", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/dollargeneral/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q145168", "shop": "variety_store"}, "addTags": {"brand": "Dollar General", "brand:wikidata": "Q145168", "brand:wikipedia": "en:Dollar General", "name": "Dollar General", "shop": "variety_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Dollar Tree": {"name": "Dollar Tree", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/509405558898561024/27hmihjq_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5289230", "shop": "variety_store"}, "addTags": {"brand": "Dollar Tree", "brand:wikidata": "Q5289230", "brand:wikipedia": "en:Dollar Tree", "name": "Dollar Tree", "shop": "variety_store"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Dollarama": {"name": "Dollarama", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/415845051799232/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3033947", "shop": "variety_store"}, "addTags": {"brand": "Dollarama", "brand:wikidata": "Q3033947", "brand:wikipedia": "en:Dollarama", "name": "Dollarama", "shop": "variety_store"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/EuroShop": {"name": "EuroShop", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/schumeuroshop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15846763", "shop": "variety_store"}, "addTags": {"brand": "EuroShop", "brand:wikidata": "Q15846763", "brand:wikipedia": "de:Schum EuroShop", "name": "EuroShop", "shop": "variety_store"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Family Dollar": {"name": "Family Dollar", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/familydollar/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5433101", "shop": "variety_store"}, "addTags": {"brand": "Family Dollar", "brand:wikidata": "Q5433101", "brand:wikipedia": "en:Family Dollar", "name": "Family Dollar", "shop": "variety_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Five Below": {"name": "Five Below", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/FiveBelow/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5455836", "shop": "variety_store"}, "addTags": {"brand": "Five Below", "brand:wikidata": "Q5455836", "brand:wikipedia": "en:Five Below", "name": "Five Below", "shop": "variety_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Fix Price": {"name": "Fix Price", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/fixprice.russia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4038791", "shop": "variety_store"}, "addTags": {"brand": "Fix Price", "brand:wikidata": "Q4038791", "brand:wikipedia": "ru:Fix Price (сеть магазинов)", "name": "Fix Price", "shop": "variety_store"}, "countryCodes": ["by", "ru"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Flying Tiger Copenhagen": {"name": "Flying Tiger Copenhagen", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/flyingtigercph/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2786319", "shop": "variety_store"}, "addTags": {"brand": "Flying Tiger Copenhagen", "brand:wikidata": "Q2786319", "brand:wikipedia": "en:Flying Tiger Copenhagen", "name": "Flying Tiger Copenhagen", "shop": "variety_store", "short_name": "Flying Tiger"}, "terms": ["tgr", "tiger"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/GiFi": {"name": "GiFi", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/GiFi.Officiel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3105439", "shop": "variety_store"}, "addTags": {"brand": "GiFi", "brand:wikidata": "Q3105439", "brand:wikipedia": "fr:Gifi", "name": "GiFi", "shop": "variety_store"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Home Bargains": {"name": "Home Bargains", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/homebargains/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5888229", "shop": "variety_store"}, "addTags": {"brand": "Home Bargains", "brand:wikidata": "Q5888229", "brand:wikipedia": "en:Home Bargains", "name": "Home Bargains", "shop": "variety_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/La Foir'Fouille": {"name": "La Foir'Fouille", "icon": "maki-shop", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3209040", "shop": "variety_store"}, "addTags": {"brand": "La Foir'Fouille", "brand:wikidata": "Q3209040", "brand:wikipedia": "fr:La Foir'Fouille", "name": "La Foir'Fouille", "shop": "variety_store"}, "countryCodes": ["be", "fr", "lu", "mu", "nc"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Miniso": {"name": "Miniso", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMiniso%20international%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q20732498", "shop": "variety_store"}, "addTags": {"brand": "Miniso", "brand:wikidata": "Q20732498", "brand:wikipedia": "en:Miniso", "name": "Miniso", "shop": "variety_store"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Mäc-Geiz": {"name": "Mäc-Geiz", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/1652809328274529/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1957126", "shop": "variety_store"}, "addTags": {"brand": "Mäc-Geiz", "brand:wikidata": "Q1957126", "brand:wikipedia": "de:Mäc-Geiz", "name": "Mäc-Geiz", "shop": "variety_store"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/NOZ": {"name": "NOZ", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/UniversNOZ/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3345688", "shop": "variety_store"}, "addTags": {"brand": "NOZ", "brand:wikidata": "Q3345688", "brand:wikipedia": "fr:Noz", "name": "NOZ", "shop": "variety_store"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Ocean State Job Lot": {"name": "Ocean State Job Lot", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/OceanStateJobLot/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7076076", "shop": "variety_store"}, "addTags": {"brand": "Ocean State Job Lot", "brand:wikidata": "Q7076076", "brand:wikipedia": "en:Ocean State Job Lot", "name": "Ocean State Job Lot", "shop": "variety_store", "short_name": "Job Lot"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Ollie's Bargain Outlet": {"name": "Ollie's Bargain Outlet", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/olliesbargainoutlet/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7088304", "shop": "variety_store"}, "addTags": {"brand": "Ollie's Bargain Outlet", "brand:wikidata": "Q7088304", "brand:wikipedia": "en:Ollie's Bargain Outlet", "name": "Ollie's Bargain Outlet", "shop": "variety_store", "short_name": "Ollie's"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Poundland": {"name": "Poundland", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Poundland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1434528", "shop": "variety_store"}, "addTags": {"brand": "Poundland", "brand:wikidata": "Q1434528", "brand:wikipedia": "en:Poundland", "name": "Poundland", "shop": "variety_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Poundstretcher": {"name": "Poundstretcher", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Poundstretcher/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7235675", "shop": "variety_store"}, "addTags": {"brand": "Poundstretcher", "brand:wikidata": "Q7235675", "brand:wikipedia": "en:Poundstretcher", "name": "Poundstretcher", "shop": "variety_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Poundworld": {"name": "Poundworld", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/PoundWorld/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16967516", "shop": "variety_store"}, "addTags": {"brand": "Poundworld", "brand:wikidata": "Q16967516", "brand:wikipedia": "en:Poundworld", "name": "Poundworld", "shop": "variety_store"}, "countryCodes": ["gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Roses": {"name": "Roses", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/rosesdiscountstores/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7368644", "shop": "variety_store"}, "addTags": {"brand": "Roses", "brand:wikidata": "Q7368644", "brand:wikipedia": "en:Roses (store)", "name": "Roses", "shop": "variety_store"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/TEDi": {"name": "TEDi", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FTEDi-Logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1364603", "shop": "variety_store"}, "addTags": {"brand": "TEDi", "brand:wikidata": "Q1364603", "brand:wikipedia": "de:TEDi", "name": "TEDi", "shop": "variety_store"}, "countryCodes": ["at", "de", "es", "hr", "si", "sk"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/THANK YOU MART": {"name": "THANK YOU MART", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/390yenSHOP.ThankYouMart/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11305509", "shop": "variety_store"}, "addTags": {"alt_name:en": "390 Yen Shop", "brand": "THANK YOU MART", "brand:en": "THANK YOU MART", "brand:ja": "サンキューマート", "brand:wikidata": "Q11305509", "brand:wikipedia": "ja:サンキューマート", "name": "THANK YOU MART", "name:en": "THANK YOU MART", "name:ja": "サンキューマート", "shop": "variety_store"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Tokmanni": {"name": "Tokmanni", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/Tokmanni.fi/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13423470", "shop": "variety_store"}, "addTags": {"brand": "Tokmanni", "brand:wikidata": "Q13423470", "brand:wikipedia": "fi:Tokmanni", "name": "Tokmanni", "shop": "variety_store"}, "countryCodes": ["fi"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/Wilko": {"name": "Wilko", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/LoveWilko/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8002536", "shop": "variety_store"}, "addTags": {"brand": "Wilko", "brand:wikidata": "Q8002536", "brand:wikipedia": "en:Wilko (retailer)", "name": "Wilko", "shop": "variety_store"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/キャンドゥ": {"name": "キャンドゥ", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/986887047209091072/PPjs7xOK_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11297367", "shop": "variety_store"}, "addTags": {"brand": "キャンドゥ", "brand:en": "CAN DO", "brand:ja": "キャンドゥ", "brand:wikidata": "Q11297367", "brand:wikipedia": "ja:キャンドゥ", "name": "キャンドゥ", "name:en": "CAN DO", "name:ja": "キャンドゥ", "shop": "variety_store"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/セリア": {"name": "セリア", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSeria%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11314509", "shop": "variety_store"}, "addTags": {"brand": "セリア", "brand:en": "Seria", "brand:ja": "セリア", "brand:wikidata": "Q11314509", "brand:wikipedia": "ja:セリア (100円ショップ)", "name": "セリア", "name:en": "Seria", "name:ja": "セリア", "shop": "variety_store"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/ダイソー": {"name": "ダイソー", "icon": "maki-shop", "imageURL": "https://graph.facebook.com/daisojapanusa/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q866991", "shop": "variety_store"}, "addTags": {"brand": "ダイソー", "brand:en": "Daiso", "brand:ja": "ダイソー", "brand:wikidata": "Q866991", "brand:wikipedia": "ja:大創産業", "name": "ダイソー", "name:en": "Daiso", "name:ja": "ダイソー", "shop": "variety_store"}, "countryCodes": ["jp"], "terms": ["ザ・ダイソー", "大創産業"], "matchScore": 2, "suggestion": true}, - "shop/variety_store/ダイレックス": {"name": "ダイレックス", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FDirex%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11317051", "shop": "variety_store"}, "addTags": {"brand": "ダイレックス", "brand:en": "Direx", "brand:ja": "ダイレックス", "brand:wikidata": "Q11317051", "brand:wikipedia": "ja:ダイレックス (ディスカウントストア)", "name": "ダイレックス", "name:en": "Direx", "name:ja": "ダイレックス", "shop": "variety_store"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/トライアル": {"name": "トライアル", "icon": "maki-shop", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2F%E3%83%88%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%AB%E3%82%AB%E3%83%B3%E3%83%91%E3%83%8B%E3%83%BC%20%E3%83%AD%E3%82%B4.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11321723", "shop": "variety_store"}, "addTags": {"brand": "トライアル", "brand:en": "Trial", "brand:ja": "トライアル", "brand:wikidata": "Q11321723", "brand:wikipedia": "ja:トライアルカンパニー", "name": "トライアル", "name:en": "Trial", "name:ja": "トライアル", "shop": "variety_store"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/ドン・キホーテ": {"name": "ドン・キホーテ", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1248051445049384960/OEEckC9G_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1185381", "shop": "variety_store"}, "addTags": {"brand": "ドン・キホーテ", "brand:en": "Don Quijote", "brand:ja": "ドン・キホーテ", "brand:wikidata": "Q1185381", "brand:wikipedia": "ja:ドン・キホーテ (企業)", "name": "ドン・キホーテ", "name:en": "Don Quijote", "name:ja": "ドン・キホーテ", "opening_hours": "24/7", "shop": "variety_store", "short_name": "ドンキ", "short_name:en": "Donki", "short_name:ja": "ドンキ"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/variety_store/ワッツ": {"name": "ワッツ", "icon": "maki-shop", "imageURL": "https://pbs.twimg.com/profile_images/1016136773578027008/H7YAimDl_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11351402", "shop": "variety_store"}, "addTags": {"brand": "ワッツ", "brand:en": "Watts", "brand:ja": "ワッツ", "brand:wikidata": "Q11351402", "brand:wikipedia": "ja:ワッツ (企業)", "name": "ワッツ", "name:en": "Watts", "name:ja": "ワッツ", "shop": "variety_store"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/video_games/EB Games": {"name": "EB Games", "icon": "maki-gaming", "imageURL": "https://graph.facebook.com/ebgamescanada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4993686", "shop": "video_games"}, "addTags": {"brand": "EB Games", "brand:wikidata": "Q4993686", "brand:wikipedia": "en:EB Games", "name": "EB Games", "shop": "video_games"}, "countryCodes": ["au", "ca", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/video_games/Game": {"name": "Game", "icon": "maki-gaming", "imageURL": "https://graph.facebook.com/GAMEstore/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5519813", "shop": "video_games"}, "addTags": {"brand": "Game", "brand:wikidata": "Q5519813", "brand:wikipedia": "en:Game (retailer)", "name": "Game", "shop": "video_games"}, "countryCodes": ["es", "gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/video_games/Game Mania": {"name": "Game Mania", "icon": "maki-gaming", "imageURL": "https://graph.facebook.com/GameManiaNederland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q18069429", "shop": "video_games"}, "addTags": {"brand": "Game Mania", "brand:wikidata": "Q18069429", "brand:wikipedia": "nl:Game Mania", "name": "Game Mania", "shop": "video_games"}, "countryCodes": ["be", "nl"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/video_games/GameStop": {"name": "GameStop", "icon": "maki-gaming", "imageURL": "https://graph.facebook.com/GameStop/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q202210", "shop": "video_games"}, "addTags": {"brand": "GameStop", "brand:wikidata": "Q202210", "brand:wikipedia": "en:GameStop", "name": "GameStop", "shop": "video_games"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/video_games/Micromania": {"name": "Micromania", "icon": "maki-gaming", "imageURL": "https://graph.facebook.com/MicromaniaFr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3312221", "shop": "video_games"}, "addTags": {"brand": "Micromania", "brand:wikidata": "Q3312221", "brand:wikipedia": "en:Micromania (video game retailer)", "name": "Micromania", "shop": "video_games"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/video/Blockbuster": {"name": "Blockbuster", "icon": "temaki-movie_rental", "imageURL": "https://pbs.twimg.com/profile_images/378800000679852472/9ee706eca6f5d0b9fbc3a57d014ec807_bigger.jpeg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q884711", "shop": "video"}, "addTags": {"brand": "Blockbuster", "brand:wikidata": "Q884711", "brand:wikipedia": "en:Blockbuster LLC", "name": "Blockbuster", "shop": "video"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/video/Family Video": {"name": "Family Video", "icon": "temaki-movie_rental", "imageURL": "https://graph.facebook.com/FamilyVideo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5433297", "shop": "video"}, "addTags": {"brand": "Family Video", "brand:wikidata": "Q5433297", "brand:wikipedia": "en:Family Video", "name": "Family Video", "shop": "video"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/video/TSUTAYA": {"name": "TSUTAYA", "icon": "temaki-movie_rental", "imageURL": "https://graph.facebook.com/TSUTAYA/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5193457", "shop": "video"}, "addTags": {"brand": "TSUTAYA", "brand:wikidata": "Q5193457", "brand:wikipedia": "ja:カルチュア・コンビニエンス・クラブ", "name": "TSUTAYA", "shop": "video"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/video/ゲオ": {"name": "ゲオ", "icon": "temaki-movie_rental", "imageURL": "https://pbs.twimg.com/profile_images/875292214191992832/Z7Ypx9pL_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5533938", "shop": "video"}, "addTags": {"brand": "GEO", "brand:ja": "GEO", "brand:wikidata": "Q5533938", "brand:wikipedia": "ja:ゲオ", "name": "ゲオ", "name:en": "GEO", "name:ja": "ゲオ", "shop": "video"}, "countryCodes": ["jp"], "terms": ["geo"], "matchScore": 2, "suggestion": true}, - "shop/watches/Fossil": {"name": "Fossil", "icon": "maki-watch", "imageURL": "https://graph.facebook.com/Fossil/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q356212", "shop": "watches"}, "addTags": {"brand": "Fossil", "brand:wikidata": "Q356212", "brand:wikipedia": "en:Fossil Group", "name": "Fossil", "shop": "watches"}, "countryCodes": ["ca", "de", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/watches/Omega": {"name": "Omega", "icon": "maki-watch", "imageURL": "https://graph.facebook.com/omega/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q659224", "shop": "watches"}, "addTags": {"brand": "Omega", "brand:wikidata": "Q659224", "brand:wikipedia": "en:Omega SA", "name": "Omega", "shop": "watches"}, "countryCodes": ["ch", "fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/watches/Rolex": {"name": "Rolex", "icon": "maki-watch", "imageURL": "https://graph.facebook.com/rolex/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q62288", "shop": "watches"}, "addTags": {"brand": "Rolex", "brand:wikidata": "Q62288", "brand:wikipedia": "en:Rolex", "name": "Rolex", "shop": "watches"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/watches/Seiko": {"name": "Seiko", "icon": "maki-watch", "imageURL": "https://pbs.twimg.com/profile_images/922617385185558528/Khd7qk6K_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q322601", "shop": "watches"}, "addTags": {"brand": "Seiko", "brand:wikidata": "Q322601", "brand:wikipedia": "en:Seiko", "name": "Seiko", "shop": "watches"}, "terms": ["セイコー"], "matchScore": 2, "suggestion": true}, - "shop/watches/Swatch": {"name": "Swatch", "icon": "maki-watch", "imageURL": "https://graph.facebook.com/SwatchUS/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q573422", "shop": "watches"}, "addTags": {"brand": "Swatch", "brand:wikidata": "Q573422", "brand:wikipedia": "en:Swatch", "name": "Swatch", "shop": "watches"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/wholesale/BJ's Wholesale Club": {"name": "BJ's Wholesale Club", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/bjswholesaleclub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4835754", "shop": "wholesale"}, "addTags": {"brand": "BJ's Wholesale Club", "brand:wikidata": "Q4835754", "brand:wikipedia": "en:BJ's Wholesale Club", "name": "BJ's Wholesale Club", "shop": "wholesale"}, "countryCodes": ["us"], "terms": ["bjs", "bjs wholesale"], "matchScore": 2, "suggestion": true}, - "shop/wholesale/Booker Wholesale": {"name": "Booker Wholesale", "icon": "maki-warehouse", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4943180", "shop": "wholesale"}, "addTags": {"brand": "Booker Wholesale", "brand:wikidata": "Q4943180", "brand:wikipedia": "en:Booker Group", "name": "Booker Wholesale", "shop": "wholesale"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/wholesale/Costco": {"name": "Costco", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/Costco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q715583", "shop": "wholesale"}, "addTags": {"brand": "Costco", "brand:wikidata": "Q715583", "brand:wikipedia": "en:Costco", "name": "Costco", "shop": "wholesale"}, "terms": ["costco wholesale"], "matchScore": 2, "suggestion": true}, - "shop/wholesale/Makro": {"name": "Makro", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/makrohipermayorista/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q704606", "shop": "wholesale"}, "addTags": {"brand": "Makro", "brand:wikidata": "Q704606", "brand:wikipedia": "en:Makro", "name": "Makro", "shop": "wholesale"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/wholesale/Metro": {"name": "Metro", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/metro.deutschland/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q13610282", "shop": "wholesale"}, "addTags": {"brand": "Metro", "brand:wikidata": "Q13610282", "brand:wikipedia": "en:Metro Cash & Carry", "name": "Metro", "shop": "wholesale"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/wholesale/Sam's Club": {"name": "Sam's Club", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/samsclub/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1972120", "shop": "wholesale"}, "addTags": {"brand": "Sam's Club", "brand:wikidata": "Q1972120", "brand:wikipedia": "en:Sam's Club", "name": "Sam's Club", "shop": "wholesale"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/wholesale/Sligro": {"name": "Sligro", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/sligro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3170052", "shop": "wholesale"}, "addTags": {"brand": "Sligro", "brand:wikidata": "Q3170052", "brand:wikipedia": "nl:Sligro Food Group", "name": "Sligro", "shop": "wholesale"}, "terms": [], "matchScore": 2, "suggestion": true}, - "shop/wholesale/コストコ": {"name": "コストコ", "icon": "maki-warehouse", "imageURL": "https://graph.facebook.com/Costco/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q715583", "shop": "wholesale"}, "addTags": {"brand": "コストコ", "brand:en": "Costco", "brand:ja": "コストコ", "brand:wikidata": "Q715583", "brand:wikipedia": "ja:コストコ", "name": "コストコ", "name:en": "Costco", "name:ja": "コストコ", "shop": "wholesale"}, "countryCodes": ["jp"], "terms": [], "matchScore": 2, "suggestion": true}, - "shop/wine/Wine Rack": {"name": "Wine Rack", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q86707661", "shop": "wine"}, "addTags": {"brand": "Wine Rack", "brand:wikidata": "Q86707661", "name": "Wine Rack", "shop": "wine"}, "countryCodes": ["ca"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/caravan_site/Big 4 Holiday Parks": {"name": "Big 4 Holiday Parks", "icon": "temaki-camper_trailer", "imageURL": "https://graph.facebook.com/BIG4HolidayParks/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q18636678", "tourism": "caravan_site"}, "addTags": {"brand": "Big 4 Holiday Parks", "brand:wikidata": "Q18636678", "brand:wikipedia": "en:BIG4 Holiday Parks", "name": "BIG4 Holiday Parks", "short_name": "Big4", "tourism": "caravan_site"}, "countryCodes": ["au", "nz"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/caravan_site/KOA Holiday": {"name": "KOA Holiday", "icon": "temaki-camper_trailer", "imageURL": "https://graph.facebook.com/KOAKampgrounds/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q16988635", "tourism": "caravan_site"}, "addTags": {"brand": "KOA", "brand:wikidata": "Q16988635", "brand:wikipedia": "en:Kampgrounds of America", "name": "KOA Holiday", "short_name": "KOA", "tourism": "caravan_site"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/caravan_site/KOA Journey": {"name": "KOA Journey", "icon": "temaki-camper_trailer", "imageURL": "https://graph.facebook.com/KOAKampgrounds/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q16988635", "tourism": "caravan_site"}, "addTags": {"brand": "KOA", "brand:wikidata": "Q16988635", "brand:wikipedia": "en:Kampgrounds of America", "name": "KOA Journey", "short_name": "KOA", "tourism": "caravan_site"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/caravan_site/KOA Kampground": {"name": "KOA Kampground", "icon": "temaki-camper_trailer", "imageURL": "https://graph.facebook.com/KOAKampgrounds/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q16988635", "tourism": "caravan_site"}, "addTags": {"alt_name": "KOA Campground", "brand": "KOA", "brand:wikidata": "Q16988635", "brand:wikipedia": "en:Kampgrounds of America", "name": "KOA Kampground", "short_name": "KOA", "tourism": "caravan_site"}, "countryCodes": ["ca", "us"], "terms": ["kampgrounds of america", "koa"], "matchScore": 2, "suggestion": true}, - "tourism/caravan_site/KOA Resort": {"name": "KOA Resort", "icon": "temaki-camper_trailer", "imageURL": "https://graph.facebook.com/KOAKampgrounds/picture?type=large", "geometry": ["point", "vertex", "area"], "tags": {"brand:wikidata": "Q16988635", "tourism": "caravan_site"}, "addTags": {"brand": "KOA", "brand:wikidata": "Q16988635", "brand:wikipedia": "en:Kampgrounds of America", "name": "KOA Resort", "short_name": "KOA", "tourism": "caravan_site"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/AC Hotel": {"name": "AC Hotel", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/achotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5653536", "tourism": "hotel"}, "addTags": {"brand": "AC Hotel", "brand:wikidata": "Q5653536", "brand:wikipedia": "en:AC Hotels", "name": "AC Hotel", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Aloft": {"name": "Aloft", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/alofthotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4734166", "tourism": "hotel"}, "addTags": {"brand": "Aloft", "brand:wikidata": "Q4734166", "brand:wikipedia": "en:Aloft Hotels", "name": "Aloft", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/AmericInn": {"name": "AmericInn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/americinn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4742493", "tourism": "hotel"}, "addTags": {"brand": "AmericInn", "brand:wikidata": "Q4742493", "brand:wikipedia": "en:AmericInn", "name": "AmericInn", "official_name": "AmericInn by Wyndham", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/B&B Hôtel": {"name": "B&B Hôtel", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/bbhotels.france/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q794939", "tourism": "hotel"}, "addTags": {"brand": "B&B Hôtel", "brand:wikidata": "Q794939", "brand:wikipedia": "en:B&B Hotels", "name": "B&B Hôtel", "tourism": "hotel"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Baymont": {"name": "Baymont", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/baymontinns/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4874634", "tourism": "hotel"}, "addTags": {"brand": "Baymont", "brand:wikidata": "Q4874634", "brand:wikipedia": "en:Baymont Inn & Suites", "name": "Baymont", "official_name": "Baymont by Wyndham", "tourism": "hotel"}, "countryCodes": ["ca", "mx", "us"], "terms": ["baymont inn", "baymont inn & suites"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Best Western": {"name": "Best Western", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/BestWestern/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q830334", "tourism": "hotel"}, "addTags": {"brand": "Best Western", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Best Western Plus": {"name": "Best Western Plus", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/BestWestern/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q830334", "tourism": "hotel"}, "addTags": {"brand": "Best Western Plus", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western Plus", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Best Western Premier": {"name": "Best Western Premier", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/BestWestern/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q830334", "tourism": "hotel"}, "addTags": {"brand": "Best Western Premier", "brand:wikidata": "Q830334", "brand:wikipedia": "en:Best Western", "name": "Best Western Premier", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Campanile": {"name": "Campanile", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/campanile/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2412064", "tourism": "hotel"}, "addTags": {"brand": "Campanile", "brand:wikidata": "Q2412064", "brand:wikipedia": "fr:Campanile (chaîne d'hôtels)", "name": "Campanile", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Candlewood Suites": {"name": "Candlewood Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/CandlewoodSuites/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5032010", "tourism": "hotel"}, "addTags": {"brand": "Candlewood Suites", "brand:wikidata": "Q5032010", "brand:wikipedia": "en:Candlewood Suites", "name": "Candlewood Suites", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Centro Hotels": {"name": "Centro Hotels", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/Hotels.Centro/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q73645443", "tourism": "hotel"}, "addTags": {"brand": "Centro Hotels", "brand:wikidata": "Q73645443", "name": "Centro Hotel", "tourism": "hotel"}, "countryCodes": ["de"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Clarion": {"name": "Clarion", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/ClarionPhl/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q78165540", "tourism": "hotel"}, "addTags": {"brand": "Clarion", "brand:wikidata": "Q78165540", "name": "Clarion", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Comfort Inn": {"name": "Comfort Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1075788", "tourism": "hotel"}, "addTags": {"brand": "Comfort Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn", "tourism": "hotel"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Comfort Inn & Suites": {"name": "Comfort Inn & Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1075788", "tourism": "hotel"}, "addTags": {"brand": "Comfort Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Inn & Suites", "tourism": "hotel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Comfort Suites": {"name": "Comfort Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1075788", "tourism": "hotel"}, "addTags": {"brand": "Comfort Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Comfort Suites", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Country Inn & Suites": {"name": "Country Inn & Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/countryinn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5177332", "tourism": "hotel"}, "addTags": {"brand": "Country Inn & Suites", "brand:wikidata": "Q5177332", "brand:wikipedia": "en:Country Inns & Suites", "name": "Country Inn & Suites", "tourism": "hotel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Courtyard": {"name": "Courtyard", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/courtyard/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1053170", "tourism": "hotel"}, "addTags": {"brand": "Courtyard", "brand:wikidata": "Q1053170", "brand:wikipedia": "en:Courtyard by Marriott", "name": "Courtyard", "official_name": "Courtyard by Marriott", "tourism": "hotel"}, "terms": ["courtyard marriott"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Crowne Plaza": {"name": "Crowne Plaza", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/crowneplaza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2746220", "tourism": "hotel"}, "addTags": {"brand": "Crowne Plaza", "brand:wikidata": "Q2746220", "brand:wikipedia": "en:Crowne Plaza", "name": "Crowne Plaza", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Days Inn": {"name": "Days Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/DaysInn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1047239", "tourism": "hotel"}, "addTags": {"brand": "Days Inn", "brand:wikidata": "Q1047239", "brand:wikipedia": "en:Days Inn", "name": "Days Inn", "tourism": "hotel"}, "countryCodes": ["ca", "ch", "gb", "id", "in", "kr", "mx", "my", "ph", "sg", "sn", "th", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Delta Hotels": {"name": "Delta Hotels", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/deltahotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5254663", "tourism": "hotel"}, "addTags": {"brand": "Delta Hotels", "brand:wikidata": "Q5254663", "brand:wikipedia": "en:Delta Hotels", "name": "Delta Hotels", "tourism": "hotel"}, "terms": ["delta"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/DoubleTree": {"name": "DoubleTree", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/Doubletree/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2504643", "tourism": "hotel"}, "addTags": {"brand": "DoubleTree", "brand:wikidata": "Q2504643", "brand:wikipedia": "en:DoubleTree", "name": "DoubleTree", "official_name": "DoubleTree by Hilton", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Drury Inn & Suites": {"name": "Drury Inn & Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/Druryhotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5309391", "tourism": "hotel"}, "addTags": {"brand": "Drury Inn & Suites", "brand:wikidata": "Q5309391", "brand:wikipedia": "en:Drury Hotels", "name": "Drury Inn & Suites", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/EVEN Hotels": {"name": "EVEN Hotels", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/EvenHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5416522", "tourism": "hotel"}, "addTags": {"brand": "EVEN Hotels", "brand:wikidata": "Q5416522", "brand:wikipedia": "en:Even Hotels", "name": "EVEN Hotels", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Embassy Suites": {"name": "Embassy Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/EmbassySuites/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5369524", "tourism": "hotel"}, "addTags": {"brand": "Embassy Suites", "brand:wikidata": "Q5369524", "brand:wikipedia": "en:Embassy Suites by Hilton", "name": "Embassy Suites", "official_name": "Embassy Suites by Hilton", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Extended Stay America": {"name": "Extended Stay America", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/ExtendedStayAmerica/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5421850", "tourism": "hotel"}, "addTags": {"brand": "Extended Stay America", "brand:wikidata": "Q5421850", "brand:wikipedia": "en:Extended Stay America", "name": "Extended Stay America", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Fairfield Inn": {"name": "Fairfield Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/fairfieldbymarriott/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5430314", "tourism": "hotel"}, "addTags": {"alt_name": "Fairfield by Marriott", "brand": "Fairfield Inn", "brand:wikidata": "Q5430314", "brand:wikipedia": "en:Fairfield Inn by Marriott", "name": "Fairfield Inn", "tourism": "hotel"}, "countryCodes": ["ca", "cn", "id", "in", "kr", "mx", "my", "sv", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Fairfield Inn & Suites": {"name": "Fairfield Inn & Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/fairfieldbymarriott/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5430314", "tourism": "hotel"}, "addTags": {"brand": "Fairfield Inn & Suites", "brand:wikidata": "Q5430314", "brand:wikipedia": "en:Fairfield Inn by Marriott", "name": "Fairfield Inn & Suites", "tourism": "hotel"}, "countryCodes": ["ca", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Formule 1": {"name": "Formule 1", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/HotelF1/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1630895", "tourism": "hotel"}, "addTags": {"brand": "Formule 1", "brand:wikidata": "Q1630895", "brand:wikipedia": "en:Hotel Formule 1", "name": "Formule 1", "tourism": "hotel"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Four Points by Sheraton": {"name": "Four Points by Sheraton", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/fourpoints/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1439966", "tourism": "hotel"}, "addTags": {"brand": "Four Points by Sheraton", "brand:wikidata": "Q1439966", "brand:wikipedia": "en:Four Points by Sheraton", "name": "Four Points by Sheraton", "short_name": "Four Points", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Gaylord": {"name": "Gaylord", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/gaylordhotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3099664", "tourism": "hotel"}, "addTags": {"brand": "Gaylord", "brand:wikidata": "Q3099664", "brand:wikipedia": "en:Gaylord Hotels", "name": "Gaylord", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Grand Hyatt": {"name": "Grand Hyatt", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1425063", "tourism": "hotel"}, "addTags": {"brand": "Grand Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Grand Hyatt", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Grupo Barceló": {"name": "Grupo Barceló", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FGrupo%20Barcel%C3%B3%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q15148996", "tourism": "hotel"}, "addTags": {"brand": "Grupo Barceló", "brand:en": "Barceló Group", "brand:es": "Grupo Barceló", "brand:wikidata": "Q15148996", "brand:wikipedia": "es:Grupo Barceló", "name": "Grupo Barceló", "name:en": "Barceló Group", "name:es": "Grupo Barceló", "tourism": "hotel"}, "countryCodes": ["es", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hampton": {"name": "Hampton", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/hamptonbyhilton/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5646230", "tourism": "hotel"}, "addTags": {"alt_name": "Hampton Inn", "brand": "Hampton", "brand:wikidata": "Q5646230", "brand:wikipedia": "en:Hampton by Hilton", "name": "Hampton", "official_name": "Hampton by Hilton", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hampton Inn & Suites": {"name": "Hampton Inn & Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/hamptonbyhilton/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5646230", "tourism": "hotel"}, "addTags": {"brand": "Hampton Inn & Suites", "brand:wikidata": "Q5646230", "brand:wikipedia": "en:Hampton by Hilton", "name": "Hampton Inn & Suites", "official_name": "Hampton Inn & Suites by Hilton", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hawthorn Suites": {"name": "Hawthorn Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/Hawthorn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5685511", "tourism": "hotel"}, "addTags": {"brand": "Hawthorn Suites", "brand:wikidata": "Q5685511", "brand:wikipedia": "en:Hawthorn Suites", "name": "Hawthorn Suites", "official_name": "Hawthorn Suites by Wyndham", "short_name": "Hawthorn", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hilton": {"name": "Hilton", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/hilton/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q598884", "tourism": "hotel"}, "addTags": {"brand": "Hilton", "brand:wikidata": "Q598884", "brand:wikipedia": "en:Hilton Hotels & Resorts", "name": "Hilton", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hilton Garden Inn": {"name": "Hilton Garden Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/HiltonGardenInn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1162859", "tourism": "hotel"}, "addTags": {"brand": "Hilton Garden Inn", "brand:wikidata": "Q1162859", "brand:wikipedia": "en:Hilton Garden Inn", "name": "Hilton Garden Inn", "tourism": "hotel"}, "countryCodes": ["ca", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Holiday Inn": {"name": "Holiday Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/HolidayInn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2717882", "tourism": "hotel"}, "addTags": {"brand": "Holiday Inn", "brand:wikidata": "Q2717882", "brand:wikipedia": "en:Holiday Inn", "name": "Holiday Inn", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Holiday Inn Express": {"name": "Holiday Inn Express", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/holidayinnexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5880423", "tourism": "hotel"}, "addTags": {"brand": "Holiday Inn Express", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Holiday Inn Express & Suites": {"name": "Holiday Inn Express & Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/holidayinnexpress/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5880423", "tourism": "hotel"}, "addTags": {"brand": "Holiday Inn Express & Suites", "brand:wikidata": "Q5880423", "brand:wikipedia": "en:Holiday Inn Express", "name": "Holiday Inn Express & Suites", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Home2 Suites": {"name": "Home2 Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/Home2Suites/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5887912", "tourism": "hotel"}, "addTags": {"brand": "Home2 Suites", "brand:wikidata": "Q5887912", "brand:wikipedia": "en:Home2 Suites by Hilton", "name": "Home2 Suites", "official_name": "Home2 Suites by Hilton", "tourism": "hotel"}, "countryCodes": ["ca", "mx", "us"], "terms": ["home2"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Homewood Suites": {"name": "Homewood Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/HomewoodSuites/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5890701", "tourism": "hotel"}, "addTags": {"brand": "Homewood Suites", "brand:wikidata": "Q5890701", "brand:wikipedia": "en:Homewood Suites by Hilton", "name": "Homewood Suites", "official_name": "Homewood Suites by Hilton", "tourism": "hotel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hotel Indigo": {"name": "Hotel Indigo", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/hotelindigo/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5911596", "tourism": "hotel"}, "addTags": {"brand": "Hotel Indigo", "brand:wikidata": "Q5911596", "brand:wikipedia": "en:Hotel Indigo", "name": "Hotel Indigo", "tourism": "hotel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt": {"name": "Hyatt", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1425063", "tourism": "hotel"}, "addTags": {"brand": "Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt Centric": {"name": "Hyatt Centric", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1425063", "tourism": "hotel"}, "addTags": {"brand": "Hyatt Centric", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Centric", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt House": {"name": "Hyatt House", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1425063", "tourism": "hotel"}, "addTags": {"brand": "Hyatt House", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt House", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt Place": {"name": "Hyatt Place", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FHyatt%20Place%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72629292", "tourism": "hotel"}, "addTags": {"brand": "Hyatt Place", "brand:wikidata": "Q72629292", "name": "Hyatt Place", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Hyatt Regency": {"name": "Hyatt Regency", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1425063", "tourism": "hotel"}, "addTags": {"brand": "Hyatt Regency", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Hyatt Regency", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ibis": {"name": "Ibis", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/ibishotels.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q920166", "tourism": "hotel"}, "addTags": {"brand": "Ibis", "brand:wikidata": "Q920166", "brand:wikipedia": "en:Ibis (hotel)", "name": "Ibis", "tourism": "hotel"}, "terms": ["hotel ibis", "ibis hotel"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ibis Budget": {"name": "Ibis Budget", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/ibisbudget.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1458135", "tourism": "hotel"}, "addTags": {"brand": "Ibis Budget", "brand:wikidata": "Q1458135", "brand:wikipedia": "en:Ibis Budget", "name": "Ibis Budget", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ibis Styles": {"name": "Ibis Styles", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/ibisstyles.fr/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q3147425", "tourism": "hotel"}, "addTags": {"brand": "Ibis Styles", "brand:wikidata": "Q3147425", "brand:wikipedia": "en:Ibis Styles", "name": "Ibis Styles", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/InterContinental": {"name": "InterContinental", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/intercontinental/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1825730", "tourism": "hotel"}, "addTags": {"brand": "InterContinental", "brand:wikidata": "Q1825730", "brand:wikipedia": "en:InterContinental", "name": "InterContinental", "tourism": "hotel"}, "terms": ["intercontinental hotels & resorts"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Intercity Hotel": {"name": "Intercity Hotel", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/InterCityHotel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q73642490", "tourism": "hotel"}, "addTags": {"brand": "Intercity Hotel", "brand:wikidata": "Q73642490", "name": "Intercity Hotel", "tourism": "hotel"}, "countryCodes": ["at", "cn", "de", "nl", "om", "sa"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/JW Marriott": {"name": "JW Marriott", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/JWMarriott/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1067636", "tourism": "hotel"}, "addTags": {"brand": "JW Marriott", "brand:wikidata": "Q1067636", "brand:wikipedia": "en:JW Marriott Hotels", "name": "JW Marriott", "tourism": "hotel"}, "terms": ["jw marriott hotels"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Jurys Inn": {"name": "Jurys Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/JurysInns/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q12060924", "tourism": "hotel"}, "addTags": {"brand": "Jurys Inn", "brand:wikidata": "Q12060924", "brand:wikipedia": "en:Jurys Inn", "name": "Jurys Inn", "tourism": "hotel"}, "countryCodes": ["cz", "gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Kimpton": {"name": "Kimpton", "icon": "fas-concierge-bell", "imageURL": "https://pbs.twimg.com/profile_images/1145777057021870081/XPPH34bU_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6410248", "tourism": "hotel"}, "addTags": {"brand": "Kimpton", "brand:wikidata": "Q6410248", "brand:wikipedia": "en:Kimpton Hotels & Restaurants", "name": "Kimpton", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Kyriad": {"name": "Kyriad", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/kyriadindia/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11751808", "tourism": "hotel"}, "addTags": {"brand": "Kyriad", "brand:wikidata": "Q11751808", "brand:wikipedia": "pl:Kyriad", "name": "Kyriad", "tourism": "hotel"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/La Quinta Inn": {"name": "La Quinta Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/laquinta/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6464734", "tourism": "hotel"}, "addTags": {"brand": "La Quinta Inn", "brand:wikidata": "Q6464734", "brand:wikipedia": "en:La Quinta Inns & Suites", "name": "La Quinta Inn", "official_name": "La Quinta Inn by Wyndham", "tourism": "hotel"}, "countryCodes": ["ca", "cl", "co", "hn", "mx", "us"], "terms": ["la quinta"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/La Quinta Inn & Suites": {"name": "La Quinta Inn & Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/laquinta/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6464734", "tourism": "hotel"}, "addTags": {"brand": "La Quinta Inn & Suites", "brand:wikidata": "Q6464734", "brand:wikipedia": "en:La Quinta Inns & Suites", "name": "La Quinta Inn & Suites", "official_name": "La Quinta Inn & Suites by Wyndham", "tourism": "hotel"}, "countryCodes": ["ca", "us"], "terms": ["la quinta inns and suites"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Le Méridien": {"name": "Le Méridien", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/lemeridien/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q261077", "tourism": "hotel"}, "addTags": {"brand": "Le Méridien", "brand:wikidata": "Q261077", "brand:wikipedia": "en:Le Méridien", "name": "Le Méridien", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Marriott": {"name": "Marriott", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/marriottinternational/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1141173", "tourism": "hotel"}, "addTags": {"brand": "Marriott", "brand:wikidata": "Q1141173", "brand:wikipedia": "en:Marriott International", "name": "Marriott", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Marriott Executive Apartments": {"name": "Marriott Executive Apartments", "icon": "fas-concierge-bell", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q72636824", "tourism": "hotel"}, "addTags": {"brand": "Marriott Executive Apartments", "brand:wikidata": "Q72636824", "name": "Marriott Executive Apartments", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Meininger": {"name": "Meininger", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/MeiningerHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q42773330", "tourism": "hotel"}, "addTags": {"brand": "Meininger", "brand:wikidata": "Q42773330", "brand:wikipedia": "de:Meininger Hotel Gruppe", "name": "Meininger", "official_name": "Meininger Hotels", "tourism": "hotel"}, "terms": ["hoteles meininger"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Mercure": {"name": "Mercure", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/MercureHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1709809", "tourism": "hotel"}, "addTags": {"brand": "Mercure", "brand:wikidata": "Q1709809", "brand:wikipedia": "en:Mercure (hotel)", "name": "Mercure", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Microtel": {"name": "Microtel", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMicrotel.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6840402", "tourism": "hotel"}, "addTags": {"brand": "Microtel", "brand:wikidata": "Q6840402", "brand:wikipedia": "en:Microtel Inn and Suites", "name": "Microtel", "official_name": "Microtel by Wyndham", "tourism": "hotel"}, "countryCodes": ["ca", "cn", "mx", "ph", "us"], "terms": ["microtel inn"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Microtel Inn & Suites": {"name": "Microtel Inn & Suites", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMicrotel.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6840402", "tourism": "hotel"}, "addTags": {"brand": "Microtel Inn & Suites", "brand:wikidata": "Q6840402", "brand:wikipedia": "en:Microtel Inn and Suites", "name": "Microtel Inn & Suites", "official_name": "Microtel Inn & Suites by Wyndham", "tourism": "hotel"}, "countryCodes": ["ca", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Moxy": {"name": "Moxy", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FMoxy%20Hotels%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q70287020", "tourism": "hotel"}, "addTags": {"brand": "Moxy", "brand:wikidata": "Q70287020", "brand:wikipedia": "en:Marriott International", "name": "Moxy", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Novotel": {"name": "Novotel", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/Novotelhotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q420545", "tourism": "hotel"}, "addTags": {"brand": "Novotel", "brand:wikidata": "Q420545", "brand:wikipedia": "en:Novotel", "name": "Novotel", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Park Hyatt": {"name": "Park Hyatt", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/hyatt/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1425063", "tourism": "hotel"}, "addTags": {"brand": "Park Hyatt", "brand:wikidata": "Q1425063", "brand:wikipedia": "en:Hyatt", "name": "Park Hyatt", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Park Inn": {"name": "Park Inn", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FPark%20Inn%20by%20Radisson%20logo.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q60711675", "tourism": "hotel"}, "addTags": {"brand": "Park Inn", "brand:wikidata": "Q60711675", "brand:wikipedia": "ru:Park Inn by Radisson", "name": "Park Inn", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Park Plaza": {"name": "Park Plaza", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/ParkPlaza/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2052550", "tourism": "hotel"}, "addTags": {"brand": "Park Plaza", "brand:wikidata": "Q2052550", "brand:wikipedia": "en:Park Plaza Hotels & Resorts", "name": "Park Plaza Hotels", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Premier Inn": {"name": "Premier Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/premierinn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2108626", "tourism": "hotel"}, "addTags": {"brand": "Premier Inn", "brand:wikidata": "Q2108626", "brand:wikipedia": "en:Premier Inn", "name": "Premier Inn", "tourism": "hotel"}, "countryCodes": ["gb"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Première Classe": {"name": "Première Classe", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/PremiereClasseHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5964551", "tourism": "hotel"}, "addTags": {"brand": "Première Classe", "brand:wikidata": "Q5964551", "brand:wikipedia": "en:Hôtel Première Classe", "name": "Première Classe", "tourism": "hotel"}, "countryCodes": ["fr"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Protea Hotel": {"name": "Protea Hotel", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/ProteaHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17092570", "tourism": "hotel"}, "addTags": {"brand": "Protea Hotel", "brand:wikidata": "Q17092570", "brand:wikipedia": "en:Protea Hotels by Marriott", "name": "Protea Hotel", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Quality Inn": {"name": "Quality Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1075788", "tourism": "hotel"}, "addTags": {"brand": "Quality Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn", "tourism": "hotel"}, "countryCodes": ["ca", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Quality Inn & Suites": {"name": "Quality Inn & Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1075788", "tourism": "hotel"}, "addTags": {"brand": "Quality Inn & Suites", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Quality Inn & Suites", "tourism": "hotel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Qubus": {"name": "Qubus", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/QubusHotel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11832868", "tourism": "hotel"}, "addTags": {"brand": "Qubus", "brand:wikidata": "Q11832868", "brand:wikipedia": "pl:Qubus Hotel", "name": "Qubus", "official_name": "Qubus Hotel", "tourism": "hotel"}, "countryCodes": ["pl"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Radisson": {"name": "Radisson", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FRadissonRus.png&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1751979", "tourism": "hotel"}, "addTags": {"brand": "Radisson", "brand:wikidata": "Q1751979", "brand:wikipedia": "en:Radisson Hotels", "name": "Radisson", "tourism": "hotel"}, "terms": ["radisson hotels"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Radisson Blu": {"name": "Radisson Blu", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/radissonblu/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7281341", "tourism": "hotel"}, "addTags": {"brand": "Radisson Blu", "brand:wikidata": "Q7281341", "brand:wikipedia": "en:Radisson Blu", "name": "Radisson Blu", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Ramada": {"name": "Ramada", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/ramada/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1502859", "tourism": "hotel"}, "addTags": {"brand": "Ramada", "brand:wikidata": "Q1502859", "brand:wikipedia": "en:Ramada", "name": "Ramada", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Red Lion Hotels": {"name": "Red Lion Hotels", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/redlionhotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q25047720", "tourism": "hotel"}, "addTags": {"brand": "Red Lion Hotels", "brand:wikidata": "Q25047720", "brand:wikipedia": "en:Red Lion Hotels", "name": "Red Lion Hotels", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Red Roof Inn": {"name": "Red Roof Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/redroofinn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7304949", "tourism": "hotel"}, "addTags": {"brand": "Red Roof Inn", "brand:wikidata": "Q7304949", "brand:wikipedia": "en:Red Roof Inn", "name": "Red Roof Inn", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Renaissance": {"name": "Renaissance", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/RenaissanceHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2143252", "tourism": "hotel"}, "addTags": {"brand": "Renaissance", "brand:wikidata": "Q2143252", "brand:wikipedia": "en:Renaissance Hotels", "name": "Renaissance", "tourism": "hotel"}, "terms": ["renaissance hotel"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Residence Inn": {"name": "Residence Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/residenceinn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7315394", "tourism": "hotel"}, "addTags": {"brand": "Residence Inn", "brand:wikidata": "Q7315394", "brand:wikipedia": "en:Residence Inn by Marriott", "name": "Residence Inn", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Sheraton": {"name": "Sheraton", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/Sheraton/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q634831", "tourism": "hotel"}, "addTags": {"brand": "Sheraton", "brand:wikidata": "Q634831", "brand:wikipedia": "en:Sheraton Hotels and Resorts", "name": "Sheraton", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Sleep Inn": {"name": "Sleep Inn", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1075788", "tourism": "hotel"}, "addTags": {"brand": "Sleep Inn", "brand:wikidata": "Q1075788", "brand:wikipedia": "en:Choice Hotels", "name": "Sleep Inn", "tourism": "hotel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/SpringHill Suites": {"name": "SpringHill Suites", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FSpringHill%20Suites%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7580351", "tourism": "hotel"}, "addTags": {"brand": "SpringHill Suites", "brand:wikidata": "Q7580351", "brand:wikipedia": "en:SpringHill Suites", "name": "SpringHill Suites", "tourism": "hotel"}, "countryCodes": ["ca", "mx", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/St. Regis": {"name": "St. Regis", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/stregis/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q30715430", "tourism": "hotel"}, "addTags": {"alt_name": "Saint Regis", "brand": "St. Regis", "brand:wikidata": "Q30715430", "brand:wikipedia": "en:St. Regis Hotels & Resorts", "name": "St. Regis", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Staybridge Suites": {"name": "Staybridge Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/StaybridgeSuites/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7605116", "tourism": "hotel"}, "addTags": {"brand": "Staybridge Suites", "brand:wikidata": "Q7605116", "brand:wikipedia": "en:Staybridge Suites", "name": "Staybridge Suites", "tourism": "hotel"}, "countryCodes": ["ca", "gb", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/TRYP": {"name": "TRYP", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/Tryp.Hotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6153452", "tourism": "hotel"}, "addTags": {"brand": "TRYP", "brand:wikidata": "Q6153452", "brand:wikipedia": "en:TRYP by Wyndham", "name": "TRYP", "official_name": "TRYP by Wyndham", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/The Ritz-Carlton": {"name": "The Ritz-Carlton", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/ritzcarlton/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q782200", "tourism": "hotel"}, "addTags": {"brand": "The Ritz-Carlton", "brand:wikidata": "Q782200", "brand:wikipedia": "en:The Ritz-Carlton Hotel Company", "name": "The Ritz-Carlton", "tourism": "hotel"}, "terms": ["ritz", "ritz carlton", "the ritz"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/The Westin": {"name": "The Westin", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FWestin%20Hotels%20%26%20Resorts%20logo.svg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1969162", "tourism": "hotel"}, "addTags": {"brand": "Westin", "brand:wikidata": "Q1969162", "brand:wikipedia": "en:Westin Hotels & Resorts", "name": "The Westin", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/TownePlace Suites": {"name": "TownePlace Suites", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/TownePlaceSuites/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7830092", "tourism": "hotel"}, "addTags": {"brand": "TownePlace Suites", "brand:wikidata": "Q7830092", "brand:wikipedia": "en:TownePlace Suites", "name": "TownePlace Suites", "official_name": "TownePlace Suites by Marriott", "tourism": "hotel"}, "countryCodes": ["ca", "us"], "terms": ["towneplace marriott", "towneplace suites marriott"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Travelodge (AsiaOceania)": {"name": "Travelodge (Asia/Oceania)", "icon": "fas-concierge-bell", "imageURL": "https://pbs.twimg.com/profile_images/665028491448991744/p_HszsSZ_bigger.jpg", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24997583", "tourism": "hotel"}, "addTags": {"brand": "Travelodge", "brand:wikidata": "Q24997583", "brand:wikipedia": "en:Travelodge Australia", "name": "Travelodge", "tourism": "hotel"}, "countryCodes": ["au", "hk", "id", "kr", "my", "nz", "sg", "th"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Travelodge (Europe)": {"name": "Travelodge (Europe)", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/TravelodgeEs/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q9361374", "tourism": "hotel"}, "addTags": {"brand": "Travelodge", "brand:wikidata": "Q9361374", "brand:wikipedia": "en:Travelodge UK", "name": "Travelodge", "tourism": "hotel"}, "countryCodes": ["es", "gb", "ie"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Travelodge (North America)": {"name": "Travelodge (North America)", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/Travelodge/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7836087", "tourism": "hotel"}, "addTags": {"brand": "Travelodge", "brand:wikidata": "Q7836087", "brand:wikipedia": "en:Travelodge", "name": "Travelodge", "tourism": "hotel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Tru": {"name": "Tru", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/TrubyHilton/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q24907770", "tourism": "hotel"}, "addTags": {"brand": "Tru", "brand:wikidata": "Q24907770", "brand:wikipedia": "en:Tru by Hilton", "name": "Tru", "official_name": "Tru by Hilton", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Van der Valk Hotel": {"name": "Van der Valk Hotel", "icon": "fas-concierge-bell", "imageURL": "https://commons.wikimedia.org/w/index.php?title=Special%3ARedirect%2Ffile%2FLogo%20Van%20der%20Valk.jpg&width=100", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2802214", "tourism": "hotel"}, "addTags": {"brand": "Van der Valk", "brand:wikidata": "Q2802214", "brand:wikipedia": "en:Van der Valk (company)", "name": "Van der Valk Hotel", "tourism": "hotel"}, "countryCodes": ["be", "de", "es", "fr", "nl", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/W Hotels": {"name": "W Hotels", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/WHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7958488", "tourism": "hotel"}, "addTags": {"brand": "W Hotels", "brand:wikidata": "Q7958488", "brand:wikipedia": "en:W Hotels", "name": "W Hotels", "short_name": "W", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/Wingate": {"name": "Wingate", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/WingateHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q8025144", "tourism": "hotel"}, "addTags": {"brand": "Wingate", "brand:wikidata": "Q8025144", "brand:wikipedia": "en:Wingate by Wyndham", "name": "Wingate", "official_name": "Wingate by Wyndham", "tourism": "hotel"}, "countryCodes": ["us"], "terms": ["wingate inn"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/easyHotel": {"name": "easyHotel", "icon": "fas-concierge-bell", "imageURL": "https://abs.twimg.com/sticky/default_profile_images/default_profile_bigger.png", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q17011598", "tourism": "hotel"}, "addTags": {"brand": "easyHotel", "brand:wikidata": "Q17011598", "brand:wikipedia": "en:EasyHotel", "name": "easyHotel", "tourism": "hotel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/hotel/アパホテル": {"name": "アパホテル", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/apahotel/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q11284497", "tourism": "hotel"}, "addTags": {"brand": "アパホテル", "brand:en": "APA Hotel", "brand:ja": "アパホテル", "brand:wikidata": "Q11284497", "brand:wikipedia": "ja:アパグループ", "name": "アパホテル", "name:en": "APA Hotel", "name:ja": "アパホテル", "tourism": "hotel"}, "countryCodes": ["jp"], "terms": ["apaホテル"], "matchScore": 2, "suggestion": true}, - "tourism/hotel/東横イン": {"name": "東横イン", "icon": "fas-concierge-bell", "imageURL": "https://graph.facebook.com/ToyokoInn/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q1320541", "tourism": "hotel"}, "addTags": {"brand": "東横イン", "brand:en": "Toyoko Inn", "brand:ja": "東横イン", "brand:wikidata": "Q1320541", "brand:wikipedia": "en:Toyoko Inn", "name": "東横イン", "name:en": "Toyoko Inn", "name:ja": "東横イン", "tourism": "hotel"}, "countryCodes": ["jp"], "terms": ["東横inn"], "matchScore": 2, "suggestion": true}, - "tourism/motel/Americas Best Value Inn": {"name": "Americas Best Value Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q4742512", "tourism": "motel"}, "addTags": {"brand": "Americas Best Value Inn", "brand:wikidata": "Q4742512", "name": "Americas Best Value Inn", "tourism": "motel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/motel/Budget Host Inn": {"name": "Budget Host Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/BudgetHostInnFortDodge/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q16954336", "tourism": "motel"}, "addTags": {"alt_name": "Budget Host", "brand": "Budget Host Inn", "brand:wikidata": "Q16954336", "brand:wikipedia": "en:Budget Host", "name": "Budget Host Inn", "tourism": "motel"}, "countryCodes": ["us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/motel/Econo Lodge": {"name": "Econo Lodge", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5333330", "tourism": "motel"}, "addTags": {"brand": "Econo Lodge", "brand:wikidata": "Q5333330", "brand:wikipedia": "en:Econo Lodge", "name": "Econo Lodge", "tourism": "motel"}, "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/motel/Knights Inn": {"name": "Knights Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/KnightsInnHotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q6422409", "tourism": "motel"}, "addTags": {"brand": "Knights Inn", "brand:wikidata": "Q6422409", "brand:wikipedia": "en:Knights Inn", "name": "Knights Inn", "tourism": "motel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/motel/Motel 6": {"name": "Motel 6", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/motel6/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q2188884", "tourism": "motel"}, "addTags": {"brand": "Motel 6", "brand:wikidata": "Q2188884", "brand:wikipedia": "en:Motel 6", "name": "Motel 6", "tourism": "motel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/motel/Rodeway Inn": {"name": "Rodeway Inn", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/choicehotels/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q7356709", "tourism": "motel"}, "addTags": {"brand": "Rodeway Inn", "brand:wikidata": "Q7356709", "brand:wikipedia": "en:Rodeway Inn", "name": "Rodeway Inn", "tourism": "motel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true}, - "tourism/motel/Super 8": {"name": "Super 8", "icon": "maki-lodging", "imageURL": "https://graph.facebook.com/Super8/picture?type=large", "geometry": ["point", "area"], "tags": {"brand:wikidata": "Q5364003", "tourism": "motel"}, "addTags": {"brand": "Super 8", "brand:wikidata": "Q5364003", "brand:wikipedia": "en:Super 8 Motels", "name": "Super 8", "tourism": "motel"}, "countryCodes": ["ca", "us"], "terms": [], "matchScore": 2, "suggestion": true} -} \ No newline at end of file diff --git a/data/presets/presets/_aerialway.json b/data/presets/presets/_aerialway.json deleted file mode 100644 index 758a5b233d..0000000000 --- a/data/presets/presets/_aerialway.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "fields": [ - "name", - "aerialway" - ], - "moreFields": [ - "layer" - ], - "geometry": [ - "point", - "vertex", - "line" - ], - "tags": { - "aerialway": "*" - }, - "searchable": false, - "name": "Aerialway Feature" -} diff --git a/data/presets/presets/_aeroway.json b/data/presets/presets/_aeroway.json deleted file mode 100644 index dfbc06a16f..0000000000 --- a/data/presets/presets/_aeroway.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-airport", - "fields": [ - "aeroway" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "aeroway": "*" - }, - "searchable": false, - "name": "Aeroway Feature" -} diff --git a/data/presets/presets/_amenity.json b/data/presets/presets/_amenity.json deleted file mode 100644 index cf77ac75c2..0000000000 --- a/data/presets/presets/_amenity.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fields": [ - "amenity" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "amenity": "*" - }, - "searchable": false, - "name": "Amenity" -} diff --git a/data/presets/presets/_attraction.json b/data/presets/presets/_attraction.json deleted file mode 100644 index a93e24c9b6..0000000000 --- a/data/presets/presets/_attraction.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-star", - "fields": [ - "name", - "attraction", - "operator", - "opening_hours", - "opening_hours/covid19", - "fee", - "charge_fee" - ], - "moreFields": [ - "address", - "email", - "fax", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "phone", - "website" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "attraction": "*" - }, - "searchable": false, - "name": "Attraction" -} diff --git a/data/presets/presets/_boundary.json b/data/presets/presets/_boundary.json deleted file mode 100644 index 97c0ca98d7..0000000000 --- a/data/presets/presets/_boundary.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "boundary" - ], - "geometry": [ - "line" - ], - "tags": { - "boundary": "*" - }, - "searchable": false, - "name": "Boundary", - "matchScore": 0.45 -} diff --git a/data/presets/presets/_building_point.json b/data/presets/presets/_building_point.json deleted file mode 100644 index 9762459102..0000000000 --- a/data/presets/presets/_building_point.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-home", - "fields": [ - "{building}" - ], - "moreFields": [ - "{building}" - ], - "geometry": [ - "point" - ], - "tags": { - "building": "*" - }, - "matchScore": 0.6, - "searchable": false, - "name": "Building" -} diff --git a/data/presets/presets/_embankment.json b/data/presets/presets/_embankment.json deleted file mode 100644 index 52b3a1f5ed..0000000000 --- a/data/presets/presets/_embankment.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "geometry": [ - "line" - ], - "tags": { - "embankment": "yes" - }, - "name": "Embankment", - "matchScore": 0.2, - "searchable": false -} diff --git a/data/presets/presets/_emergency.json b/data/presets/presets/_emergency.json deleted file mode 100644 index b68e2acfca..0000000000 --- a/data/presets/presets/_emergency.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "fields": [ - "emergency_combo" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "emergency": "*" - }, - "searchable": false, - "name": "Emergency Feature" -} diff --git a/data/presets/presets/_ford_line.json b/data/presets/presets/_ford_line.json deleted file mode 100644 index d50c94fd4c..0000000000 --- a/data/presets/presets/_ford_line.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "geometry": [ - "line" - ], - "tags": { - "ford": "*" - }, - "name": "Ford", - "searchable": false -} diff --git a/data/presets/presets/_highway.json b/data/presets/presets/_highway.json deleted file mode 100644 index a38edc80f1..0000000000 --- a/data/presets/presets/_highway.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "fields": [ - "name", - "highway" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "highway": "*" - }, - "searchable": false, - "name": "Highway Feature" -} diff --git a/data/presets/presets/_indoor.json b/data/presets/presets/_indoor.json deleted file mode 100644 index 4d5a743a17..0000000000 --- a/data/presets/presets/_indoor.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-room", - "fields": [ - "level", - "indoor_type" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "indoor": "*" - }, - "matchScore": 0.8, - "searchable": false, - "name": "Indoor Feature" -} diff --git a/data/presets/presets/_landuse.json b/data/presets/presets/_landuse.json deleted file mode 100644 index 32211475a4..0000000000 --- a/data/presets/presets/_landuse.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "fields": [ - "name", - "landuse" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "*" - }, - "matchScore": 0.9, - "searchable": false, - "name": "Land Use Feature" -} diff --git a/data/presets/presets/_leisure.json b/data/presets/presets/_leisure.json deleted file mode 100644 index 560cbee8e8..0000000000 --- a/data/presets/presets/_leisure.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "name", - "leisure" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "leisure": "*" - }, - "searchable": false, - "name": "Leisure Feature" -} diff --git a/data/presets/presets/_man_made.json b/data/presets/presets/_man_made.json deleted file mode 100644 index 1e14964397..0000000000 --- a/data/presets/presets/_man_made.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-storage_tank", - "fields": [ - "name", - "man_made" - ], - "moreFields": [ - "material" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "man_made": "*" - }, - "matchScore": 0.95, - "searchable": false, - "name": "Man Made Feature" -} diff --git a/data/presets/presets/_natural.json b/data/presets/presets/_natural.json deleted file mode 100644 index a0fa54f52b..0000000000 --- a/data/presets/presets/_natural.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-natural", - "fields": [ - "name", - "natural" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "natural": "*" - }, - "searchable": false, - "name": "Natural Feature" -} diff --git a/data/presets/presets/_place.json b/data/presets/presets/_place.json deleted file mode 100644 index 9acf03e9e3..0000000000 --- a/data/presets/presets/_place.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "fields": [ - "name", - "place" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "place": "*" - }, - "searchable": false, - "name": "Place" -} diff --git a/data/presets/presets/_playground.json b/data/presets/presets/_playground.json deleted file mode 100644 index b5fe6555bb..0000000000 --- a/data/presets/presets/_playground.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-playground", - "fields": [ - "playground", - "playground/theme", - "min_age", - "max_age", - "wheelchair", - "blind", - "height" - ], - "moreFields": [ - "access_simple", - "colour", - "ref" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "playground": "*" - }, - "searchable": false, - "name": "Playground Equipment" -} diff --git a/data/presets/presets/_power.json b/data/presets/presets/_power.json deleted file mode 100644 index 8804d576aa..0000000000 --- a/data/presets/presets/_power.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-power", - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "power": "*" - }, - "fields": [ - "power" - ], - "moreFields": [ - "material" - ], - "searchable": false, - "name": "Power Feature" -} diff --git a/data/presets/presets/_railway.json b/data/presets/presets/_railway.json deleted file mode 100644 index 9ff136fdd3..0000000000 --- a/data/presets/presets/_railway.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-rail_profile", - "fields": [ - "railway" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "railway": "*" - }, - "searchable": false, - "name": "Railway Feature" -} diff --git a/data/presets/presets/_seamark.json b/data/presets/presets/_seamark.json deleted file mode 100644 index 0648bc8b91..0000000000 --- a/data/presets/presets/_seamark.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-harbor", - "fields": [ - "seamark/type" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "seamark:type": "*" - }, - "searchable": false, - "name": "Seamark" -} diff --git a/data/presets/presets/_telecom.json b/data/presets/presets/_telecom.json deleted file mode 100644 index 3588ff9a79..0000000000 --- a/data/presets/presets/_telecom.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-cable", - "fields": [ - "telecom", - "operator" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "telecom": "*" - }, - "searchable": false, - "name": "Telecom Feature" -} diff --git a/data/presets/presets/_tourism.json b/data/presets/presets/_tourism.json deleted file mode 100644 index e91e8eabfb..0000000000 --- a/data/presets/presets/_tourism.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-attraction", - "fields": [ - "name", - "tourism" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "tourism": "*" - }, - "searchable": false, - "name": "Tourism Feature" -} diff --git a/data/presets/presets/_waterway.json b/data/presets/presets/_waterway.json deleted file mode 100644 index e1b50d1238..0000000000 --- a/data/presets/presets/_waterway.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "fields": [ - "name", - "waterway" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "waterway": "*" - }, - "searchable": false, - "name": "Waterway Feature" -} diff --git a/data/presets/presets/addr/_interpolation.json b/data/presets/presets/addr/_interpolation.json deleted file mode 100644 index 3acfb2585e..0000000000 --- a/data/presets/presets/addr/_interpolation.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "addr/interpolation" - ], - "geometry": [ - "line" - ], - "tags": { - "addr:interpolation": "*" - }, - "name": "Address Interpolation", - "searchable": false, - "matchScore": 0.2 -} diff --git a/data/presets/presets/address.json b/data/presets/presets/address.json deleted file mode 100644 index 5b1c09e048..0000000000 --- a/data/presets/presets/address.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "fields": [ - "address" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "addr:*": "*" - }, - "addTags": {}, - "removeTags": {}, - "reference": { - "key": "addr" - }, - "name": "Address", - "matchScore": 0.15 -} diff --git a/data/presets/presets/advertising/billboard.json b/data/presets/presets/advertising/billboard.json deleted file mode 100644 index fb11fb3a90..0000000000 --- a/data/presets/presets/advertising/billboard.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-billboard", - "fields": [ - "operator", - "lit", - "support", - "visibility" - ], - "moreFields": [ - "access_simple", - "direction", - "height" - ], - "geometry": [ - "point", - "vertex", - "line" - ], - "tags": { - "advertising": "billboard" - }, - "name": "Billboard" -} \ No newline at end of file diff --git a/data/presets/presets/advertising/board.json b/data/presets/presets/advertising/board.json deleted file mode 100644 index 914e7ae647..0000000000 --- a/data/presets/presets/advertising/board.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-bulletin_board", - "fields": [ - "operator", - "lit", - "support", - "visibility" - ], - "moreFields": [ - "access_simple", - "direction", - "height" - ], - "geometry": [ - "point" - ], - "tags": { - "advertising": "board" - }, - "terms": [ - "advertising", - "announcements", - "blackboard", - "bulletin board", - "bulletinboard", - "cork board", - "corkboard", - "fliers", - "flyers", - "noticeboard", - "pin board", - "pinboard", - "sign", - "whiteboard" - ], - "name": "Notice Board" -} diff --git a/data/presets/presets/advertising/column.json b/data/presets/presets/advertising/column.json deleted file mode 100644 index b516c0ebab..0000000000 --- a/data/presets/presets/advertising/column.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-storage_tank", - "fields": [ - "operator", - "lit", - "visibility" - ], - "moreFields": [ - "access_simple", - "height" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "advertising": "column" - }, - "name": "Advertising Column" -} \ No newline at end of file diff --git a/data/presets/presets/advertising/poster_box.json b/data/presets/presets/advertising/poster_box.json deleted file mode 100644 index 4280251a56..0000000000 --- a/data/presets/presets/advertising/poster_box.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-poster_box", - "fields": [ - "operator", - "lit", - "support", - "visibility" - ], - "moreFields": [ - "access_simple", - "direction", - "height" - ], - "geometry": [ - "point" - ], - "tags": { - "advertising": "poster_box" - }, - "name": "Poster Box" -} diff --git a/data/presets/presets/advertising/totem.json b/data/presets/presets/advertising/totem.json deleted file mode 100644 index 021a107c11..0000000000 --- a/data/presets/presets/advertising/totem.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "fields": [ - "operator", - "lit", - "visibility" - ], - "moreFields": [ - "access_simple", - "direction", - "height" - ], - "geometry": [ - "point" - ], - "tags": { - "advertising": "totem" - }, - "name": "Advertising Totem" -} \ No newline at end of file diff --git a/data/presets/presets/aerialway/cable_car.json b/data/presets/presets/aerialway/cable_car.json deleted file mode 100644 index d92677efa1..0000000000 --- a/data/presets/presets/aerialway/cable_car.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-tram", - "geometry": [ - "line" - ], - "fields": [ - "name", - "aerialway/occupancy", - "aerialway/capacity", - "aerialway/duration", - "aerialway/heating" - ], - "tags": { - "aerialway": "cable_car" - }, - "terms": [ - "aerial cable", - "lift", - "ropeway", - "skiing", - "snowboarding", - "tramway" - ], - "name": "Cable Car" -} diff --git a/data/presets/presets/aerialway/chair_lift.json b/data/presets/presets/aerialway/chair_lift.json deleted file mode 100644 index ca7488e6a5..0000000000 --- a/data/presets/presets/aerialway/chair_lift.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-chairlift", - "geometry": [ - "line" - ], - "fields": [ - "name", - "oneway_yes", - "aerialway/occupancy", - "aerialway/capacity", - "aerialway/duration", - "aerialway/bubble", - "aerialway/heating" - ], - "tags": { - "aerialway": "chair_lift" - }, - "terms": [ - "aerial cable", - "skiing", - "snowboarding" - ], - "name": "Chair Lift" -} diff --git a/data/presets/presets/aerialway/drag_lift.json b/data/presets/presets/aerialway/drag_lift.json deleted file mode 100644 index 201e354ce5..0000000000 --- a/data/presets/presets/aerialway/drag_lift.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-drag_lift", - "geometry": [ - "line" - ], - "fields": [ - "name", - "aerialway/capacity", - "aerialway/duration" - ], - "tags": { - "aerialway": "drag_lift" - }, - "terms": [ - "skiing", - "snowboarding", - "surface cable" - ], - "name": "Drag Lift" -} diff --git a/data/presets/presets/aerialway/gondola.json b/data/presets/presets/aerialway/gondola.json deleted file mode 100644 index 3976ae23c4..0000000000 --- a/data/presets/presets/aerialway/gondola.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-gondola_lift", - "geometry": [ - "line" - ], - "fields": [ - "name", - "oneway", - "aerialway/occupancy", - "aerialway/capacity", - "aerialway/duration", - "aerialway/bubble", - "aerialway/heating" - ], - "tags": { - "aerialway": "gondola" - }, - "terms": [ - "aerial cable", - "lift", - "skiing", - "snowboarding" - ], - "name": "Gondola Lift" -} diff --git a/data/presets/presets/aerialway/goods.json b/data/presets/presets/aerialway/goods.json deleted file mode 100644 index 1aa2cd1445..0000000000 --- a/data/presets/presets/aerialway/goods.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-goods_lift", - "geometry": [ - "line" - ], - "fields": [ - "name", - "aerialway/capacity", - "aerialway/duration" - ], - "tags": { - "aerialway": "goods" - }, - "terms": [ - "aerial cable" - ], - "name": "Goods Aerialway" -} diff --git a/data/presets/presets/aerialway/j-bar.json b/data/presets/presets/aerialway/j-bar.json deleted file mode 100644 index c864cb7b62..0000000000 --- a/data/presets/presets/aerialway/j-bar.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-j_bar_lift", - "geometry": [ - "line" - ], - "fields": [ - "name", - "aerialway/capacity", - "aerialway/duration" - ], - "tags": { - "aerialway": "j-bar" - }, - "terms": [ - "drag lift", - "skiing", - "snowboarding", - "surface cable", - "jaybar", - "jbar" - ], - "name": "J-Bar Lift" -} diff --git a/data/presets/presets/aerialway/magic_carpet.json b/data/presets/presets/aerialway/magic_carpet.json deleted file mode 100644 index 18b551da56..0000000000 --- a/data/presets/presets/aerialway/magic_carpet.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "geometry": [ - "line" - ], - "fields": [ - "name", - "aerialway/capacity", - "aerialway/duration", - "aerialway/heating" - ], - "tags": { - "aerialway": "magic_carpet" - }, - "terms": [ - "conveyor belt", - "skiing", - "snowboarding", - "surface lift" - ], - "name": "Magic Carpet Lift" -} diff --git a/data/presets/presets/aerialway/mixed_lift.json b/data/presets/presets/aerialway/mixed_lift.json deleted file mode 100644 index 11011cc94a..0000000000 --- a/data/presets/presets/aerialway/mixed_lift.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-aerialway", - "geometry": [ - "line" - ], - "fields": [ - "name", - "oneway_yes", - "aerialway/occupancy", - "aerialway/capacity", - "aerialway/duration", - "aerialway/bubble", - "aerialway/heating" - ], - "tags": { - "aerialway": "mixed_lift" - }, - "terms": [ - "aerial cable", - "skiing", - "snowboarding" - ], - "name": "Mixed Lift" -} diff --git a/data/presets/presets/aerialway/platter.json b/data/presets/presets/aerialway/platter.json deleted file mode 100644 index 86b99fba5f..0000000000 --- a/data/presets/presets/aerialway/platter.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-platter_lift", - "geometry": [ - "line" - ], - "fields": [ - "name", - "aerialway/capacity", - "aerialway/duration" - ], - "tags": { - "aerialway": "platter" - }, - "terms": [ - "button lift", - "disc lift", - "drag lift", - "poma lift", - "skiing", - "snowboarding", - "surface cable" - ], - "name": "Platter Lift" -} diff --git a/data/presets/presets/aerialway/pylon.json b/data/presets/presets/aerialway/pylon.json deleted file mode 100644 index ceb920e76d..0000000000 --- a/data/presets/presets/aerialway/pylon.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-aerialway_pole", - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "ref" - ], - "tags": { - "aerialway": "pylon" - }, - "terms": [ - "chair lift pole", - "skiing", - "snowboarding", - "lift tower" - ], - "name": "Aerialway Pylon" -} diff --git a/data/presets/presets/aerialway/rope_tow.json b/data/presets/presets/aerialway/rope_tow.json deleted file mode 100644 index 84f077f09f..0000000000 --- a/data/presets/presets/aerialway/rope_tow.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "geometry": [ - "line" - ], - "fields": [ - "name", - "oneway_yes", - "aerialway/capacity", - "aerialway/duration" - ], - "tags": { - "aerialway": "rope_tow" - }, - "terms": [ - "bugel lift", - "drag lift", - "handle tow", - "skiing", - "snowboarding", - "surface cable" - ], - "name": "Rope Tow Lift" -} diff --git a/data/presets/presets/aerialway/t-bar.json b/data/presets/presets/aerialway/t-bar.json deleted file mode 100644 index 593dfb0280..0000000000 --- a/data/presets/presets/aerialway/t-bar.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-t_bar_lift", - "geometry": [ - "line" - ], - "fields": [ - "name", - "aerialway/capacity", - "aerialway/duration" - ], - "tags": { - "aerialway": "t-bar" - }, - "terms": [ - "drag lift", - "skiing", - "surface cable", - "tbar" - ], - "name": "T-Bar Lift" -} diff --git a/data/presets/presets/aerialway/zip_line.json b/data/presets/presets/aerialway/zip_line.json deleted file mode 100644 index bb8c61103f..0000000000 --- a/data/presets/presets/aerialway/zip_line.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "geometry": [ - "line" - ], - "fields": [ - "name", - "oneway_yes", - "aerialway/duration", - "maxweight", - "access_simple" - ], - "tags": { - "aerialway": "zip_line" - }, - "terms": [ - "aerial runway", - "canopy", - "flying fox", - "foefie slide", - "gravity propelled aerial ropeslide", - "Tyrolean traverse", - "zip wire", - "zip-line", - "zipline", - "zipwire" - ], - "name": "Zip Line" -} diff --git a/data/presets/presets/aeroway/aerodrome.json b/data/presets/presets/aeroway/aerodrome.json deleted file mode 100644 index d5a108a88a..0000000000 --- a/data/presets/presets/aeroway/aerodrome.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "temaki-airport", - "fields": [ - "name", - "iata", - "icao", - "address", - "operator", - "operator/type", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "aeroway": "aerodrome" - }, - "terms": [ - "aerodrome", - "aeroway", - "airplane", - "airport", - "jet", - "plane" - ], - "matchScore": 0.9, - "name": "Airport" -} diff --git a/data/presets/presets/aeroway/apron.json b/data/presets/presets/aeroway/apron.json deleted file mode 100644 index f634eb33f0..0000000000 --- a/data/presets/presets/aeroway/apron.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-planes", - "fields": [ - "ref", - "surface" - ], - "geometry": [ - "area" - ], - "tags": { - "aeroway": "apron" - }, - "terms": [ - "aircraft parking", - "flight line", - "hardstand", - "ramp", - "tarmac", - "taxiway" - ], - "name": "Airport Apron" -} diff --git a/data/presets/presets/aeroway/gate.json b/data/presets/presets/aeroway/gate.json deleted file mode 100644 index 0aa683fa9b..0000000000 --- a/data/presets/presets/aeroway/gate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-plane", - "fields": [ - "ref_aeroway_gate" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "aeroway": "gate" - }, - "name": "Airport Gate" -} diff --git a/data/presets/presets/aeroway/hangar.json b/data/presets/presets/aeroway/hangar.json deleted file mode 100644 index deb1f35720..0000000000 --- a/data/presets/presets/aeroway/hangar.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-hangar", - "fields": [ - "name", - "building_area" - ], - "geometry": [ - "area" - ], - "tags": { - "aeroway": "hangar" - }, - "addTags": { - "building": "hangar", - "aeroway": "hangar" - }, - "name": "Hangar" -} diff --git a/data/presets/presets/aeroway/helipad.json b/data/presets/presets/aeroway/helipad.json deleted file mode 100644 index af170afa61..0000000000 --- a/data/presets/presets/aeroway/helipad.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-heliport", - "fields": [ - "name", - "ref", - "operator", - "surface", - "lit" - ], - "moreFields": [ - "access_simple", - "address", - "charge_fee", - "fee", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "aeroway": "helipad" - }, - "terms": [ - "helicopter", - "helipad", - "heliport" - ], - "name": "Helipad" -} diff --git a/data/presets/presets/aeroway/holding_position.json b/data/presets/presets/aeroway/holding_position.json deleted file mode 100644 index 2d666d39d5..0000000000 --- a/data/presets/presets/aeroway/holding_position.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "temaki-plane_taxiing", - "fields": [ - "ref" - ], - "geometry": [ - "vertex" - ], - "tags": { - "aeroway": "holding_position" - }, - "name": "Aircraft Holding Position" -} diff --git a/data/presets/presets/aeroway/jet_bridge.json b/data/presets/presets/aeroway/jet_bridge.json deleted file mode 100644 index cddf8e273b..0000000000 --- a/data/presets/presets/aeroway/jet_bridge.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "temaki-pedestrian_walled", - "fields": [ - "ref_aeroway_gate", - "width", - "access_simple", - "wheelchair" - ], - "moreFields": [ - "manufacturer" - ], - "geometry": [ - "line" - ], - "tags": { - "aeroway": "jet_bridge" - }, - "addTags": { - "aeroway": "jet_bridge", - "highway": "corridor" - }, - "terms": [ - "aerobridge", - "air jetty", - "airbridge", - "airtube", - "finger", - "gangway", - "jet bridge", - "jetbridge", - "jet way", - "jetway", - "passenger boarding bridge", - "PBB", - "portal", - "skybridge", - "terminal gate connector" - ], - "matchScore": 1.05, - "name": "Jetway" -} diff --git a/data/presets/presets/aeroway/parking_position.json b/data/presets/presets/aeroway/parking_position.json deleted file mode 100644 index 46b562352a..0000000000 --- a/data/presets/presets/aeroway/parking_position.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-plane_taxiing", - "fields": [ - "ref" - ], - "geometry": [ - "vertex", - "point", - "line" - ], - "tags": { - "aeroway": "parking_position" - }, - "name": "Aircraft Parking Position" -} diff --git a/data/presets/presets/aeroway/runway.json b/data/presets/presets/aeroway/runway.json deleted file mode 100644 index 5f40860107..0000000000 --- a/data/presets/presets/aeroway/runway.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-plane-departure", - "fields": [ - "ref_runway", - "surface", - "length", - "width" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "aeroway": "runway" - }, - "terms": [ - "landing strip" - ], - "name": "Runway" -} diff --git a/data/presets/presets/aeroway/spaceport.json b/data/presets/presets/aeroway/spaceport.json deleted file mode 100644 index 7255ed1fe4..0000000000 --- a/data/presets/presets/aeroway/spaceport.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "fas-space-shuttle", - "fields": [ - "name", - "operator", - "access_simple", - "website", - "wikidata" - ], - "moreFields": [ - "email", - "fax", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "phone" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "aeroway": "spaceport" - }, - "terms": [ - "cosmodrome", - "rocket launch center", - "rocket launch complex", - "rocket launch site", - "rocket range", - "space port" - ], - "name": "Spaceport" -} diff --git a/data/presets/presets/aeroway/taxiway.json b/data/presets/presets/aeroway/taxiway.json deleted file mode 100644 index 0f978d22cd..0000000000 --- a/data/presets/presets/aeroway/taxiway.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-plane_taxiing", - "fields": [ - "ref_taxiway", - "surface" - ], - "geometry": [ - "line" - ], - "tags": { - "aeroway": "taxiway" - }, - "name": "Taxiway" -} diff --git a/data/presets/presets/aeroway/terminal.json b/data/presets/presets/aeroway/terminal.json deleted file mode 100644 index 2d66d45c92..0000000000 --- a/data/presets/presets/aeroway/terminal.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-airport", - "fields": [ - "name", - "operator", - "building_area", - "wheelchair", - "baby_feeding" - ], - "moreFields": [ - "air_conditioning", - "smoking" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "aeroway": "terminal" - }, - "terms": [ - "airport", - "aerodrome" - ], - "name": "Airport Terminal" -} diff --git a/data/presets/presets/aeroway/windsock.json b/data/presets/presets/aeroway/windsock.json deleted file mode 100644 index 2869ad9b09..0000000000 --- a/data/presets/presets/aeroway/windsock.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-windsock", - "fields": [ - "ref", - "lit", - "height" - ], - "moreFields": [ - "manufacturer" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "aeroway": "windsock" - }, - "name": "Windsock" -} diff --git a/data/presets/presets/allotments/plot.json b/data/presets/presets/allotments/plot.json deleted file mode 100644 index ffa7bc5be2..0000000000 --- a/data/presets/presets/allotments/plot.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-garden_bed", - "geometry": [ - "area" - ], - "fields": [ - "name", - "ref" - ], - "tags": { - "allotments": "plot" - }, - "reference": { - "key": "allotments", - "value": "plot" - }, - "name": "Community Garden Plot" -} diff --git a/data/presets/presets/amenity/_bus_station.json b/data/presets/presets/amenity/_bus_station.json deleted file mode 100644 index 6547ee3c45..0000000000 --- a/data/presets/presets/amenity/_bus_station.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-bus", - "fields": [ - "name", - "building_area", - "operator", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "bus_station" - }, - "name": "Bus Station / Terminal", - "searchable": false, - "replacement": "public_transport/station_bus" -} diff --git a/data/presets/presets/amenity/_coworking_space.json b/data/presets/presets/amenity/_coworking_space.json deleted file mode 100644 index 278bc117c4..0000000000 --- a/data/presets/presets/amenity/_coworking_space.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-commercial", - "fields": [ - "name", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "coworking_space" - }, - "name": "Coworking Space", - "searchable": false -} diff --git a/data/presets/presets/amenity/_embassy.json b/data/presets/presets/amenity/_embassy.json deleted file mode 100644 index 63186a2b86..0000000000 --- a/data/presets/presets/amenity/_embassy.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-embassy", - "fields": [ - "name", - "country", - "address", - "building_area" - ], - "moreFields": [ - "email", - "fax", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "embassy" - }, - "searchable": false, - "name": "Embassy" -} diff --git a/data/presets/presets/amenity/_ferry_terminal.json b/data/presets/presets/amenity/_ferry_terminal.json deleted file mode 100644 index 133bee0e85..0000000000 --- a/data/presets/presets/amenity/_ferry_terminal.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-ferry", - "fields": [ - "name", - "network", - "operator", - "address", - "building_area" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "ferry_terminal" - }, - "matchScore": 0.95, - "name": "Ferry Terminal", - "searchable": false, - "replacement": "public_transport/station_ferry" -} diff --git a/data/presets/presets/amenity/_nursing_home.json b/data/presets/presets/amenity/_nursing_home.json deleted file mode 100644 index 4ca6742405..0000000000 --- a/data/presets/presets/amenity/_nursing_home.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-wheelchair", - "fields": [ - "{amenity/social_facility}", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "nursing_home" - }, - "reference": { - "key": "social_facility", - "value": "nursing_home" - }, - "name": "Nursing Home", - "searchable": false -} diff --git a/data/presets/presets/amenity/_recycling.json b/data/presets/presets/amenity/_recycling.json deleted file mode 100644 index 61be21aef8..0000000000 --- a/data/presets/presets/amenity/_recycling.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-recycling", - "fields": [ - "recycling_type", - "recycling_accepts", - "collection_times" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "recycling" - }, - "name": "Recycling", - "searchable": false -} diff --git a/data/presets/presets/amenity/animal_boarding.json b/data/presets/presets/amenity/animal_boarding.json deleted file mode 100644 index 6f6aae55a9..0000000000 --- a/data/presets/presets/amenity/animal_boarding.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "icon": "maki-veterinary", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "animal_boarding" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "boarding", - "cat", - "cattery", - "dog", - "horse", - "kennel", - "kitten", - "pet", - "pet boarding", - "pet care", - "pet hotel", - "puppy", - "reptile" - ], - "tags": { - "amenity": "animal_boarding" - }, - "name": "Animal Boarding Facility" -} diff --git a/data/presets/presets/amenity/animal_breeding.json b/data/presets/presets/amenity/animal_breeding.json deleted file mode 100644 index 932d6a0c13..0000000000 --- a/data/presets/presets/amenity/animal_breeding.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "icon": "maki-veterinary", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "animal_breeding" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "breeding", - "bull", - "cat", - "cow", - "dog", - "horse", - "husbandry", - "kitten", - "livestock", - "pet breeding", - "puppy", - "reptile" - ], - "tags": { - "amenity": "animal_breeding" - }, - "name": "Animal Breeding Facility" -} diff --git a/data/presets/presets/amenity/animal_shelter.json b/data/presets/presets/amenity/animal_shelter.json deleted file mode 100644 index 62d1ec8e4e..0000000000 --- a/data/presets/presets/amenity/animal_shelter.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "icon": "maki-veterinary", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "animal_shelter" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "adoption", - "aspca", - "cat", - "dog", - "horse", - "kitten", - "pet care", - "pet rescue", - "puppy", - "raptor", - "reptile", - "rescue", - "spca", - "pound" - ], - "tags": { - "amenity": "animal_shelter" - }, - "name": "Animal Shelter" -} diff --git a/data/presets/presets/amenity/arts_centre.json b/data/presets/presets/amenity/arts_centre.json deleted file mode 100644 index 8b40b35bf1..0000000000 --- a/data/presets/presets/amenity/arts_centre.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "maki-theatre", - "fields": [ - "name", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "website" - ], - "moreFields": [ - "charge_fee", - "email", - "fax", - "fee", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "arts_centre" - }, - "name": "Arts Center" -} diff --git a/data/presets/presets/amenity/atm.json b/data/presets/presets/amenity/atm.json deleted file mode 100644 index 56773f78b7..0000000000 --- a/data/presets/presets/amenity/atm.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "maki-bank", - "fields": [ - "operator", - "network", - "cash_in", - "currency_multi", - "drive_through" - ], - "moreFields": [ - "brand", - "covered", - "height", - "indoor", - "level", - "lit", - "manufacturer", - "name", - "opening_hours", - "opening_hours/covid19", - "wheelchair" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "money", - "cash", - "machine" - ], - "tags": { - "amenity": "atm" - }, - "name": "ATM" -} diff --git a/data/presets/presets/amenity/bank.json b/data/presets/presets/amenity/bank.json deleted file mode 100644 index fffc2164fe..0000000000 --- a/data/presets/presets/amenity/bank.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "icon": "maki-bank", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "atm", - "drive_through" - ], - "moreFields": [ - "air_conditioning", - "brand", - "currency_multi", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "phone", - "ref/vatin", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "credit union", - "check", - "deposit", - "fund", - "investment", - "repository", - "reserve", - "safe", - "savings", - "stock", - "treasury", - "trust", - "vault" - ], - "tags": { - "amenity": "bank" - }, - "name": "Bank" -} diff --git a/data/presets/presets/amenity/bar.json b/data/presets/presets/amenity/bar.json deleted file mode 100644 index 698d977c5f..0000000000 --- a/data/presets/presets/amenity/bar.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "icon": "maki-bar", - "fields": [ - "name", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "min_age", - "brewery" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "microbrewery", - "operator", - "outdoor_seating", - "payment_multi", - "phone", - "ref/vatin", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "dive", - "beer", - "bier", - "booze" - ], - "tags": { - "amenity": "bar" - }, - "name": "Bar" -} diff --git a/data/presets/presets/amenity/bar/lgbtq.json b/data/presets/presets/amenity/bar/lgbtq.json deleted file mode 100644 index 2944b7440d..0000000000 --- a/data/presets/presets/amenity/bar/lgbtq.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-bar", - "geometry": [ - "point", - "area" - ], - "terms": [ - "gay bar", - "lesbian bar", - "lgbtq bar", - "lgbt bar", - "lgb bar" - ], - "tags": { - "amenity": "bar", - "lgbtq": "primary" - }, - "name": "LGBTQ+ Bar" -} diff --git a/data/presets/presets/amenity/bbq.json b/data/presets/presets/amenity/bbq.json deleted file mode 100644 index 63ef754428..0000000000 --- a/data/presets/presets/amenity/bbq.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-bbq", - "fields": [ - "covered", - "fuel", - "access_simple" - ], - "moreFields": [ - "lit" - ], - "geometry": [ - "point" - ], - "terms": [ - "bbq", - "grill" - ], - "tags": { - "amenity": "bbq" - }, - "name": "Barbecue/Grill" -} diff --git a/data/presets/presets/amenity/bench.json b/data/presets/presets/amenity/bench.json deleted file mode 100644 index a0cbbbbf3b..0000000000 --- a/data/presets/presets/amenity/bench.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-bench", - "fields": [ - "backrest", - "material", - "seats", - "colour" - ], - "moreFields": [ - "access_simple", - "height", - "inscription", - "level", - "lit", - "manufacturer", - "operator" - ], - "geometry": [ - "point", - "vertex", - "line" - ], - "terms": [ - "seat", - "chair" - ], - "tags": { - "amenity": "bench" - }, - "name": "Bench" -} diff --git a/data/presets/presets/amenity/bicycle_parking.json b/data/presets/presets/amenity/bicycle_parking.json deleted file mode 100644 index d314ffd4de..0000000000 --- a/data/presets/presets/amenity/bicycle_parking.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "maki-bicycle", - "fields": [ - "bicycle_parking", - "capacity", - "operator", - "operator/type", - "covered", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "colour", - "indoor", - "level", - "lit" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "bike", - "cycle parking", - "cycling" - ], - "tags": { - "amenity": "bicycle_parking" - }, - "name": "Bicycle Parking" -} diff --git a/data/presets/presets/amenity/bicycle_parking/building.json b/data/presets/presets/amenity/bicycle_parking/building.json deleted file mode 100644 index dd40919729..0000000000 --- a/data/presets/presets/amenity/bicycle_parking/building.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-bicycle_structure", - "fields": [ - "{amenity/bicycle_parking}", - "opening_hours", - "opening_hours/covid19", - "building_area" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "bicycle_parking", - "bicycle_parking": "building" - }, - "reference": { - "key": "bicycle_parking" - }, - "terms": [ - "Bike Parking Station", - "cycle parking", - "cycling", - "Multi-Storey Bicycle Park", - "Multi-Storey Bike Park" - ], - "name": "Bicycle Parking Garage" -} diff --git a/data/presets/presets/amenity/bicycle_parking/lockers.json b/data/presets/presets/amenity/bicycle_parking/lockers.json deleted file mode 100644 index 92e9d547df..0000000000 --- a/data/presets/presets/amenity/bicycle_parking/lockers.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-bicycle_locker", - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "bicycle_parking", - "bicycle_parking": "lockers" - }, - "reference": { - "key": "bicycle_parking" - }, - "terms": [ - "cycle locker", - "cycling", - "Bike Lockers" - ], - "name": "Bicycle Lockers" -} diff --git a/data/presets/presets/amenity/bicycle_parking/shed.json b/data/presets/presets/amenity/bicycle_parking/shed.json deleted file mode 100644 index f8fa3d03b9..0000000000 --- a/data/presets/presets/amenity/bicycle_parking/shed.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-bicycle", - "fields": [ - "{amenity/bicycle_parking}", - "building_area" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "bicycle_parking", - "bicycle_parking": "shed" - }, - "reference": { - "key": "bicycle_parking" - }, - "terms": [ - "cycle shed", - "cycling", - "Bike Shed" - ], - "name": "Bicycle Shed" -} diff --git a/data/presets/presets/amenity/bicycle_rental.json b/data/presets/presets/amenity/bicycle_rental.json deleted file mode 100644 index 4d498f7961..0000000000 --- a/data/presets/presets/amenity/bicycle_rental.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "icon": "temaki-bicycle_rental", - "fields": [ - "capacity", - "network", - "operator", - "operator/type", - "fee", - "payment_multi_fee" - ], - "moreFields": [ - "address", - "covered", - "email", - "fax", - "level", - "opening_hours", - "opening_hours/covid19", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "bike", - "bicycle", - "bikeshare", - "bike share", - "bicycle share", - "cycle dock", - "cycle hub", - "cycleshare", - "cycling" - ], - "tags": { - "amenity": "bicycle_rental" - }, - "name": "Bicycle Rental" -} diff --git a/data/presets/presets/amenity/bicycle_repair_station.json b/data/presets/presets/amenity/bicycle_repair_station.json deleted file mode 100644 index f4bb79afd3..0000000000 --- a/data/presets/presets/amenity/bicycle_repair_station.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-bicycle_repair", - "fields": [ - "operator", - "brand", - "opening_hours", - "opening_hours/covid19", - "fee", - "payment_multi_fee", - "charge_fee", - "service/bicycle" - ], - "moreFields": [ - "colour", - "covered", - "indoor", - "level", - "manufacturer" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "bike chain", - "bike multitool", - "bike repair", - "bike tools", - "cycle pump", - "cycle repair", - "cycling" - ], - "tags": { - "amenity": "bicycle_repair_station" - }, - "name": "Bicycle Repair Tool Stand" -} diff --git a/data/presets/presets/amenity/biergarten.json b/data/presets/presets/amenity/biergarten.json deleted file mode 100644 index 7554797489..0000000000 --- a/data/presets/presets/amenity/biergarten.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "fas-beer", - "fields": [ - "name", - "address", - "opening_hours", - "opening_hours/covid19", - "outdoor_seating", - "brewery" - ], - "moreFields": [ - "{amenity/bar}", - "building_area", - "cuisine" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "biergarten" - }, - "terms": [ - "beer", - "bier", - "booze" - ], - "name": "Biergarten" -} diff --git a/data/presets/presets/amenity/binoculars.json b/data/presets/presets/amenity/binoculars.json deleted file mode 100644 index 1d619e382c..0000000000 --- a/data/presets/presets/amenity/binoculars.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "temaki-binoculars", - "fields": [ - "operator", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "direction", - "height", - "ele_node" - ], - "moreFields": [ - "colour", - "covered", - "indoor", - "lit", - "manufacturer", - "ref" - ], - "geometry": [ - "point" - ], - "terms": [ - "observation viewer", - "optical ranger", - "spotting scope", - "sight", - "spyglass", - "telescope", - "tower viewer", - "viewfinder", - "viewing stand" - ], - "tags": { - "amenity": "binoculars" - }, - "name": "Mounted Binoculars" -} diff --git a/data/presets/presets/amenity/boat_rental.json b/data/presets/presets/amenity/boat_rental.json deleted file mode 100644 index 75e394defc..0000000000 --- a/data/presets/presets/amenity/boat_rental.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-boat_rental", - "fields": [ - "name", - "operator", - "operator/type", - "opening_hours", - "opening_hours/covid19", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "access_simple", - "address", - "email", - "fax", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "boat_rental" - }, - "name": "Boat Rental" -} diff --git a/data/presets/presets/amenity/boat_storage.json b/data/presets/presets/amenity/boat_storage.json deleted file mode 100644 index a8147a7658..0000000000 --- a/data/presets/presets/amenity/boat_storage.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-boat_dry_dock", - "fields": [ - "name", - "operator", - "access_simple", - "capacity" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "boat_storage" - }, - "terms": [ - "boathouse", - "dry dock", - "marina" - ], - "name": "Boat Storage" -} diff --git a/data/presets/presets/amenity/bureau_de_change.json b/data/presets/presets/amenity/bureau_de_change.json deleted file mode 100644 index 40d5c0d703..0000000000 --- a/data/presets/presets/amenity/bureau_de_change.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-money_hand", - "fields": [ - "name", - "operator", - "payment_multi", - "currency_multi", - "address", - "building_area" - ], - "moreFields": [ - "email", - "fax", - "level", - "opening_hours", - "opening_hours/covid19", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bureau de change", - "money changer" - ], - "tags": { - "amenity": "bureau_de_change" - }, - "name": "Currency Exchange" -} diff --git a/data/presets/presets/amenity/cafe.json b/data/presets/presets/amenity/cafe.json deleted file mode 100644 index ffe3042b3a..0000000000 --- a/data/presets/presets/amenity/cafe.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "icon": "maki-cafe", - "fields": [ - "name", - "cuisine", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "outdoor_seating", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "phone", - "website" - ], - "moreFields": [ - "air_conditioning", - "bar", - "brand", - "capacity", - "delivery", - "diet_multi", - "email", - "fax", - "gnis/feature_id", - "level", - "min_age", - "not/name", - "payment_multi", - "ref/vatin", - "reservation", - "smoking", - "takeaway", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bistro", - "coffee", - "tea" - ], - "tags": { - "amenity": "cafe" - }, - "name": "Cafe" -} diff --git a/data/presets/presets/amenity/cafe/bubble_tea.json b/data/presets/presets/amenity/cafe/bubble_tea.json deleted file mode 100644 index e8d80650d0..0000000000 --- a/data/presets/presets/amenity/cafe/bubble_tea.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-bubble_tea", - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "cafe", - "cuisine": "bubble_tea" - }, - "reference": { - "key": "cuisine", - "value": "bubble_tea" - }, - "terms": [ - "boba", - "bubble milk tea", - "pearl milk tea", - "taiwanese tea drink", - "tapioca", - "pearl tea", - "boba drink" - - ], - "name": "Bubble Tea Cafe" -} diff --git a/data/presets/presets/amenity/cafe/coffee_shop.json b/data/presets/presets/amenity/cafe/coffee_shop.json deleted file mode 100644 index 595bac1027..0000000000 --- a/data/presets/presets/amenity/cafe/coffee_shop.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-hot_drink_cup", - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "cafe", - "cuisine": "coffee_shop" - }, - "reference": { - "key": "cuisine", - "value": "coffee_shop" - }, - "terms": [ - "americano", - "brew", - "cafe", - "café", - "caffe", - "caffè", - "cappuccino", - "cocoa", - "coffee shop", - "drip", - "espresso", - "hot drinks", - "latte", - "macchiato", - "tea" - ], - "name": "Coffeehouse" -} diff --git a/data/presets/presets/amenity/car_pooling.json b/data/presets/presets/amenity/car_pooling.json deleted file mode 100644 index 5e6fd12a37..0000000000 --- a/data/presets/presets/amenity/car_pooling.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "temaki-car_pool", - "fields": [ - "name", - "operator", - "operator/type", - "capacity", - "address", - "opening_hours", - "opening_hours/covid19", - "lit" - ], - "moreFields": [ - "email", - "fax", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "car_pooling" - }, - "terms": [ - "car sharing", - "carpooling", - "lift sharing", - "ride sharing" - ], - "name": "Car Pooling Station" -} diff --git a/data/presets/presets/amenity/car_rental.json b/data/presets/presets/amenity/car_rental.json deleted file mode 100644 index dcac9c2d30..0000000000 --- a/data/presets/presets/amenity/car_rental.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-car-rental", - "fields": [ - "name", - "operator", - "address", - "opening_hours", - "opening_hours/covid19", - "payment_multi" - ], - "moreFields": [ - "brand", - "email", - "fax", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "car_rental" - }, - "name": "Car Rental" -} diff --git a/data/presets/presets/amenity/car_sharing.json b/data/presets/presets/amenity/car_sharing.json deleted file mode 100644 index 84c1337bff..0000000000 --- a/data/presets/presets/amenity/car_sharing.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-sign_and_car", - "fields": [ - "name", - "operator", - "operator/type", - "capacity", - "address", - "payment_multi", - "supervised" - ], - "moreFields": [ - "brand", - "email", - "fax", - "lit", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "car_sharing" - }, - "name": "Car Sharing Station" -} diff --git a/data/presets/presets/amenity/car_wash.json b/data/presets/presets/amenity/car_wash.json deleted file mode 100644 index 318d52acb2..0000000000 --- a/data/presets/presets/amenity/car_wash.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-car_wash", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "self_service", - "automated" - - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "car_wash" - }, - "name": "Car Wash" -} diff --git a/data/presets/presets/amenity/casino.json b/data/presets/presets/amenity/casino.json deleted file mode 100644 index 97e098bcfb..0000000000 --- a/data/presets/presets/amenity/casino.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "icon": "maki-casino", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "gambling", - "smoking" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "min_age", - "payment_multi", - "phone", - "ref/vatin", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "gambling", - "roulette", - "craps", - "poker", - "blackjack" - ], - "tags": { - "amenity": "casino" - }, - "name": "Casino" -} diff --git a/data/presets/presets/amenity/charging_station.json b/data/presets/presets/amenity/charging_station.json deleted file mode 100644 index f8125b4610..0000000000 --- a/data/presets/presets/amenity/charging_station.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "fas-charging-station", - "fields": [ - "name", - "operator", - "capacity", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "brand", - "covered", - "level", - "manufacturer" - ], - "geometry": [ - "point" - ], - "tags": { - "amenity": "charging_station" - }, - "terms": [ - "EV", - "Electric Vehicle", - "Supercharger" - ], - "name": "Charging Station" -} diff --git a/data/presets/presets/amenity/childcare.json b/data/presets/presets/amenity/childcare.json deleted file mode 100644 index 9846855f6b..0000000000 --- a/data/presets/presets/amenity/childcare.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "fas-child", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "website" - ], - "moreFields": [ - "baby_feeding", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "max_age", - "min_age", - "not/name", - "payment_multi", - "phone", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "daycare", - "orphanage", - "playgroup" - ], - "tags": { - "amenity": "childcare" - }, - "name": "Nursery/Childcare" -} diff --git a/data/presets/presets/amenity/cinema.json b/data/presets/presets/amenity/cinema.json deleted file mode 100644 index 9b8c61b679..0000000000 --- a/data/presets/presets/amenity/cinema.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "maki-cinema", - "fields": [ - "name", - "address", - "screen", - "building_area", - "opening_hours", - "opening_hours/covid19", - "payment_multi" - ], - "moreFields": [ - "air_conditioning", - "brand", - "email", - "fax", - "gnis/feature_id", - "level", - "min_age", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "drive-in", - "film", - "flick", - "movie", - "theater", - "picture", - "show", - "screen" - ], - "tags": { - "amenity": "cinema" - }, - "name": "Cinema" -} diff --git a/data/presets/presets/amenity/clinic.json b/data/presets/presets/amenity/clinic.json deleted file mode 100644 index 2a99da79cd..0000000000 --- a/data/presets/presets/amenity/clinic.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "icon": "maki-doctor", - "fields": [ - "name", - "operator", - "operator/type", - "healthcare/speciality", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "air_conditioning", - "brand", - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "medical", - "urgentcare" - ], - "tags": { - "amenity": "clinic" - }, - "addTags": { - "amenity": "clinic", - "healthcare": "clinic" - }, - "reference": { - "key": "amenity", - "value": "clinic" - }, - "name": "Clinic" -} diff --git a/data/presets/presets/amenity/clinic/abortion.json b/data/presets/presets/amenity/clinic/abortion.json deleted file mode 100644 index 54305eaac8..0000000000 --- a/data/presets/presets/amenity/clinic/abortion.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-hospital", - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "clinic", - "healthcare": "clinic", - "healthcare:speciality": "abortion" - }, - "reference": { - "key": "amenity", - "value": "clinic" - }, - "name": "Abortion Clinic" -} diff --git a/data/presets/presets/amenity/clinic/fertility.json b/data/presets/presets/amenity/clinic/fertility.json deleted file mode 100644 index 2642deb621..0000000000 --- a/data/presets/presets/amenity/clinic/fertility.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-hospital", - "geometry": [ - "point", - "area" - ], - "terms": [ - "egg", - "fertility", - "reproductive", - "sperm", - "ovulation" - ], - "tags": { - "amenity": "clinic", - "healthcare": "clinic", - "healthcare:speciality": "fertility" - }, - "reference": { - "key": "amenity", - "value": "clinic" - }, - "name": "Fertility Clinic" -} diff --git a/data/presets/presets/amenity/clock.json b/data/presets/presets/amenity/clock.json deleted file mode 100644 index 03175dc37d..0000000000 --- a/data/presets/presets/amenity/clock.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-clock", - "fields": [ - "name", - "support", - "display", - "visibility", - "date", - "faces" - ], - "moreFields": [ - "covered", - "height", - "indoor", - "level", - "lit", - "manufacturer" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "time" - ], - "tags": { - "amenity": "clock" - }, - "name": "Clock" -} diff --git a/data/presets/presets/amenity/clock/sundial.json b/data/presets/presets/amenity/clock/sundial.json deleted file mode 100644 index 5f60b5a537..0000000000 --- a/data/presets/presets/amenity/clock/sundial.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-clock", - "fields": [ - "name", - "support", - "visibility", - "inscription" - ], - "moreFields": [], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "gnomon", - "shadow" - ], - "tags": { - "amenity": "clock", - "display": "sundial" - }, - "reference": { - "key": "display", - "value": "sundial" - }, - "name": "Sundial" -} diff --git a/data/presets/presets/amenity/college.json b/data/presets/presets/amenity/college.json deleted file mode 100644 index ac21ff7e7d..0000000000 --- a/data/presets/presets/amenity/college.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "maki-college", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "website", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "moreFields": [ - "denomination", - "email", - "fax", - "gnis/feature_id", - "not/name", - "phone", - "religion", - "wheelchair" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "university", - "undergraduate school" - ], - "tags": { - "amenity": "college" - }, - "name": "College Grounds" -} diff --git a/data/presets/presets/amenity/community_centre.json b/data/presets/presets/amenity/community_centre.json deleted file mode 100644 index e0db62fe24..0000000000 --- a/data/presets/presets/amenity/community_centre.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "maki-town-hall", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "website" - ], - "moreFields": [ - "air_conditioning", - "baby_feeding", - "email", - "fax", - "gnis/feature_id", - "phone", - "polling_station", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "event", - "hall" - ], - "tags": { - "amenity": "community_centre" - }, - "name": "Community Center" -} diff --git a/data/presets/presets/amenity/community_centre/lgbtq.json b/data/presets/presets/amenity/community_centre/lgbtq.json deleted file mode 100644 index f6fbef8d0b..0000000000 --- a/data/presets/presets/amenity/community_centre/lgbtq.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-town-hall", - "geometry": [ - "point", - "area" - ], - "terms": [ - "lgbtq event", - "lgbtq hall", - "lgbt event", - "lgbt hall", - "lgb event", - "lgb hall" - ], - "tags": { - "amenity": "community_centre", - "lgbtq": "primary" - }, - "name": "LGBTQ+ Community Center" -} diff --git a/data/presets/presets/amenity/compressed_air.json b/data/presets/presets/amenity/compressed_air.json deleted file mode 100644 index f6c3a045c5..0000000000 --- a/data/presets/presets/amenity/compressed_air.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "fas-tachometer-alt", - "fields": [ - "operator", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "covered", - "lit" - ], - "moreFields": [ - "brand", - "manufacturer" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "compressed_air" - }, - "name": "Compressed Air" -} diff --git a/data/presets/presets/amenity/conference_centre.json b/data/presets/presets/amenity/conference_centre.json deleted file mode 100644 index 7e0aa19e70..0000000000 --- a/data/presets/presets/amenity/conference_centre.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "fas-user-tie", - "fields": [ - "name", - "operator", - "operator/type", - "building_area", - "address", - "website", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "not/name", - "phone", - "smoking", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "conference_centre" - }, - "terms": [ - "auditorium", - "conference", - "exhibition", - "exposition", - "lecture" - ], - "name": "Convention Center" -} \ No newline at end of file diff --git a/data/presets/presets/amenity/courthouse.json b/data/presets/presets/amenity/courthouse.json deleted file mode 100644 index a991651217..0000000000 --- a/data/presets/presets/amenity/courthouse.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "fas-gavel", - "fields": [ - "name", - "operator", - "address", - "building_area" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "phone", - "polling_station", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "courthouse" - }, - "name": "Courthouse" -} diff --git a/data/presets/presets/amenity/crematorium.json b/data/presets/presets/amenity/crematorium.json deleted file mode 100644 index e541b265be..0000000000 --- a/data/presets/presets/amenity/crematorium.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-cemetery", - "fields": [ - "name", - "website", - "phone", - "opening_hours", - "opening_hours/covid19", - "wheelchair" - ], - "moreFields": [ - "address", - "email", - "fax", - "gnis/feature_id", - "level", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "crematorium" - }, - "terms": [ - "cemetery", - "funeral" - ], - "name": "Crematorium" -} diff --git a/data/presets/presets/amenity/dentist.json b/data/presets/presets/amenity/dentist.json deleted file mode 100644 index 32c7297520..0000000000 --- a/data/presets/presets/amenity/dentist.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "maki-dentist", - "fields": [ - "name", - "operator", - "healthcare/speciality", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "tooth", - "teeth" - ], - "tags": { - "amenity": "dentist" - }, - "addTags": { - "amenity": "dentist", - "healthcare": "dentist" - }, - "reference": { - "key": "amenity", - "value": "dentist" - }, - "name": "Dentist" -} diff --git a/data/presets/presets/amenity/dive_centre.json b/data/presets/presets/amenity/dive_centre.json deleted file mode 100644 index d35ced1d77..0000000000 --- a/data/presets/presets/amenity/dive_centre.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "temaki-scuba_diving", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "scuba_diving" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "diving", - "scuba" - ], - "tags": { - "amenity": "dive_centre" - }, - "name": "Dive Center" -} diff --git a/data/presets/presets/amenity/doctors.json b/data/presets/presets/amenity/doctors.json deleted file mode 100644 index 530f947e92..0000000000 --- a/data/presets/presets/amenity/doctors.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "maki-doctor", - "fields": [ - "name", - "operator", - "healthcare/speciality", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "medic*", - "physician" - ], - "tags": { - "amenity": "doctors" - }, - "addTags": { - "amenity": "doctors", - "healthcare": "doctor" - }, - "reference": { - "key": "amenity", - "value": "doctors" - }, - "name": "Doctor" -} diff --git a/data/presets/presets/amenity/dojo.json b/data/presets/presets/amenity/dojo.json deleted file mode 100644 index a18a8c831c..0000000000 --- a/data/presets/presets/amenity/dojo.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "name", - "sport", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "martial arts", - "dojang" - ], - "tags": { - "amenity": "dojo" - }, - "name": "Dojo / Martial Arts Academy" -} diff --git a/data/presets/presets/amenity/dressing_room.json b/data/presets/presets/amenity/dressing_room.json deleted file mode 100644 index 3ba75125d8..0000000000 --- a/data/presets/presets/amenity/dressing_room.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-clothing-store", - "fields": [ - "operator", - "access_simple", - "gender", - "wheelchair", - "building_area" - ], - "moreFields": [ - "charge_fee", - "fee", - "level", - "opening_hours", - "opening_hours/covid19", - "payment_multi_fee", - "ref" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "changeroom", - "dressing room", - "fitting room", - "locker room" - ], - "tags": { - "amenity": "dressing_room" - }, - "name": "Changing Room" -} diff --git a/data/presets/presets/amenity/drinking_water.json b/data/presets/presets/amenity/drinking_water.json deleted file mode 100644 index e538ca9982..0000000000 --- a/data/presets/presets/amenity/drinking_water.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "maki-drinking-water", - "fields": [ - "operator", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "wheelchair", - "bottle" - ], - "moreFields": [ - "covered", - "indoor", - "level", - "lit" - ], - "geometry": [ - "point" - ], - "tags": { - "amenity": "drinking_water" - }, - "terms": [ - "potable water source", - "water fountain", - "drinking fountain", - "bubbler", - "water tap" - ], - "name": "Drinking Water" -} diff --git a/data/presets/presets/amenity/driving_school.json b/data/presets/presets/amenity/driving_school.json deleted file mode 100644 index 125f0f4f5c..0000000000 --- a/data/presets/presets/amenity/driving_school.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-car", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "driving_school" - }, - "name": "Driving School" -} diff --git a/data/presets/presets/amenity/events_venue.json b/data/presets/presets/amenity/events_venue.json deleted file mode 100644 index c7702d33e6..0000000000 --- a/data/presets/presets/amenity/events_venue.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "icon": "fas-users", - "fields": [ - "name", - "operator", - "building_area", - "address", - "website", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "level", - "min_age", - "phone", - "smoking", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "events_venue" - }, - "terms": [ - "banquet hall", - "baptism", - "Bar Mitzvah", - "Bat Mitzvah", - "birthdays", - "celebrations", - "conferences", - "confirmation", - "meetings", - "parties", - "party", - "quinceañera", - "reunions", - "weddings" - ], - "name": "Events Venue" -} diff --git a/data/presets/presets/amenity/exhibition_centre.json b/data/presets/presets/amenity/exhibition_centre.json deleted file mode 100644 index 74e6abbf2e..0000000000 --- a/data/presets/presets/amenity/exhibition_centre.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "icon": "fas-user-tie", - "fields": [ - "name", - "operator", - "operator/type", - "building_area", - "address", - "website", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "not/name", - "phone", - "smoking", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "exhibition_centre" - }, - "terms": [ - "exhibition center", - "fair", - "exhibition", - "exposition", - "trade fair", - "trade show", - "trade exhibition", - "expo", - "tradeshow" - ], - "name": "Exposition Center" -} \ No newline at end of file diff --git a/data/presets/presets/amenity/fast_food.json b/data/presets/presets/amenity/fast_food.json deleted file mode 100644 index 2ef3e64c11..0000000000 --- a/data/presets/presets/amenity/fast_food.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "icon": "maki-fast-food", - "fields": [ - "name", - "cuisine", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "drive_through", - "phone", - "website" - ], - "moreFields": [ - "air_conditioning", - "brand", - "capacity", - "delivery", - "diet_multi", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "opening_hours", - "opening_hours/covid19", - "outdoor_seating", - "payment_multi", - "ref/vatin", - "smoking", - "takeaway", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "fast_food" - }, - "terms": [ - "restaurant", - "takeaway" - ], - "name": "Fast Food" -} diff --git a/data/presets/presets/amenity/fast_food/_ice_cream.json b/data/presets/presets/amenity/fast_food/_ice_cream.json deleted file mode 100644 index 14560acfc7..0000000000 --- a/data/presets/presets/amenity/fast_food/_ice_cream.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "fas-ice-cream", - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "ice_cream" - }, - "reference": { - "key": "cuisine", - "value": "ice_cream" - }, - "name": "Ice Cream Fast Food", - "searchable": false -} diff --git a/data/presets/presets/amenity/fast_food/burger.json b/data/presets/presets/amenity/fast_food/burger.json deleted file mode 100644 index 908728ec29..0000000000 --- a/data/presets/presets/amenity/fast_food/burger.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-fast-food", - "geometry": [ - "point", - "area" - ], - "terms": [ - "breakfast", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "burger" - }, - "reference": { - "key": "cuisine", - "value": "burger" - }, - "name": "Burger Fast Food" -} diff --git a/data/presets/presets/amenity/fast_food/chicken.json b/data/presets/presets/amenity/fast_food/chicken.json deleted file mode 100644 index 04218d92ec..0000000000 --- a/data/presets/presets/amenity/fast_food/chicken.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "fas-drumstick-bite", - "geometry": [ - "point", - "area" - ], - "terms": [ - "breakfast", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "chicken" - }, - "reference": { - "key": "cuisine", - "value": "chicken" - }, - "name": "Chicken Fast Food" -} diff --git a/data/presets/presets/amenity/fast_food/donut.json b/data/presets/presets/amenity/fast_food/donut.json deleted file mode 100644 index e10b92da28..0000000000 --- a/data/presets/presets/amenity/fast_food/donut.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-donut", - "geometry": [ - "point", - "area" - ], - "terms": [ - "breakfast", - "brunch", - "cafe", - "canteen", - "coffee", - "dine", - "diner", - "donut", - "doughnut", - "dining", - "eat", - "lunch", - "table" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "donut" - }, - "reference": { - "key": "cuisine", - "value": "donut" - }, - "name": "Donut Fast Food" -} diff --git a/data/presets/presets/amenity/fast_food/fish_and_chips.json b/data/presets/presets/amenity/fast_food/fish_and_chips.json deleted file mode 100644 index 27a2cf412f..0000000000 --- a/data/presets/presets/amenity/fast_food/fish_and_chips.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "fas-fish", - "geometry": [ - "point", - "area" - ], - "terms": [ - "breakfast", - "cafe", - "café", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table", - "french fries" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "fish_and_chips" - }, - "reference": { - "key": "cuisine", - "value": "fish_and_chips" - }, - "name": "Fish & Chips Fast Food" -} diff --git a/data/presets/presets/amenity/fast_food/hot_dog.json b/data/presets/presets/amenity/fast_food/hot_dog.json deleted file mode 100644 index 0a39973c7c..0000000000 --- a/data/presets/presets/amenity/fast_food/hot_dog.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-hotdog", - "geometry": [ - "point", - "area" - ], - "terms": [ - "ballpark", - "frankfurter", - "frank", - "hotdog stand", - "sandwich", - "sausage", - "wiener" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "hot_dog" - }, - "reference": { - "key": "cuisine", - "value": "hot_dog" - }, - "name": "Hot Dog Fast Food" -} diff --git a/data/presets/presets/amenity/fast_food/juice.json b/data/presets/presets/amenity/fast_food/juice.json deleted file mode 100644 index 5239e22e98..0000000000 --- a/data/presets/presets/amenity/fast_food/juice.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-drink_cup", - "geometry": [ - "point", - "area" - ], - "terms": [ - "cafe", - "café", - "beverages", - "fruit drinks", - "juice bar", - "shakes", - "smoothies" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "juice" - }, - "reference": { - "key": "cuisine", - "value": "juice" - }, - "name": "Juice Fast Food" -} diff --git a/data/presets/presets/amenity/fast_food/kebab.json b/data/presets/presets/amenity/fast_food/kebab.json deleted file mode 100644 index aa162d9fc7..0000000000 --- a/data/presets/presets/amenity/fast_food/kebab.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-vertical_rotisserie", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "kebab" - }, - "reference": { - "key": "cuisine", - "value": "kebab" - }, - "name": "Kebab Fast Food" -} diff --git a/data/presets/presets/amenity/fast_food/mexican.json b/data/presets/presets/amenity/fast_food/mexican.json deleted file mode 100644 index 827815f743..0000000000 --- a/data/presets/presets/amenity/fast_food/mexican.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "fas-pepper-hot", - "geometry": [ - "point", - "area" - ], - "terms": [ - "breakfast", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table", - "tacos", - "burritos", - "enchiladas", - "fajitas", - "nachos", - "tortillas", - "salsa", - "tamales", - "quesadillas" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "mexican" - }, - "reference": { - "key": "cuisine", - "value": "mexican" - }, - "name": "Mexican Fast Food" -} diff --git a/data/presets/presets/amenity/fast_food/pizza.json b/data/presets/presets/amenity/fast_food/pizza.json deleted file mode 100644 index 35050aa355..0000000000 --- a/data/presets/presets/amenity/fast_food/pizza.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-restaurant-pizza", - "geometry": [ - "point", - "area" - ], - "terms": [ - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "lunch", - "table", - "deep dish", - "thin crust", - "slice" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "pizza" - }, - "reference": { - "key": "cuisine", - "value": "pizza" - }, - "name": "Pizza Fast Food" -} diff --git a/data/presets/presets/amenity/fast_food/sandwich.json b/data/presets/presets/amenity/fast_food/sandwich.json deleted file mode 100644 index ab467cf91c..0000000000 --- a/data/presets/presets/amenity/fast_food/sandwich.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-sandwich", - "geometry": [ - "point", - "area" - ], - "terms": [ - "breakfast", - "cafe", - "café", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "fast_food", - "cuisine": "sandwich" - }, - "reference": { - "key": "cuisine", - "value": "sandwich" - }, - "name": "Sandwich Fast Food" -} diff --git a/data/presets/presets/amenity/fire_station.json b/data/presets/presets/amenity/fire_station.json deleted file mode 100644 index bf020ad86a..0000000000 --- a/data/presets/presets/amenity/fire_station.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-fire-station", - "fields": [ - "name", - "operator", - "address", - "building_area" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "polling_station", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "fire_station" - }, - "name": "Fire Station" -} diff --git a/data/presets/presets/amenity/food_court.json b/data/presets/presets/amenity/food_court.json deleted file mode 100644 index bde7956266..0000000000 --- a/data/presets/presets/amenity/food_court.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "maki-restaurant", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "moreFields": [ - "capacity", - "diet_multi", - "email", - "fax", - "gnis/feature_id", - "level", - "not/name", - "outdoor_seating", - "phone", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "fast food", - "restaurant", - "food" - ], - "tags": { - "amenity": "food_court" - }, - "name": "Food Court" -} diff --git a/data/presets/presets/amenity/fountain.json b/data/presets/presets/amenity/fountain.json deleted file mode 100644 index 2bd46138cf..0000000000 --- a/data/presets/presets/amenity/fountain.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-fountain", - "fields": [ - "name", - "operator", - "fountain", - "drinking_water", - "height", - "lit" - ], - "moreFields": [ - "covered", - "indoor", - "level", - "manufacturer" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "fountain" - }, - "terms": [ - "basin", - "water" - ], - "name": "Fountain" -} diff --git a/data/presets/presets/amenity/fuel.json b/data/presets/presets/amenity/fuel.json deleted file mode 100644 index c62028ae48..0000000000 --- a/data/presets/presets/amenity/fuel.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "icon": "maki-fuel", - "fields": [ - "name", - "brand", - "operator", - "address", - "fuel_multi", - "self_service" - ], - "moreFields": [ - "brand", - "building", - "email", - "fax", - "gnis/feature_id", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "phone", - "ref/vatin", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "petrol", - "fuel", - "gasoline", - "propane", - "diesel", - "lng", - "cng", - "biodiesel" - ], - "tags": { - "amenity": "fuel" - }, - "name": "Gas Station" -} diff --git a/data/presets/presets/amenity/gambling.json b/data/presets/presets/amenity/gambling.json deleted file mode 100644 index 936c3fd12e..0000000000 --- a/data/presets/presets/amenity/gambling.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "fas-coins", - "fields": [ - "{amenity/casino}" - ], - "moreFields": [ - "{amenity/casino}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "betting", - "bingo", - "blackjack", - "casino", - "craps", - "gamble", - "gambling", - "keno", - "lottery", - "pachinko", - "poker", - "roulette", - "slot machines", - "slots" - ], - "tags": { - "amenity": "gambling" - }, - "name": "Gambling Hall" -} diff --git a/data/presets/presets/amenity/give_box.json b/data/presets/presets/amenity/give_box.json deleted file mode 100644 index e28e3b81e5..0000000000 --- a/data/presets/presets/amenity/give_box.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "icon": "fas-box-open", - "fields": [ - "name", - "operator", - "opening_hours", - "opening_hours/covid19", - "access_simple", - "website" - ], - "moreFields": [ - "address", - "brand", - "capacity", - "covered", - "email", - "indoor", - "level", - "lit", - "location", - "phone", - "ref", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "donations", - "free box", - "free table", - "freebox", - "give box", - "give shelf", - "givebox", - "library", - "share shelf" - ], - "tags": { - "amenity": "give_box" - }, - "name": "Free Box" -} diff --git a/data/presets/presets/amenity/grave_yard.json b/data/presets/presets/amenity/grave_yard.json deleted file mode 100644 index d2e5781633..0000000000 --- a/data/presets/presets/amenity/grave_yard.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-cemetery", - "fields": [ - "religion", - "address" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "grave_yard" - }, - "terms": [ - "burial ground", - "cemetary", - "cemetery", - "churchyard", - "columbarium", - "grave yard", - "graveyard", - "mausoleum", - "tomb" - ], - "name": "Graveyard" -} diff --git a/data/presets/presets/amenity/grit_bin.json b/data/presets/presets/amenity/grit_bin.json deleted file mode 100644 index f905f07f14..0000000000 --- a/data/presets/presets/amenity/grit_bin.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "fas-box", - "fields": [ - "operator", - "access_simple", - "material", - "collection_times" - ], - "moreFields": [ - "colour", - "height", - "lit" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "amenity": "grit_bin" - }, - "terms": [ - "salt", - "sand" - ], - "name": "Grit Bin" -} diff --git a/data/presets/presets/amenity/hospital.json b/data/presets/presets/amenity/hospital.json deleted file mode 100644 index 5f00cb6f54..0000000000 --- a/data/presets/presets/amenity/hospital.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "icon": "maki-hospital", - "fields": [ - "name", - "operator", - "operator/type", - "healthcare/speciality", - "address", - "emergency" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "clinic", - "doctor", - "emergency room", - "health", - "infirmary", - "institution", - "sanatorium", - "sanitarium", - "sick", - "surgery", - "ward" - ], - "tags": { - "amenity": "hospital" - }, - "addTags": { - "amenity": "hospital", - "healthcare": "hospital" - }, - "reference": { - "key": "amenity", - "value": "hospital" - }, - "name": "Hospital Grounds" -} diff --git a/data/presets/presets/amenity/hunting_stand.json b/data/presets/presets/amenity/hunting_stand.json deleted file mode 100644 index 654924e867..0000000000 --- a/data/presets/presets/amenity/hunting_stand.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-hunting_blind", - "fields": [ - "access_simple", - "lockable" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "game", - "gun", - "lookout", - "rifle", - "shoot*", - "wild", - "watch" - ], - "tags": { - "amenity": "hunting_stand" - }, - "name": "Hunting Stand" -} diff --git a/data/presets/presets/amenity/ice_cream.json b/data/presets/presets/amenity/ice_cream.json deleted file mode 100644 index bf3fe5bff0..0000000000 --- a/data/presets/presets/amenity/ice_cream.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "icon": "fas-ice-cream", - "fields": [ - "name", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "outdoor_seating" - ], - "moreFields": [ - "delivery", - "diet_multi", - "drive_through", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "payment_multi", - "phone", - "takeaway", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "gelato", - "sorbet", - "sherbet", - "frozen", - "yogurt" - ], - "tags": { - "amenity": "ice_cream" - }, - "name": "Ice Cream Shop" -} diff --git a/data/presets/presets/amenity/internet_cafe.json b/data/presets/presets/amenity/internet_cafe.json deleted file mode 100644 index db74faffa0..0000000000 --- a/data/presets/presets/amenity/internet_cafe.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "icon": "temaki-antenna", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "building_area", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "phone", - "website" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "level", - "min_age", - "opening_hours", - "opening_hours/covid19", - "outdoor_seating", - "payment_multi", - "ref/vatin", - "smoking", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "cybercafe", - "taxiphone", - "teleboutique", - "coffee", - "cafe", - "net", - "lanhouse" - ], - "tags": { - "amenity": "internet_cafe" - }, - "name": "Internet Cafe" -} diff --git a/data/presets/presets/amenity/karaoke_box.json b/data/presets/presets/amenity/karaoke_box.json deleted file mode 100644 index debd94f34e..0000000000 --- a/data/presets/presets/amenity/karaoke_box.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "maki-karaoke", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "website" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "level", - "min_age", - "payment_multi", - "phone", - "ref/vatin", - "smoking", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "karaoke club", - "karaoke room", - "karaoke television", - "KTV" - ], - "tags": { - "amenity": "karaoke_box" - }, - "name": "Karaoke Box" -} diff --git a/data/presets/presets/amenity/kindergarten.json b/data/presets/presets/amenity/kindergarten.json deleted file mode 100644 index 9d0ca77109..0000000000 --- a/data/presets/presets/amenity/kindergarten.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "temaki-school", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "phone", - "preschool" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "max_age", - "min_age", - "not/name", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "website", - "wheelchair" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "kindergarten", - "kindergarden", - "pre-school" - ], - "tags": { - "amenity": "kindergarten" - }, - "name": "Preschool / Kindergarten Grounds" -} diff --git a/data/presets/presets/amenity/kneipp_water_cure.json b/data/presets/presets/amenity/kneipp_water_cure.json deleted file mode 100644 index aef3987aa4..0000000000 --- a/data/presets/presets/amenity/kneipp_water_cure.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-hospital", - "fields": [ - "kneipp_water_cure_multi", - "opening_hours", - "opening_hours/covid19", - "fee" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "kneipp_water_cure" - }, - "reference": { - "key": "amenity", - "value": "kneipp_water_cure" - }, - "name": "Kneipp Water Cure" -} diff --git a/data/presets/presets/amenity/language_school.json b/data/presets/presets/amenity/language_school.json deleted file mode 100644 index 7f2ded085f..0000000000 --- a/data/presets/presets/amenity/language_school.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-school", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "language_multi" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "esl" - ], - "tags": { - "amenity": "language_school" - }, - "name": "Language School" -} diff --git a/data/presets/presets/amenity/lavoir.json b/data/presets/presets/amenity/lavoir.json deleted file mode 100644 index 2059114a3f..0000000000 --- a/data/presets/presets/amenity/lavoir.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-detergent_bottle", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "access_simple", - "building_area" - ], - "moreFields": [ - "gnis/feature_id", - "smoking", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "lavoir" - }, - "terms": [ - "clothing", - "laundry", - "washing" - ], - "name": "Lavoir" -} diff --git a/data/presets/presets/amenity/letter_box.json b/data/presets/presets/amenity/letter_box.json deleted file mode 100644 index 9cce7cf6a8..0000000000 --- a/data/presets/presets/amenity/letter_box.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "icon": "temaki-letter_box", - "fields": [ - "post", - "access_simple", - "height" - ], - "moreFields": [ - "covered", - "indoor", - "level", - "lit", - "lockable", - "manufacturer", - "material", - "operator", - "wheelchair" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "amenity": "letter_box" - }, - "terms": [ - "curbside delivery box", - "home delivery box", - "direct-to-door delivery box", - "letter hole", - "letter plate", - "letter slot", - "letterbox", - "letterhole", - "letterplate", - "letterslot", - "mail box", - "mail hole", - "mail slot", - "mailbox", - "mailhole", - "mailslot", - "through-door delivery box" - ], - "name": "Letter Box" -} diff --git a/data/presets/presets/amenity/library.json b/data/presets/presets/amenity/library.json deleted file mode 100644 index d0c036ca7f..0000000000 --- a/data/presets/presets/amenity/library.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "maki-library", - "fields": [ - "name", - "operator", - "operator/type", - "building_area", - "address", - "ref/isil", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "moreFields": [ - "access_simple", - "air_conditioning", - "baby_feeding", - "email", - "fax", - "gnis/feature_id", - "level", - "not/name", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "phone", - "polling_station", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "book" - ], - "tags": { - "amenity": "library" - }, - "name": "Library" -} diff --git a/data/presets/presets/amenity/loading_dock.json b/data/presets/presets/amenity/loading_dock.json deleted file mode 100644 index e6ef9014f6..0000000000 --- a/data/presets/presets/amenity/loading_dock.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "fas-truck-loading", - "fields": [ - "ref", - "operator", - "access_simple", - "door", - "width", - "height" - ], - "moreFields": [ - "address", - "colour", - "level", - "lit", - "wheelchair" - ], - "geometry": [ - "vertex" - ], - "terms": [ - "door", - "loading bay", - "shipping", - "unloading", - "warehouse" - ], - "tags": { - "amenity": "loading_dock" - }, - "name": "Loading Dock" -} diff --git a/data/presets/presets/amenity/lounger.json b/data/presets/presets/amenity/lounger.json deleted file mode 100644 index dc4fd62d36..0000000000 --- a/data/presets/presets/amenity/lounger.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-lounger", - "fields": [ - "material", - "colour", - "access_simple", - "lit" - ], - "moreFields": [ - "height", - "inscription", - "level", - "manufacturer", - "operator" - ], - "geometry": [ - "point" - ], - "tags": { - "amenity": "lounger" - }, - "terms": [ - "seat", - "chair", - "bench" - ], - "name": "Lounger" -} diff --git a/data/presets/presets/amenity/love_hotel.json b/data/presets/presets/amenity/love_hotel.json deleted file mode 100644 index 6af9a71ad4..0000000000 --- a/data/presets/presets/amenity/love_hotel.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-heart", - "fields": [ - "name", - "operator", - "address", - "building_area", - "rooms", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "min_age", - "payment_multi", - "phone", - "ref/vatin", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "love_hotel" - }, - "name": "Love Hotel" -} diff --git a/data/presets/presets/amenity/marketplace.json b/data/presets/presets/amenity/marketplace.json deleted file mode 100644 index 4315dbc421..0000000000 --- a/data/presets/presets/amenity/marketplace.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-shop", - "fields": [ - "name", - "operator", - "address", - "building", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "marketplace" - }, - "name": "Marketplace" -} diff --git a/data/presets/presets/amenity/monastery.json b/data/presets/presets/amenity/monastery.json deleted file mode 100644 index 2533d7d7a3..0000000000 --- a/data/presets/presets/amenity/monastery.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "icon": "maki-place-of-worship", - "fields": [ - "name", - "religion", - "denomination", - "address" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "abbey", - "basilica", - "bethel", - "cathedral", - "chancel", - "chantry", - "chapel", - "church", - "fold", - "house of God", - "house of prayer", - "house of worship", - "minster", - "mission", - "monastery", - "mosque", - "oratory", - "parish", - "sacellum", - "sanctuary", - "shrine", - "synagogue", - "tabernacle", - "temple" - ], - "tags": { - "amenity": "monastery" - }, - "name": "Monastery Grounds" -} diff --git a/data/presets/presets/amenity/money_transfer.json b/data/presets/presets/amenity/money_transfer.json deleted file mode 100644 index b2c5dbebf2..0000000000 --- a/data/presets/presets/amenity/money_transfer.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "temaki-money_hand", - "fields": [ - "name", - "brand", - "address", - "building_area", - "payment_multi", - "currency_multi" - ], - "moreFields": [ - "email", - "fax", - "level", - "opening_hours", - "opening_hours/covid19", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "money order", - "check", - "bill", - "currency", - "finance", - "wire transfer", - "cable", - "person to person", - "cash to cash", - "exchange" - ], - "tags": { - "amenity": "money_transfer" - }, - "name": "Money Transfer Station" -} diff --git a/data/presets/presets/amenity/mortuary.json b/data/presets/presets/amenity/mortuary.json deleted file mode 100644 index 16674e6540..0000000000 --- a/data/presets/presets/amenity/mortuary.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-cemetery", - "fields": [ - "name", - "operator", - "address" - ], - "moreFields": [ - "religion", - "denomination" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "crematorium", - "funeral home", - "memorial home", - "morgue", - "mortuary", - "undertaker" - ], - "tags": { - "amenity": "mortuary" - }, - "name": "Morgue" -} diff --git a/data/presets/presets/amenity/motorcycle_parking.json b/data/presets/presets/amenity/motorcycle_parking.json deleted file mode 100644 index fd50855255..0000000000 --- a/data/presets/presets/amenity/motorcycle_parking.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "fas-motorcycle", - "fields": [ - "capacity_parking", - "operator", - "covered", - "access_simple" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "motorcycle_parking" - }, - "name": "Motorcycle Parking" -} diff --git a/data/presets/presets/amenity/music_school.json b/data/presets/presets/amenity/music_school.json deleted file mode 100644 index 34de1d5bbc..0000000000 --- a/data/presets/presets/amenity/music_school.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "fas-music", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "school of music" - ], - "tags": { - "amenity": "music_school" - }, - "name": "Music School" -} diff --git a/data/presets/presets/amenity/nightclub.json b/data/presets/presets/amenity/nightclub.json deleted file mode 100644 index 8df6f6b08c..0000000000 --- a/data/presets/presets/amenity/nightclub.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "fas-cocktail", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "min_age", - "smoking" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair", - "fee" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "nightclub" - }, - "terms": [ - "disco*", - "night club", - "dancing", - "dance club" - ], - "name": "Nightclub" -} diff --git a/data/presets/presets/amenity/nightclub/lgbtq.json b/data/presets/presets/amenity/nightclub/lgbtq.json deleted file mode 100644 index ff459ae10d..0000000000 --- a/data/presets/presets/amenity/nightclub/lgbtq.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "fas-cocktail", - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "nightclub", - "lgbtq": "primary" - }, - "terms": [ - "gay nightclub", - "lesbian nightclub", - "lgbtq nightclub", - "lgbt nightclub", - "lgb nightclub" - ], - "name": "LGBTQ+ Nightclub" -} diff --git a/data/presets/presets/amenity/parking.json b/data/presets/presets/amenity/parking.json deleted file mode 100644 index 0a843b58f7..0000000000 --- a/data/presets/presets/amenity/parking.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "icon": "temaki-car_parked", - "fields": [ - "operator", - "operator/type", - "parking", - "capacity_parking", - "capacity/disabled_parking", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "surface" - ], - "moreFields": [ - "address", - "covered", - "email", - "fax", - "maxstay", - "name", - "opening_hours", - "opening_hours/covid19", - "park_ride", - "phone", - "ref", - "supervised", - "website", - "wheelchair" - ], - "geometry": [ - "area", - "point", - "vertex" - ], - "tags": { - "amenity": "parking" - }, - "terms": [ - "automobile parking", - "car lot", - "car parking", - "rv parking", - "truck parking", - "vehicle parking" - ], - "name": "Parking Lot" -} diff --git a/data/presets/presets/amenity/parking/multi-storey.json b/data/presets/presets/amenity/parking/multi-storey.json deleted file mode 100644 index 0435f6c545..0000000000 --- a/data/presets/presets/amenity/parking/multi-storey.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "temaki-car_structure", - "fields": [ - "name", - "{amenity/parking}", - "building" - ], - "moreFields": [ - "{amenity/parking}", - "height", - "building/levels" - ], - "geometry": [ - "area" - ], - "tags": { - "amenity": "parking", - "parking": "multi-storey" - }, - "addTags": { - "building": "parking", - "amenity": "parking", - "parking": "multi-storey" - }, - "reference": { - "key": "parking", - "value": "multi-storey" - }, - "terms": [ - "car", - "indoor parking", - "multistorey car park", - "parkade", - "parking building", - "parking deck", - "parking garage", - "parking ramp", - "parking structure" - ], - "name": "Multilevel Parking Garage" -} diff --git a/data/presets/presets/amenity/parking/park_ride.json b/data/presets/presets/amenity/parking/park_ride.json deleted file mode 100644 index 4d2cef9a55..0000000000 --- a/data/presets/presets/amenity/parking/park_ride.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-sign_and_car", - "fields": [ - "name", - "{amenity/parking}" - ], - "geometry": [ - "area", - "point", - "vertex" - ], - "tags": { - "amenity": "parking", - "park_ride": "yes" - }, - "reference": { - "key": "park_ride", - "value": "yes" - }, - "terms": [ - "commuter parking lot", - "incentive parking lot", - "metro parking lot", - "park and pool lot", - "park and ride lot", - "P+R", - "public transport parking lot", - "public transit parking lot", - "train parking lot" - ], - "matchScore": 0.95, - "name": "Park & Ride Lot" -} diff --git a/data/presets/presets/amenity/parking/underground.json b/data/presets/presets/amenity/parking/underground.json deleted file mode 100644 index 6dce99bdfe..0000000000 --- a/data/presets/presets/amenity/parking/underground.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-car_structure", - "fields": [ - "{amenity/parking}", - "layer" - ], - "geometry": [ - "area", - "point", - "vertex" - ], - "tags": { - "amenity": "parking", - "parking": "underground" - }, - "addTags": { - "amenity": "parking", - "parking": "underground", - "layer": "-1" - }, - "reference": { - "key": "parking", - "value": "underground" - }, - "terms": [ - "automobile parking", - "car lot", - "car parking", - "rv parking", - "subsurface parking", - "truck parking", - "vehicle parking" - ], - "name": "Underground Parking" -} diff --git a/data/presets/presets/amenity/parking_entrance.json b/data/presets/presets/amenity/parking_entrance.json deleted file mode 100644 index 0fb0c2baa6..0000000000 --- a/data/presets/presets/amenity/parking_entrance.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-entrance-alt1", - "fields": [ - "parking_entrance", - "ref", - "access_simple", - "address", - "level" - ], - "geometry": [ - "vertex" - ], - "tags": { - "amenity": "parking_entrance" - }, - "name": "Parking Garage Entrance / Exit" -} diff --git a/data/presets/presets/amenity/parking_space.json b/data/presets/presets/amenity/parking_space.json deleted file mode 100644 index a53c9dedf0..0000000000 --- a/data/presets/presets/amenity/parking_space.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-parking_space", - "fields": [ - "parking_space", - "capacity" - ], - "geometry": [ - "area", - "point", - "vertex" - ], - "tags": { - "amenity": "parking_space" - }, - "addTags": { - "amenity": "parking_space", - "capacity": "1" - }, - "terms": [ - "parking spot", - "parking stall" - ], - "matchScore": 0.95, - "name": "Parking Space" -} diff --git a/data/presets/presets/amenity/parking_space/disabled.json b/data/presets/presets/amenity/parking_space/disabled.json deleted file mode 100644 index 0ace1a9ed4..0000000000 --- a/data/presets/presets/amenity/parking_space/disabled.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-accessible_space", - "geometry": [ - "area", - "point", - "vertex" - ], - "tags": { - "amenity": "parking_space", - "parking_space": "disabled" - }, - "addTags": { - "amenity": "parking_space", - "parking_space": "disabled", - "capacity": "1" - }, - "terms": [ - "disability", - "disabled parking stall", - "handicap parking spot", - "wheelchair" - ], - "matchScore": 0.95, - "name": "Accessible Parking Space" -} diff --git a/data/presets/presets/amenity/payment_centre.json b/data/presets/presets/amenity/payment_centre.json deleted file mode 100644 index 89120f3fee..0000000000 --- a/data/presets/presets/amenity/payment_centre.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "temaki-money_hand", - "fields": [ - "name", - "brand", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "payment_multi" - ], - "moreFields": [ - "currency_multi", - "email", - "fax", - "level", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "check", - "tax pay", - "bill pay", - "currency", - "finance", - "cash", - "money" - ], - "tags": { - "amenity": "payment_centre" - }, - "name": "Payment Center" -} diff --git a/data/presets/presets/amenity/payment_terminal.json b/data/presets/presets/amenity/payment_terminal.json deleted file mode 100644 index d919089280..0000000000 --- a/data/presets/presets/amenity/payment_terminal.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "far-credit-card", - "fields": [ - "name", - "brand", - "address", - "opening_hours", - "opening_hours/covid19", - "payment_multi" - ], - "moreFields": [ - "covered", - "currency_multi", - "indoor", - "level", - "wheelchair" - ], - "geometry": [ - "point" - ], - "terms": [ - "interactive kiosk", - "ekiosk", - "atm", - "bill pay", - "tax pay", - "phone pay", - "finance", - "cash", - "money transfer", - "card" - ], - "tags": { - "amenity": "payment_terminal" - }, - "name": "Payment Terminal" -} diff --git a/data/presets/presets/amenity/pharmacy.json b/data/presets/presets/amenity/pharmacy.json deleted file mode 100644 index 6fa3156c71..0000000000 --- a/data/presets/presets/amenity/pharmacy.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "icon": "maki-pharmacy", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "dispensing", - "drive_through" - ], - "moreFields": [ - "brand", - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "pharmacy" - }, - "addTags": { - "amenity": "pharmacy", - "healthcare": "pharmacy" - }, - "reference": { - "key": "amenity", - "value": "pharmacy" - }, - "terms": [ - "apothecary", - "drug store", - "drugstore", - "med*", - "prescription" - ], - "name": "Pharmacy Counter" -} diff --git a/data/presets/presets/amenity/photo_booth.json b/data/presets/presets/amenity/photo_booth.json deleted file mode 100644 index 0b38f59312..0000000000 --- a/data/presets/presets/amenity/photo_booth.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "fas-person-booth", - "fields": [ - "name", - "operator", - "payment_multi", - "wheelchair" - ], - "moreFields": [ - "brand", - "indoor", - "level" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "photobooth", - "photo", - "booth", - "kiosk", - "camera" - ], - "tags": { - "amenity": "photo_booth" - }, - "name": "Photo Booth" -} diff --git a/data/presets/presets/amenity/place_of_worship.json b/data/presets/presets/amenity/place_of_worship.json deleted file mode 100644 index 6bf4429b7c..0000000000 --- a/data/presets/presets/amenity/place_of_worship.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "icon": "maki-place-of-worship", - "fields": [ - "name", - "religion", - "denomination", - "address", - "building_area", - "service_times" - ], - "moreFields": [ - "air_conditioning", - "baby_feeding", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/ssid", - "level", - "opening_hours", - "opening_hours/covid19", - "phone", - "polling_station", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "abbey", - "basilica", - "bethel", - "cathedral", - "chancel", - "chantry", - "chapel", - "church", - "fold", - "house of God", - "house of prayer", - "house of worship", - "minster", - "mission", - "mosque", - "oratory", - "parish", - "sacellum", - "sanctuary", - "shrine", - "synagogue", - "tabernacle", - "temple" - ], - "tags": { - "amenity": "place_of_worship" - }, - "name": "Place of Worship" -} diff --git a/data/presets/presets/amenity/place_of_worship/buddhist.json b/data/presets/presets/amenity/place_of_worship/buddhist.json deleted file mode 100644 index 0f6e787433..0000000000 --- a/data/presets/presets/amenity/place_of_worship/buddhist.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-religious-buddhist", - "fields": [ - "name", - "religion", - "denomination", - "{amenity/place_of_worship}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "stupa", - "vihara", - "monastery", - "temple", - "pagoda", - "zendo", - "dojo" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "buddhist" - }, - "reference": { - "key": "amenity", - "value": "place_of_worship" - }, - "name": "Buddhist Temple" -} diff --git a/data/presets/presets/amenity/place_of_worship/christian.json b/data/presets/presets/amenity/place_of_worship/christian.json deleted file mode 100644 index 8a2f8999c0..0000000000 --- a/data/presets/presets/amenity/place_of_worship/christian.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "icon": "maki-religious-christian", - "fields": [ - "name", - "religion", - "denomination", - "{amenity/place_of_worship}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "christian", - "abbey", - "basilica", - "bethel", - "cathedral", - "chancel", - "chantry", - "chapel", - "fold", - "house of God", - "house of prayer", - "house of worship", - "minster", - "mission", - "oratory", - "parish", - "sacellum", - "sanctuary", - "shrine", - "tabernacle", - "temple" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "christian" - }, - "reference": { - "key": "amenity", - "value": "place_of_worship" - }, - "name": "Christian Church" -} diff --git a/data/presets/presets/amenity/place_of_worship/christian/jehovahs_witness.json b/data/presets/presets/amenity/place_of_worship/christian/jehovahs_witness.json deleted file mode 100644 index 2fa3aa320c..0000000000 --- a/data/presets/presets/amenity/place_of_worship/christian/jehovahs_witness.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-place-of-worship", - "geometry": [ - "point", - "area" - ], - "terms": [ - "christian", - "church", - "house of God", - "house of prayer", - "house of worship" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "christian", - "denomination": "jehovahs_witness" - }, - "reference": { - "key": "denomination", - "value": "jehovahs_witness" - }, - "name": "Kingdom Hall of Jehovah's Witnesses" -} diff --git a/data/presets/presets/amenity/place_of_worship/christian/la_luz_del_mundo.json b/data/presets/presets/amenity/place_of_worship/christian/la_luz_del_mundo.json deleted file mode 100644 index d683fdec79..0000000000 --- a/data/presets/presets/amenity/place_of_worship/christian/la_luz_del_mundo.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-place-of-worship", - "geometry": [ - "point", - "area" - ], - "terms": [ - "christian", - "church", - "house of God", - "house of prayer", - "house of worship", - "the light of the world church" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "christian", - "denomination": "la_luz_del_mundo" - }, - "reference": { - "key": "denomination", - "value": "la_luz_del_mundo" - }, - "name": "La Luz del Mundo Temple" -} diff --git a/data/presets/presets/amenity/place_of_worship/christian/quaker.json b/data/presets/presets/amenity/place_of_worship/christian/quaker.json deleted file mode 100644 index 5ff9fe7be1..0000000000 --- a/data/presets/presets/amenity/place_of_worship/christian/quaker.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-quakerism", - "geometry": [ - "point", - "area" - ], - "terms": [ - "christian", - "church", - "house of God", - "house of prayer", - "house of worship" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "christian", - "denomination": "quaker" - }, - "reference": { - "key": "denomination", - "value": "quaker" - }, - "name": "Quaker Friends Meeting House" -} diff --git a/data/presets/presets/amenity/place_of_worship/hindu.json b/data/presets/presets/amenity/place_of_worship/hindu.json deleted file mode 100644 index dc49d5c778..0000000000 --- a/data/presets/presets/amenity/place_of_worship/hindu.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-hinduism", - "fields": [ - "name", - "religion", - "denomination", - "{amenity/place_of_worship}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "kovil", - "devasthana", - "mandir", - "kshetram", - "alayam", - "shrine", - "temple" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "hindu" - }, - "reference": { - "key": "amenity", - "value": "place_of_worship" - }, - "name": "Hindu Temple" -} diff --git a/data/presets/presets/amenity/place_of_worship/jewish.json b/data/presets/presets/amenity/place_of_worship/jewish.json deleted file mode 100644 index c464bfe8c6..0000000000 --- a/data/presets/presets/amenity/place_of_worship/jewish.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-religious-jewish", - "fields": [ - "name", - "religion", - "denomination", - "{amenity/place_of_worship}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "jewish" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "jewish" - }, - "reference": { - "key": "amenity", - "value": "place_of_worship" - }, - "name": "Jewish Synagogue" -} diff --git a/data/presets/presets/amenity/place_of_worship/muslim.json b/data/presets/presets/amenity/place_of_worship/muslim.json deleted file mode 100644 index e377cc50ba..0000000000 --- a/data/presets/presets/amenity/place_of_worship/muslim.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-religious-muslim", - "fields": [ - "name", - "religion", - "denomination", - "{amenity/place_of_worship}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "islam", - "islamic center", - "muslim" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "muslim" - }, - "reference": { - "key": "amenity", - "value": "place_of_worship" - }, - "name": "Muslim Mosque" -} diff --git a/data/presets/presets/amenity/place_of_worship/shinto.json b/data/presets/presets/amenity/place_of_worship/shinto.json deleted file mode 100644 index b586a9904f..0000000000 --- a/data/presets/presets/amenity/place_of_worship/shinto.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-shinto", - "fields": [ - "name", - "religion", - "denomination", - "{amenity/place_of_worship}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "kami", - "torii" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "shinto" - }, - "reference": { - "key": "amenity", - "value": "place_of_worship" - }, - "name": "Shinto Shrine" -} diff --git a/data/presets/presets/amenity/place_of_worship/sikh.json b/data/presets/presets/amenity/place_of_worship/sikh.json deleted file mode 100644 index d2f1f6a5c4..0000000000 --- a/data/presets/presets/amenity/place_of_worship/sikh.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-sikhism", - "fields": [ - "name", - "religion", - "denomination", - "{amenity/place_of_worship}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "gurudwara", - "temple" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "sikh" - }, - "reference": { - "key": "amenity", - "value": "place_of_worship" - }, - "name": "Sikh Temple" -} diff --git a/data/presets/presets/amenity/place_of_worship/taoist.json b/data/presets/presets/amenity/place_of_worship/taoist.json deleted file mode 100644 index d4bd40e9a4..0000000000 --- a/data/presets/presets/amenity/place_of_worship/taoist.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-taoism", - "fields": [ - "name", - "religion", - "denomination", - "{amenity/place_of_worship}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "daoist", - "monastery", - "temple" - ], - "tags": { - "amenity": "place_of_worship", - "religion": "taoist" - }, - "reference": { - "key": "amenity", - "value": "place_of_worship" - }, - "name": "Taoist Temple" -} diff --git a/data/presets/presets/amenity/planetarium.json b/data/presets/presets/amenity/planetarium.json deleted file mode 100644 index b81f0c6c0a..0000000000 --- a/data/presets/presets/amenity/planetarium.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "maki-globe", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "air_conditioning", - "charge_fee", - "email", - "fax", - "fee", - "gnis/feature_id", - "payment_multi_fee", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "museum", - "astronomy", - "observatory" - ], - "tags": { - "amenity": "planetarium" - }, - "name": "Planetarium" -} diff --git a/data/presets/presets/amenity/police.json b/data/presets/presets/amenity/police.json deleted file mode 100644 index 6ad95c65e1..0000000000 --- a/data/presets/presets/amenity/police.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "temaki-police_officer", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "phone", - "polling_station", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "badge", - "constable", - "constabulary", - "cop", - "detective", - "fed", - "law", - "enforcement", - "officer", - "patrol" - ], - "tags": { - "amenity": "police" - }, - "name": "Police" -} diff --git a/data/presets/presets/amenity/polling_station.json b/data/presets/presets/amenity/polling_station.json deleted file mode 100644 index b9f13c4a80..0000000000 --- a/data/presets/presets/amenity/polling_station.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "icon": "fas-vote-yea", - "fields": [ - "name", - "ref", - "operator", - "address", - "opening_hours", - "opening_hours/covid19", - "building_area" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "ballot box", - "ballot drop", - "democracy", - "elections", - "polling place", - "vote", - "voting booth", - "voting machine" - ], - "tags": { - "amenity": "polling_station" - }, - "addTags": { - "amenity": "polling_station", - "polling_station": "yes" - }, - "name": "Permanent Polling Place" -} diff --git a/data/presets/presets/amenity/post_box.json b/data/presets/presets/amenity/post_box.json deleted file mode 100644 index abd81baf7f..0000000000 --- a/data/presets/presets/amenity/post_box.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "icon": "temaki-post_box", - "fields": [ - "operator", - "collection_times", - "drive_through", - "ref" - ], - "moreFields": [ - "access_simple", - "brand", - "colour", - "covered", - "gnis/feature_id", - "height", - "indoor", - "level", - "manufacturer", - "material", - "support", - "wheelchair" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "amenity": "post_box" - }, - "terms": [ - "drop box", - "dropbox", - "letter drop", - "mail box", - "mail collection box", - "mail drop", - "mail dropoff", - "mailbox", - "package drop", - "pillar box", - "pillarbox", - "post box", - "postal box", - "postbox" - ], - "name": "Mail Drop Box" -} diff --git a/data/presets/presets/amenity/post_depot.json b/data/presets/presets/amenity/post_depot.json deleted file mode 100644 index 9c2a99d8fe..0000000000 --- a/data/presets/presets/amenity/post_depot.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "fas-mail-bulk", - "fields": [ - "name", - "operator", - "address", - "building_area", - "phone" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "opening_hours", - "opening_hours/covid19", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "mail processing and distribution center", - "post depot" - ], - "tags": { - "amenity": "post_depot" - }, - "name": "Post Sorting Office" -} diff --git a/data/presets/presets/amenity/post_office.json b/data/presets/presets/amenity/post_office.json deleted file mode 100644 index d0c36b1fd2..0000000000 --- a/data/presets/presets/amenity/post_office.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "maki-post", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "brand", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "payment_multi", - "phone", - "polling_station", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "letter", - "mail" - ], - "tags": { - "amenity": "post_office" - }, - "name": "Post Office" -} diff --git a/data/presets/presets/amenity/prep_school.json b/data/presets/presets/amenity/prep_school.json deleted file mode 100644 index 6ec61acaec..0000000000 --- a/data/presets/presets/amenity/prep_school.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-school", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "academic", - "ACT", - "SAT", - "homework", - "math", - "reading", - "test prep", - "tutoring", - "writing" - ], - "tags": { - "amenity": "prep_school" - }, - "name": "Test Prep / Tutoring School" -} diff --git a/data/presets/presets/amenity/prison.json b/data/presets/presets/amenity/prison.json deleted file mode 100644 index 8a838c9da5..0000000000 --- a/data/presets/presets/amenity/prison.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-prison", - "fields": [ - "name", - "operator", - "operator/type", - "address" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "cell", - "jail", - "correction" - ], - "tags": { - "amenity": "prison" - }, - "name": "Prison Grounds" -} diff --git a/data/presets/presets/amenity/pub.json b/data/presets/presets/amenity/pub.json deleted file mode 100644 index e0981b4d1b..0000000000 --- a/data/presets/presets/amenity/pub.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "icon": "maki-beer", - "fields": [ - "name", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "smoking", - "brewery" - ], - "moreFields": [ - "air_conditioning", - "cuisine", - "diet_multi", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "microbrewery", - "min_age", - "outdoor_seating", - "payment_multi", - "phone", - "ref/vatin", - "real_fire", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "pub" - }, - "terms": [ - "alcohol", - "drink", - "dive", - "beer", - "bier", - "booze" - ], - "name": "Pub" -} diff --git a/data/presets/presets/amenity/pub/irish.json b/data/presets/presets/amenity/pub/irish.json deleted file mode 100644 index 583da2a61d..0000000000 --- a/data/presets/presets/amenity/pub/irish.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "Irish Pub", - "icon": "maki-beer", - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "pub", - "theme": "irish" - }, - "reference": { - "key": "theme", - "value": "irish" - }, - "terms": [ - "irish pub", - "irish bar" - ], - "notCountryCodes": ["ie"] -} diff --git a/data/presets/presets/amenity/pub/lgbtq.json b/data/presets/presets/amenity/pub/lgbtq.json deleted file mode 100644 index f8c3b9f82f..0000000000 --- a/data/presets/presets/amenity/pub/lgbtq.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-beer", - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "pub", - "lgbtq": "primary" - }, - "terms": [ - "gay pub", - "lesbian pub", - "lgbtq pub", - "lgbt pub", - "lgb pub" - ], - "name": "LGBTQ+ Pub" -} diff --git a/data/presets/presets/amenity/pub/microbrewery.json b/data/presets/presets/amenity/pub/microbrewery.json deleted file mode 100644 index d02868d3d1..0000000000 --- a/data/presets/presets/amenity/pub/microbrewery.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-beer", - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "pub", - "microbrewery": "yes" - }, - "reference": { - "key": "microbrewery" - }, - "terms": [ - "alcohol", - "drink", - "dive", - "beer", - "bier", - "booze", - "craft brewery", - "microbrewery", - "small batch brewery" - ], - "name": "Brewpub" -} diff --git a/data/presets/presets/amenity/public_bath.json b/data/presets/presets/amenity/public_bath.json deleted file mode 100644 index 633db2ed4a..0000000000 --- a/data/presets/presets/amenity/public_bath.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "bath/type", - "bath/open_air", - "bath/sand_bath", - "address", - "building_area", - "fee", - "charge_fee" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "opening_hours", - "opening_hours/covid19", - "payment_multi_fee", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "public_bath" - }, - "terms": [ - "onsen", - "foot bath", - "hot springs" - ], - "name": "Public Bath" -} diff --git a/data/presets/presets/amenity/public_bookcase.json b/data/presets/presets/amenity/public_bookcase.json deleted file mode 100644 index afa3c691c9..0000000000 --- a/data/presets/presets/amenity/public_bookcase.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "maki-library", - "fields": [ - "name", - "public_bookcase/type", - "operator", - "opening_hours", - "opening_hours/covid19", - "capacity", - "website", - "lit" - ], - "moreFields": [ - "access_simple", - "address", - "brand", - "covered", - "email", - "indoor", - "level", - "location", - "phone", - "ref", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "library", - "bookcrossing" - ], - "tags": { - "amenity": "public_bookcase" - }, - "name": "Public Bookcase" -} diff --git a/data/presets/presets/amenity/ranger_station.json b/data/presets/presets/amenity/ranger_station.json deleted file mode 100644 index 750dcb4f9e..0000000000 --- a/data/presets/presets/amenity/ranger_station.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "maki-ranger-station", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "visitor center", - "visitor centre", - "permit center", - "permit centre", - "backcountry office", - "warden office", - "warden center" - ], - "tags": { - "amenity": "ranger_station" - }, - "name": "Ranger Station" -} diff --git a/data/presets/presets/amenity/recycling/container/electrical_items.json b/data/presets/presets/amenity/recycling/container/electrical_items.json deleted file mode 100644 index 9cfd70ff2b..0000000000 --- a/data/presets/presets/amenity/recycling/container/electrical_items.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-recycling", - "fields": [ - "{amenity/recycling_container}" - ], - "moreFields": [ - "{amenity/recycling_container}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "computers", - "electronic waste", - "electronics recycling", - "ewaste bin", - "phones", - "tablets" - ], - "tags": { - "amenity": "recycling", - "recycling_type": "container", - "recycling:electrical_items": "yes" - }, - "reference": { - "key": "recycling:electrical_items", - "value": "yes" - }, - "name": "E-Waste Container" -} diff --git a/data/presets/presets/amenity/recycling/container/green_waste.json b/data/presets/presets/amenity/recycling/container/green_waste.json deleted file mode 100644 index 02f591668f..0000000000 --- a/data/presets/presets/amenity/recycling/container/green_waste.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "maki-recycling", - "fields": [ - "{amenity/recycling_container}" - ], - "moreFields": [ - "{amenity/recycling_container}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "biodegradable", - "biological", - "compost", - "decomposable", - "garbage bin", - "garden waste", - "organic", - "rubbish", - "food scrap" - ], - "tags": { - "amenity": "recycling", - "recycling_type": "container", - "recycling:green_waste": "yes" - }, - "reference": { - "key": "recycling:green_waste", - "value": "yes" - }, - "name": "Green Waste Container" -} diff --git a/data/presets/presets/amenity/recycling_centre.json b/data/presets/presets/amenity/recycling_centre.json deleted file mode 100644 index 0c7277f3a9..0000000000 --- a/data/presets/presets/amenity/recycling_centre.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "icon": "maki-recycling", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "building", - "opening_hours", - "opening_hours/covid19", - "recycling_accepts" - ], - "moreFields": [ - "charge_fee", - "email", - "fax", - "fee", - "payment_multi_fee", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bottle", - "can", - "dump", - "glass", - "garbage", - "rubbish", - "scrap", - "trash" - ], - "tags": { - "amenity": "recycling", - "recycling_type": "centre" - }, - "reference": { - "key": "recycling_type", - "value": "*" - }, - "name": "Recycling Center" -} diff --git a/data/presets/presets/amenity/recycling_container.json b/data/presets/presets/amenity/recycling_container.json deleted file mode 100644 index 7b787eeab5..0000000000 --- a/data/presets/presets/amenity/recycling_container.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "maki-recycling", - "fields": [ - "operator", - "recycling_accepts", - "opening_hours", - "opening_hours/covid19", - "collection_times" - ], - "moreFields": [ - "colour", - "covered", - "indoor", - "level", - "manufacturer", - "material", - "ref" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bin", - "can", - "bottle", - "glass", - "garbage", - "rubbish", - "scrap", - "trash" - ], - "tags": { - "amenity": "recycling", - "recycling_type": "container" - }, - "reference": { - "key": "amenity", - "value": "recycling" - }, - "name": "Recycling Container" -} diff --git a/data/presets/presets/amenity/refugee_site.json b/data/presets/presets/amenity/refugee_site.json deleted file mode 100644 index 49eab1a262..0000000000 --- a/data/presets/presets/amenity/refugee_site.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-tents", - "fields": [ - "name", - "operator", - "operator/type", - "informal", - "start_date", - "capacity", - "population" - ], - "moreFields": [ - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "refugee_site" - }, - "terms": [ - "displaced people", - "evacuees", - "migrants", - "ngo", - "refugee site" - ], - "name": "Refugee Camp" -} diff --git a/data/presets/presets/amenity/research_institute.json b/data/presets/presets/amenity/research_institute.json deleted file mode 100644 index 057058e604..0000000000 --- a/data/presets/presets/amenity/research_institute.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "fas-flask", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "website", - "internet_access", - "internet_access/fee" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access/ssid", - "phone", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "applied research", - "experimentation", - "r&d", - "r & d", - "r and d", - "research and development", - "research institution", - "research laboratory", - "research labs" - ], - "tags": { - "amenity": "research_institute" - }, - "name": "Research Institute Grounds" -} diff --git a/data/presets/presets/amenity/restaurant.json b/data/presets/presets/amenity/restaurant.json deleted file mode 100644 index 3eb8a1a5bb..0000000000 --- a/data/presets/presets/amenity/restaurant.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "icon": "maki-restaurant", - "fields": [ - "name", - "cuisine", - "diet_multi", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "phone", - "website" - ], - "moreFields": [ - "air_conditioning", - "bar", - "brand", - "brewery", - "capacity", - "delivery", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "microbrewery", - "min_age", - "not/name", - "outdoor_seating", - "ref/vatin", - "reservation", - "smoking", - "stars", - "takeaway", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "coffee", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant" - }, - "name": "Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/american.json b/data/presets/presets/amenity/restaurant/american.json deleted file mode 100644 index c77afead90..0000000000 --- a/data/presets/presets/amenity/restaurant/american.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "maki-restaurant", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "coffee", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "american" - }, - "reference": { - "key": "cuisine", - "value": "american" - }, - "name": "American Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/asian.json b/data/presets/presets/amenity/restaurant/asian.json deleted file mode 100644 index 844b1e872f..0000000000 --- a/data/presets/presets/amenity/restaurant/asian.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-restaurant-noodle", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "asian" - }, - "reference": { - "key": "cuisine", - "value": "asian" - }, - "name": "Asian Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/chinese.json b/data/presets/presets/amenity/restaurant/chinese.json deleted file mode 100644 index 34d3de18b2..0000000000 --- a/data/presets/presets/amenity/restaurant/chinese.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-restaurant-noodle", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "chinese" - }, - "reference": { - "key": "cuisine", - "value": "chinese" - }, - "name": "Chinese Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/french.json b/data/presets/presets/amenity/restaurant/french.json deleted file mode 100644 index a036ef016b..0000000000 --- a/data/presets/presets/amenity/restaurant/french.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-restaurant", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "french" - }, - "reference": { - "key": "cuisine", - "value": "french" - }, - "name": "French Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/german.json b/data/presets/presets/amenity/restaurant/german.json deleted file mode 100644 index 098b7ddd91..0000000000 --- a/data/presets/presets/amenity/restaurant/german.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-restaurant", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "german" - }, - "reference": { - "key": "cuisine", - "value": "german" - }, - "name": "German Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/greek.json b/data/presets/presets/amenity/restaurant/greek.json deleted file mode 100644 index b961bd4450..0000000000 --- a/data/presets/presets/amenity/restaurant/greek.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "maki-restaurant", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table", - "gyros", - "pitas", - "olives" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "greek" - }, - "reference": { - "key": "cuisine", - "value": "greek" - }, - "name": "Greek Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/indian.json b/data/presets/presets/amenity/restaurant/indian.json deleted file mode 100644 index 5dc8b4b840..0000000000 --- a/data/presets/presets/amenity/restaurant/indian.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "maki-restaurant", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table", - "curry" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "indian" - }, - "reference": { - "key": "cuisine", - "value": "indian" - }, - "name": "Indian Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/italian.json b/data/presets/presets/amenity/restaurant/italian.json deleted file mode 100644 index 6cf56079ed..0000000000 --- a/data/presets/presets/amenity/restaurant/italian.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-restaurant", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table", - "pasta", - "pizza" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "italian" - }, - "reference": { - "key": "cuisine", - "value": "italian" - }, - "name": "Italian Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/japanese.json b/data/presets/presets/amenity/restaurant/japanese.json deleted file mode 100644 index 932e36b6a3..0000000000 --- a/data/presets/presets/amenity/restaurant/japanese.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-restaurant-noodle", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "japanese" - }, - "reference": { - "key": "cuisine", - "value": "japanese" - }, - "name": "Japanese Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/mexican.json b/data/presets/presets/amenity/restaurant/mexican.json deleted file mode 100644 index aa8d3441ab..0000000000 --- a/data/presets/presets/amenity/restaurant/mexican.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "fas-pepper-hot", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table", - "tacos", - "burritos", - "enchiladas", - "fajitas", - "nachos", - "tortillas", - "salsa", - "tamales", - "quesadillas" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "mexican" - }, - "reference": { - "key": "cuisine", - "value": "mexican" - }, - "name": "Mexican Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/noodle.json b/data/presets/presets/amenity/restaurant/noodle.json deleted file mode 100644 index 8fdf8238c7..0000000000 --- a/data/presets/presets/amenity/restaurant/noodle.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "maki-restaurant-noodle", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table", - "ramen noodles", - "soup", - "soba noodles", - "cellophane noodles", - "rice noodles" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "noodle" - }, - "reference": { - "key": "cuisine", - "value": "noodle" - }, - "name": "Noodle Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/pizza.json b/data/presets/presets/amenity/restaurant/pizza.json deleted file mode 100644 index 14efffe166..0000000000 --- a/data/presets/presets/amenity/restaurant/pizza.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "maki-restaurant-pizza", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "lunch", - "table", - "deep dish", - "thin crust", - "slice" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "pizza" - }, - "reference": { - "key": "cuisine", - "value": "pizza" - }, - "name": "Pizza Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/seafood.json b/data/presets/presets/amenity/restaurant/seafood.json deleted file mode 100644 index 2c84a23d2c..0000000000 --- a/data/presets/presets/amenity/restaurant/seafood.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "maki-restaurant-seafood", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table", - "fish", - "shellfish", - "molluscs", - "crustaceans", - "clams", - "oysters", - "lobsters", - "crab", - "shrimp", - "squid", - "octopus" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "seafood" - }, - "reference": { - "key": "cuisine", - "value": "seafood" - }, - "name": "Seafood Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/steakhouse.json b/data/presets/presets/amenity/restaurant/steakhouse.json deleted file mode 100644 index 77d8ebe398..0000000000 --- a/data/presets/presets/amenity/restaurant/steakhouse.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "maki-slaughterhouse", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table", - "steak house", - "chop house", - "beef" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "steak_house" - }, - "reference": { - "key": "cuisine", - "value": "steak_house" - }, - "name": "Steakhouse" -} diff --git a/data/presets/presets/amenity/restaurant/sushi.json b/data/presets/presets/amenity/restaurant/sushi.json deleted file mode 100644 index 1797fd31da..0000000000 --- a/data/presets/presets/amenity/restaurant/sushi.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-temaki", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "sushi" - }, - "reference": { - "key": "cuisine", - "value": "sushi" - }, - "name": "Sushi Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/thai.json b/data/presets/presets/amenity/restaurant/thai.json deleted file mode 100644 index dfb30dbb58..0000000000 --- a/data/presets/presets/amenity/restaurant/thai.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-restaurant-noodle", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "thai" - }, - "reference": { - "key": "cuisine", - "value": "thai" - }, - "name": "Thai Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/turkish.json b/data/presets/presets/amenity/restaurant/turkish.json deleted file mode 100644 index 2badc96fab..0000000000 --- a/data/presets/presets/amenity/restaurant/turkish.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-restaurant", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "turkish" - }, - "reference": { - "key": "cuisine", - "value": "turkish" - }, - "name": "Turkish Restaurant" -} diff --git a/data/presets/presets/amenity/restaurant/vietnamese.json b/data/presets/presets/amenity/restaurant/vietnamese.json deleted file mode 100644 index a92cb585d5..0000000000 --- a/data/presets/presets/amenity/restaurant/vietnamese.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-restaurant-noodle", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bar", - "breakfast", - "cafe", - "café", - "canteen", - "dine", - "dining", - "dinner", - "drive-in", - "eat", - "grill", - "lunch", - "table" - ], - "tags": { - "amenity": "restaurant", - "cuisine": "vietnamese" - }, - "reference": { - "key": "cuisine", - "value": "vietnamese" - }, - "name": "Vietnamese Restaurant" -} diff --git a/data/presets/presets/amenity/sanitary_dump_station.json b/data/presets/presets/amenity/sanitary_dump_station.json deleted file mode 100644 index f8b041a1c6..0000000000 --- a/data/presets/presets/amenity/sanitary_dump_station.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "temaki-camper_trailer_dump", - "fields": [ - "operator", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "water_point" - ], - "moreFields": [ - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "Motor Home", - "Camper", - "Sanitary", - "Dump Station", - "Elsan", - "CDP", - "CTDP", - "Chemical Toilet" - ], - "tags": { - "amenity": "sanitary_dump_station" - }, - "name": "RV Toilet Disposal" -} diff --git a/data/presets/presets/amenity/school.json b/data/presets/presets/amenity/school.json deleted file mode 100644 index 40561b9e5f..0000000000 --- a/data/presets/presets/amenity/school.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-school", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "grades", - "religion", - "denomination", - "website" - ], - "moreFields": [ - "charge_fee", - "email", - "fax", - "fee", - "gnis/feature_id", - "internet_access", - "internet_access/ssid", - "level", - "phone", - "polling_station", - "wheelchair" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "academy", - "elementary school", - "middle school", - "high school" - ], - "tags": { - "amenity": "school" - }, - "name": "School Grounds" -} diff --git a/data/presets/presets/amenity/shelter.json b/data/presets/presets/amenity/shelter.json deleted file mode 100644 index 85ce960e4e..0000000000 --- a/data/presets/presets/amenity/shelter.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-shelter", - "fields": [ - "name", - "operator", - "shelter_type", - "building_area", - "bench", - "bin" - ], - "moreFields": [ - "gnis/feature_id", - "lit", - "lockable", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "lean-to", - "gazebo", - "picnic" - ], - "tags": { - "amenity": "shelter" - }, - "name": "Shelter" -} diff --git a/data/presets/presets/amenity/shelter/gazebo.json b/data/presets/presets/amenity/shelter/gazebo.json deleted file mode 100644 index 72a57ff9d1..0000000000 --- a/data/presets/presets/amenity/shelter/gazebo.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-shelter", - "fields": [ - "name", - "building_area", - "bench", - "lit" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "shelter", - "shelter_type": "gazebo" - }, - "name": "Gazebo" -} diff --git a/data/presets/presets/amenity/shelter/lean_to.json b/data/presets/presets/amenity/shelter/lean_to.json deleted file mode 100644 index 8ee4c5a48b..0000000000 --- a/data/presets/presets/amenity/shelter/lean_to.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-sleep_shelter", - "fields": [ - "name", - "operator", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "shelter", - "shelter_type": "lean_to" - }, - "terms": [ - "alpine hut", - "cabin", - "leanto", - "lodging", - "overnight accommodations", - "sleeping shelter", - "wilderness hut" - ], - "name": "Lean-To" -} diff --git a/data/presets/presets/amenity/shelter/picnic_shelter.json b/data/presets/presets/amenity/shelter/picnic_shelter.json deleted file mode 100644 index 6938f6cd32..0000000000 --- a/data/presets/presets/amenity/shelter/picnic_shelter.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-picnic_shelter", - "fields": [ - "name", - "operator", - "building_area", - "lit", - "bin" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "shelter", - "shelter_type": "picnic_shelter" - }, - "reference": { - "key": "shelter_type", - "value": "picnic_shelter" - }, - "terms": [ - "pavilion" - ], - "name": "Picnic Shelter" -} diff --git a/data/presets/presets/amenity/shelter/public_transport.json b/data/presets/presets/amenity/shelter/public_transport.json deleted file mode 100644 index b21707623e..0000000000 --- a/data/presets/presets/amenity/shelter/public_transport.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "temaki-transit_shelter", - "fields": [ - "name", - "operator", - "building_area", - "bench", - "lit", - "bin" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bus stop", - "metro stop", - "public transit shelter", - "public transport shelter", - "tram stop shelter", - "waiting" - ], - "tags": { - "amenity": "shelter", - "shelter_type": "public_transport" - }, - "reference": { - "key": "shelter_type", - "value": "public_transport" - }, - "name": "Transit Shelter" -} diff --git a/data/presets/presets/amenity/shower.json b/data/presets/presets/amenity/shower.json deleted file mode 100644 index db5d14c4d7..0000000000 --- a/data/presets/presets/amenity/shower.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-shower", - "fields": [ - "opening_hours", - "opening_hours/covid19", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "supervised", - "building_area", - "hot_water", - "wheelchair" - ], - "moreFields": [ - "address", - "gender", - "level", - "operator" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "rain closet" - ], - "tags": { - "amenity": "shower" - }, - "name": "Shower" -} diff --git a/data/presets/presets/amenity/smoking_area.json b/data/presets/presets/amenity/smoking_area.json deleted file mode 100644 index 5a281981c3..0000000000 --- a/data/presets/presets/amenity/smoking_area.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "fas-smoking", - "fields": [ - "name", - "shelter", - "bin", - "bench", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "covered", - "level", - "lit", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [], - "tags": { - "amenity": "smoking_area" - }, - "name": "Smoking Area" -} diff --git a/data/presets/presets/amenity/social_centre.json b/data/presets/presets/amenity/social_centre.json deleted file mode 100644 index 2f372e09b1..0000000000 --- a/data/presets/presets/amenity/social_centre.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "icon": "fas-handshake", - "fields": [ - "name", - "brand", - "operator", - "operator/type", - "address", - "building_area" - ], - "moreFields": [ - "air_conditioning", - "baby_feeding", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "phone", - "polling_station", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "event", - "fraternal", - "fraternity", - "hall", - "organization", - "professional", - "society", - "sorority", - "union", - "vetern" - ], - "tags": { - "amenity": "social_centre" - }, - "name": "Social Center" -} diff --git a/data/presets/presets/amenity/social_facility.json b/data/presets/presets/amenity/social_facility.json deleted file mode 100644 index 6604bc1a67..0000000000 --- a/data/presets/presets/amenity/social_facility.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "temaki-social_facility", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "building_area", - "social_facility", - "social_facility_for" - ], - "moreFields": [ - "baby_feeding", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "opening_hours", - "opening_hours/covid19", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "social_facility" - }, - "name": "Social Facility" -} diff --git a/data/presets/presets/amenity/social_facility/ambulatory_care.json b/data/presets/presets/amenity/social_facility/ambulatory_care.json deleted file mode 100644 index afd0782cc0..0000000000 --- a/data/presets/presets/amenity/social_facility/ambulatory_care.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-wheelchair", - "geometry": [ - "point", - "area" - ], - "tags": { - "amenity": "social_facility", - "social_facility": "ambulatory_care" - }, - "reference": { - "key": "social_facility", - "value": "ambulatory_care" - }, - "name": "Ambulatory Care" -} diff --git a/data/presets/presets/amenity/social_facility/food_bank.json b/data/presets/presets/amenity/social_facility/food_bank.json deleted file mode 100644 index e1da923242..0000000000 --- a/data/presets/presets/amenity/social_facility/food_bank.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-social_facility", - "geometry": [ - "point", - "area" - ], - "terms": [], - "tags": { - "amenity": "social_facility", - "social_facility": "food_bank" - }, - "reference": { - "key": "social_facility", - "value": "food_bank" - }, - "name": "Food Bank" -} diff --git a/data/presets/presets/amenity/social_facility/group_home.json b/data/presets/presets/amenity/social_facility/group_home.json deleted file mode 100644 index ae16ca82c5..0000000000 --- a/data/presets/presets/amenity/social_facility/group_home.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-wheelchair", - "fields": [ - "{amenity/social_facility}", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "old", - "senior", - "living", - "care home", - "assisted living" - ], - "tags": { - "amenity": "social_facility", - "social_facility": "group_home", - "social_facility:for": "senior" - }, - "reference": { - "key": "social_facility", - "value": "group_home" - }, - "name": "Elderly Group Home" -} diff --git a/data/presets/presets/amenity/social_facility/homeless_shelter.json b/data/presets/presets/amenity/social_facility/homeless_shelter.json deleted file mode 100644 index 6640e61c1f..0000000000 --- a/data/presets/presets/amenity/social_facility/homeless_shelter.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-social_facility", - "geometry": [ - "point", - "area" - ], - "terms": [ - "houseless", - "unhoused", - "displaced" - ], - "tags": { - "amenity": "social_facility", - "social_facility": "shelter", - "social_facility:for": "homeless" - }, - "reference": { - "key": "social_facility", - "value": "shelter" - }, - "name": "Homeless Shelter" -} diff --git a/data/presets/presets/amenity/social_facility/nursing_home.json b/data/presets/presets/amenity/social_facility/nursing_home.json deleted file mode 100644 index f837796e26..0000000000 --- a/data/presets/presets/amenity/social_facility/nursing_home.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "maki-wheelchair", - "fields": [ - "{amenity/social_facility}", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "elderly", - "living", - "nursing", - "old", - "senior", - "assisted living" - ], - "tags": { - "amenity": "social_facility", - "social_facility": "nursing_home", - "social_facility:for": "senior" - }, - "reference": { - "key": "social_facility", - "value": "nursing_home" - }, - "name": "Nursing Home" -} diff --git a/data/presets/presets/amenity/studio.json b/data/presets/presets/amenity/studio.json deleted file mode 100644 index 771a0f5e39..0000000000 --- a/data/presets/presets/amenity/studio.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "fas-microphone", - "fields": [ - "name", - "studio", - "address", - "building_area", - "website" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "phone", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "recording", - "radio", - "television" - ], - "tags": { - "amenity": "studio" - }, - "name": "Studio" -} diff --git a/data/presets/presets/amenity/studio/audio.json b/data/presets/presets/amenity/studio/audio.json deleted file mode 100644 index 23e1fc4526..0000000000 --- a/data/presets/presets/amenity/studio/audio.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "fas-microphone", - "geometry": [ - "point", - "area" - ], - "terms": [ - "audio mixing", - "audio production", - "audio recording", - "audio studio" - ], - "tags": { - "amenity": "studio", - "studio": "audio" - }, - "reference": { - "key": "studio", - "value": "audio" - }, - "name": "Recording Studio" -} diff --git a/data/presets/presets/amenity/studio/radio.json b/data/presets/presets/amenity/studio/radio.json deleted file mode 100644 index b7ed657e7c..0000000000 --- a/data/presets/presets/amenity/studio/radio.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "fas-microphone", - "geometry": [ - "point", - "area" - ], - "terms": [ - "am radio", - "fm radio", - "radio broadcast", - "radio studio" - ], - "tags": { - "amenity": "studio", - "studio": "radio" - }, - "reference": { - "key": "studio", - "value": "radio" - }, - "name": "Radio Station" -} diff --git a/data/presets/presets/amenity/studio/television.json b/data/presets/presets/amenity/studio/television.json deleted file mode 100644 index 9a79255a16..0000000000 --- a/data/presets/presets/amenity/studio/television.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "fas-video", - "geometry": [ - "point", - "area" - ], - "terms": [ - "television broadcast", - "television studio", - "tv broadcast", - "tv station", - "tv studio" - ], - "tags": { - "amenity": "studio", - "studio": "television" - }, - "reference": { - "key": "studio", - "value": "television" - }, - "name": "Television Station" -} diff --git a/data/presets/presets/amenity/studio/video.json b/data/presets/presets/amenity/studio/video.json deleted file mode 100644 index 3e2fa9e1a8..0000000000 --- a/data/presets/presets/amenity/studio/video.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "fas-video", - "geometry": [ - "point", - "area" - ], - "terms": [ - "movie production", - "movie studio", - "video production", - "video recording", - "video studio" - ], - "tags": { - "amenity": "studio", - "studio": "video" - }, - "reference": { - "key": "studio", - "value": "video" - }, - "name": "Film Studio" -} diff --git a/data/presets/presets/amenity/taxi.json b/data/presets/presets/amenity/taxi.json deleted file mode 100644 index 03fe6ddfa5..0000000000 --- a/data/presets/presets/amenity/taxi.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "fas-taxi", - "fields": [ - "name", - "operator", - "capacity", - "address" - ], - "moreFields": [ - "access_simple", - "brand", - "opening_hours", - "opening_hours/covid19", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "cab" - ], - "tags": { - "amenity": "taxi" - }, - "name": "Taxi Stand" -} diff --git a/data/presets/presets/amenity/telephone.json b/data/presets/presets/amenity/telephone.json deleted file mode 100644 index 5ab757d7c6..0000000000 --- a/data/presets/presets/amenity/telephone.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "fas-phone-alt", - "fields": [ - "operator", - "phone", - "fee", - "payment_multi_fee", - "charge_fee", - "booth" - ], - "moreFields": [ - "covered", - "indoor", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "lit", - "ref", - "sms", - "video_calls", - "wheelchair" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "amenity": "telephone" - }, - "terms": [ - "phone" - ], - "name": "Telephone" -} diff --git a/data/presets/presets/amenity/theatre.json b/data/presets/presets/amenity/theatre.json deleted file mode 100644 index 7fca849b8f..0000000000 --- a/data/presets/presets/amenity/theatre.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "maki-theatre", - "fields": [ - "name", - "operator", - "address", - "building_area", - "website" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "min_age", - "payment_multi", - "phone", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theatre", - "performance", - "play", - "musical" - ], - "tags": { - "amenity": "theatre" - }, - "name": "Theater" -} diff --git a/data/presets/presets/amenity/theatre/type/amphi.json b/data/presets/presets/amenity/theatre/type/amphi.json deleted file mode 100644 index d1d6b17099..0000000000 --- a/data/presets/presets/amenity/theatre/type/amphi.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-theatre", - "fields": [ - "name", - "operator", - "address", - "lit" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "open air", - "outdoor", - "greek", - "ampi" - ], - "tags": { - "amenity": "theatre", - "theatre:type": "amphi" - }, - "name": "Amphitheatre" -} diff --git a/data/presets/presets/amenity/toilets.json b/data/presets/presets/amenity/toilets.json deleted file mode 100644 index fefd760e52..0000000000 --- a/data/presets/presets/amenity/toilets.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "icon": "maki-toilet", - "fields": [ - "toilets/disposal", - "access_simple", - "gender", - "changing_table", - "wheelchair", - "building_area" - ], - "moreFields": [ - "charge_fee", - "fee", - "level", - "opening_hours", - "opening_hours/covid19", - "operator", - "payment_multi_fee", - "portable", - "toilets/handwashing", - "toilets/position" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "bathroom", - "restroom", - "outhouse", - "privy", - "head", - "lavatory", - "latrine", - "water closet", - "WC", - "W.C." - ], - "tags": { - "amenity": "toilets" - }, - "name": "Toilets" -} diff --git a/data/presets/presets/amenity/toilets/disposal/flush.json b/data/presets/presets/amenity/toilets/disposal/flush.json deleted file mode 100644 index f681e9e958..0000000000 --- a/data/presets/presets/amenity/toilets/disposal/flush.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "fas-toilet", - "fields": [ - "toilets/disposal", - "{amenity/toilets}" - ], - "moreFields": [ - "{amenity/toilets}" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "bathroom", - "head", - "lavatory", - "privy", - "restroom", - "water closet", - "WC", - "W.C." - ], - "tags": { - "amenity": "toilets", - "toilets:disposal": "flush" - }, - "reference": { - "key": "toilets:disposal", - "value": "flush" - }, - "name": "Flush Toilets" -} diff --git a/data/presets/presets/amenity/toilets/disposal/pitlatrine.json b/data/presets/presets/amenity/toilets/disposal/pitlatrine.json deleted file mode 100644 index eaa6349974..0000000000 --- a/data/presets/presets/amenity/toilets/disposal/pitlatrine.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-latrine", - "fields": [ - "toilets/disposal", - "{amenity/toilets}", - "toilets/handwashing" - ], - "moreFields": [ - "{amenity/toilets}" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "head", - "lavatory", - "long drop", - "outhouse", - "pit toilet", - "privy" - ], - "tags": { - "amenity": "toilets", - "toilets:disposal": "pitlatrine" - }, - "reference": { - "key": "toilets:disposal", - "value": "pitlatrine" - }, - "name": "Pit Latrine" -} diff --git a/data/presets/presets/amenity/toilets/portable.json b/data/presets/presets/amenity/toilets/portable.json deleted file mode 100644 index 2d892bd313..0000000000 --- a/data/presets/presets/amenity/toilets/portable.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-latrine", - "fields": [ - "toilets/disposal", - "{amenity/toilets}", - "toilets/handwashing" - ], - "moreFields": [ - "{amenity/toilets}" - ], - "geometry": [ - "point", - "area", - "vertex" - ], - "terms": [ - "restroom", - "privy", - "porta john", - "porta potty", - "portapot", - "chemical toilet" - ], - "tags": { - "amenity": "toilets", - "portable": "yes" - }, - "name": "Portable Toilet" -} diff --git a/data/presets/presets/amenity/townhall.json b/data/presets/presets/amenity/townhall.json deleted file mode 100644 index fd549a3f24..0000000000 --- a/data/presets/presets/amenity/townhall.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "temaki-town_hall", - "fields": [ - "name", - "operator", - "townhall/type", - "address", - "building_area" - ], - "moreFields": [ - "baby_feeding", - "email", - "fax", - "gnis/feature_id", - "phone", - "polling_station", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "village", - "city", - "government", - "courthouse", - "municipal" - ], - "tags": { - "amenity": "townhall" - }, - "name": "Town Hall" -} diff --git a/data/presets/presets/amenity/townhall/city.json b/data/presets/presets/amenity/townhall/city.json deleted file mode 100644 index b4850722a7..0000000000 --- a/data/presets/presets/amenity/townhall/city.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-capitol", - "geometry": [ - "point", - "area" - ], - "terms": [ - "council", - "courthouse", - "government", - "mayor", - "municipality" - ], - "tags": { - "amenity": "townhall", - "townhall:type": "city" - }, - "reference": { - "key": "townhall:type", - "value": "city" - }, - "name": "City Hall" -} diff --git a/data/presets/presets/amenity/toy_library.json b/data/presets/presets/amenity/toy_library.json deleted file mode 100644 index c08b8de759..0000000000 --- a/data/presets/presets/amenity/toy_library.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "fas-chess-knight", - "fields": [ - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "level", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "game", - "toy" - ], - "tags": { - "amenity": "toy_library" - }, - "name": "Toy Library" -} diff --git a/data/presets/presets/amenity/university.json b/data/presets/presets/amenity/university.json deleted file mode 100644 index 4b71ffdfbd..0000000000 --- a/data/presets/presets/amenity/university.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "maki-college", - "fields": [ - "{amenity/college}" - ], - "moreFields": [ - "{amenity/college}" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "college", - "graduate school", - "PhD program", - "master's degree program" - ], - "tags": { - "amenity": "university" - }, - "name": "University Grounds" -} diff --git a/data/presets/presets/amenity/vacuum_cleaner.json b/data/presets/presets/amenity/vacuum_cleaner.json deleted file mode 100644 index 7a6b633fcf..0000000000 --- a/data/presets/presets/amenity/vacuum_cleaner.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-vacuum_station", - "fields": [ - "operator", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "covered", - "lit" - ], - "moreFields": [ - "brand", - "manufacturer", - "opening_hours", - "ref" - ], - "geometry": [ - "point" - ], - "tags": { - "amenity": "vacuum_cleaner" - }, - "terms": [ - "car vacuum cleaner", - "car wash", - "carvac", - "suction" - ], - "name": "Vacuum Cleaning Station" -} diff --git a/data/presets/presets/amenity/vehicle_inspection.json b/data/presets/presets/amenity/vehicle_inspection.json deleted file mode 100644 index b1b88f3800..0000000000 --- a/data/presets/presets/amenity/vehicle_inspection.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-car", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "car inspection" - ], - "tags": { - "amenity": "vehicle_inspection" - }, - "name": "Vehicle Inspection" -} diff --git a/data/presets/presets/amenity/vending_machine.json b/data/presets/presets/amenity/vending_machine.json deleted file mode 100644 index 8258920ce2..0000000000 --- a/data/presets/presets/amenity/vending_machine.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-vending_machine", - "fields": [ - "vending", - "ref", - "operator", - "payment_multi", - "currency_multi" - ], - "moreFields": [ - "blind", - "brand", - "covered", - "height", - "indoor", - "level", - "manufacturer" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [], - "tags": { - "amenity": "vending_machine" - }, - "matchScore": 0.9, - "name": "Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/bottle_return.json b/data/presets/presets/amenity/vending_machine/bottle_return.json deleted file mode 100644 index 891c4876a5..0000000000 --- a/data/presets/presets/amenity/vending_machine/bottle_return.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-vending_machine", - "fields": [ - "vending", - "operator" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "bottle return" - ], - "tags": { - "amenity": "vending_machine", - "vending": "bottle_return" - }, - "reference": { - "key": "vending", - "value": "bottle_return" - }, - "name": "Bottle Return Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/bread.json b/data/presets/presets/amenity/vending_machine/bread.json deleted file mode 100644 index 9a0ddcb5c5..0000000000 --- a/data/presets/presets/amenity/vending_machine/bread.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-vending_bread", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "baguette", - "bread" - ], - "tags": { - "amenity": "vending_machine", - "vending": "bread" - }, - "reference": { - "key": "vending", - "value": "bread" - }, - "name": "Bread Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/cigarettes.json b/data/presets/presets/amenity/vending_machine/cigarettes.json deleted file mode 100644 index 20952693e6..0000000000 --- a/data/presets/presets/amenity/vending_machine/cigarettes.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-vending_cigarettes", - "moreFields": [ - "{amenity/vending_machine}", - "min_age" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "cigarette" - ], - "tags": { - "amenity": "vending_machine", - "vending": "cigarettes" - }, - "reference": { - "key": "vending", - "value": "cigarettes" - }, - "name": "Cigarette Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/coffee.json b/data/presets/presets/amenity/vending_machine/coffee.json deleted file mode 100644 index 3955b5b174..0000000000 --- a/data/presets/presets/amenity/vending_machine/coffee.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-vending_hot_drink", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "coffee" - ], - "tags": { - "amenity": "vending_machine", - "vending": "coffee" - }, - "reference": { - "key": "vending", - "value": "coffee" - }, - "name": "Coffee Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/condoms.json b/data/presets/presets/amenity/vending_machine/condoms.json deleted file mode 100644 index 093701f5a9..0000000000 --- a/data/presets/presets/amenity/vending_machine/condoms.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-vending_love", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "condom" - ], - "tags": { - "amenity": "vending_machine", - "vending": "condoms" - }, - "reference": { - "key": "vending", - "value": "condoms" - }, - "name": "Condom Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/drinks.json b/data/presets/presets/amenity/vending_machine/drinks.json deleted file mode 100644 index 1eee9a8441..0000000000 --- a/data/presets/presets/amenity/vending_machine/drinks.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-vending_cold_drink", - "fields": [ - "vending", - "drink_multi", - "{amenity/vending_machine}" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "drink", - "soda", - "beverage", - "juice", - "pop" - ], - "tags": { - "amenity": "vending_machine", - "vending": "drinks" - }, - "reference": { - "key": "vending", - "value": "drinks" - }, - "name": "Drink Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/eggs.json b/data/presets/presets/amenity/vending_machine/eggs.json deleted file mode 100644 index 81f0fb0b51..0000000000 --- a/data/presets/presets/amenity/vending_machine/eggs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-vending_eggs", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "egg" - ], - "tags": { - "amenity": "vending_machine", - "vending": "eggs" - }, - "reference": { - "key": "vending", - "value": "eggs" - }, - "name": "Egg Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/electronics.json b/data/presets/presets/amenity/vending_machine/electronics.json deleted file mode 100644 index 57ee39e345..0000000000 --- a/data/presets/presets/amenity/vending_machine/electronics.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-vending_machine", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "cable", - "charger", - "earbud", - "headphone", - "phone", - "tablet" - ], - "tags": { - "amenity": "vending_machine", - "vending": "electronics" - }, - "reference": { - "key": "vending", - "value": "electronics" - }, - "name": "Electronics Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/elongated_coin.json b/data/presets/presets/amenity/vending_machine/elongated_coin.json deleted file mode 100644 index a89afabe38..0000000000 --- a/data/presets/presets/amenity/vending_machine/elongated_coin.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-vending_flat_coin", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "coin", - "crush", - "elongated", - "flatten", - "penny", - "souvenir" - ], - "tags": { - "amenity": "vending_machine", - "vending": "elongated_coin" - }, - "reference": { - "key": "vending", - "value": "elongated_coin" - }, - "name": "Flat Coin Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/excrement_bags.json b/data/presets/presets/amenity/vending_machine/excrement_bags.json deleted file mode 100644 index cf3cfca1b8..0000000000 --- a/data/presets/presets/amenity/vending_machine/excrement_bags.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-vending_pet_waste", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "excrement bags", - "poop", - "waste", - "dog", - "animal" - ], - "tags": { - "amenity": "vending_machine", - "vending": "excrement_bags" - }, - "reference": { - "key": "vending", - "value": "excrement_bags" - }, - "name": "Excrement Bag Dispenser" -} diff --git a/data/presets/presets/amenity/vending_machine/feminine_hygiene.json b/data/presets/presets/amenity/vending_machine/feminine_hygiene.json deleted file mode 100644 index a8652dd805..0000000000 --- a/data/presets/presets/amenity/vending_machine/feminine_hygiene.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-vending_venus", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "condom", - "tampon", - "pad", - "woman", - "women", - "menstrual hygiene products", - "personal care" - ], - "tags": { - "amenity": "vending_machine", - "vending": "feminine_hygiene" - }, - "reference": { - "key": "vending", - "value": "feminine_hygiene" - }, - "name": "Feminine Hygiene Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/food.json b/data/presets/presets/amenity/vending_machine/food.json deleted file mode 100644 index 6e2951bd37..0000000000 --- a/data/presets/presets/amenity/vending_machine/food.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-vending_machine", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "food" - ], - "tags": { - "amenity": "vending_machine", - "vending": "food" - }, - "reference": { - "key": "vending", - "value": "food" - }, - "name": "Food Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/fuel.json b/data/presets/presets/amenity/vending_machine/fuel.json deleted file mode 100644 index 7190b6ad5c..0000000000 --- a/data/presets/presets/amenity/vending_machine/fuel.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-fuel", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "petrol", - "fuel", - "gasoline", - "propane", - "diesel", - "lng", - "cng", - "biodiesel" - ], - "tags": { - "amenity": "vending_machine", - "vending": "fuel" - }, - "reference": { - "key": "vending", - "value": "fuel" - }, - "name": "Gas Pump", - "matchScore": 0.5 -} diff --git a/data/presets/presets/amenity/vending_machine/ice_cream.json b/data/presets/presets/amenity/vending_machine/ice_cream.json deleted file mode 100644 index 8945310659..0000000000 --- a/data/presets/presets/amenity/vending_machine/ice_cream.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-vending_ice_cream", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "chocolate", - "ice cream", - "frozen", - "popsicle", - "vanilla" - ], - "tags": { - "amenity": "vending_machine", - "vending": "ice_cream" - }, - "reference": { - "key": "vending", - "value": "ice_cream" - }, - "name": "Ice Cream Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/ice_cubes.json b/data/presets/presets/amenity/vending_machine/ice_cubes.json deleted file mode 100644 index fbd07355ef..0000000000 --- a/data/presets/presets/amenity/vending_machine/ice_cubes.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-vending_ice", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "cubes", - "ice" - ], - "tags": { - "amenity": "vending_machine", - "vending": "ice_cubes" - }, - "reference": { - "key": "vending", - "value": "ice_cubes" - }, - "name": "Ice Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/newspapers.json b/data/presets/presets/amenity/vending_machine/newspapers.json deleted file mode 100644 index 19cc0788e3..0000000000 --- a/data/presets/presets/amenity/vending_machine/newspapers.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-vending_newspaper", - "fields": [ - "vending", - "ref", - "operator", - "fee", - "payment_multi_fee", - "charge_fee", - "currency_multi" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "newspaper" - ], - "tags": { - "amenity": "vending_machine", - "vending": "newspapers" - }, - "reference": { - "key": "vending", - "value": "newspapers" - }, - "name": "Newspaper Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/parcel_pickup.json b/data/presets/presets/amenity/vending_machine/parcel_pickup.json deleted file mode 100644 index 4f960282ab..0000000000 --- a/data/presets/presets/amenity/vending_machine/parcel_pickup.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-vending_lockers", - "fields": [ - "vending", - "operator" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "amazon", - "locker", - "mail", - "packstation", - "parcel", - "pickup" - ], - "tags": { - "amenity": "vending_machine", - "vending": "parcel_pickup" - }, - "reference": { - "key": "vending", - "value": "parcel_pickup" - }, - "name": "Parcel Pickup Locker" -} diff --git a/data/presets/presets/amenity/vending_machine/parcel_pickup_dropoff.json b/data/presets/presets/amenity/vending_machine/parcel_pickup_dropoff.json deleted file mode 100644 index 98a82ffdb6..0000000000 --- a/data/presets/presets/amenity/vending_machine/parcel_pickup_dropoff.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-vending_lockers", - "fields": [ - "vending", - "operator", - "payment_multi", - "currency_multi" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "mail", - "packstation", - "parcel", - "pickup" - ], - "tags": { - "amenity": "vending_machine", - "vending": "parcel_pickup;parcel_mail_in" - }, - "reference": { - "key": "vending", - "value": "parcel_pickup;parcel_mail_in" - }, - "name": "Parcel Pickup/Dropoff Locker" -} diff --git a/data/presets/presets/amenity/vending_machine/parking_tickets.json b/data/presets/presets/amenity/vending_machine/parking_tickets.json deleted file mode 100644 index c98fcc5e1c..0000000000 --- a/data/presets/presets/amenity/vending_machine/parking_tickets.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-vending_tickets", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "parking", - "ticket" - ], - "tags": { - "amenity": "vending_machine", - "vending": "parking_tickets" - }, - "reference": { - "key": "vending", - "value": "parking_tickets" - }, - "matchScore": 0.94, - "name": "Parking Ticket Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/public_transport_tickets.json b/data/presets/presets/amenity/vending_machine/public_transport_tickets.json deleted file mode 100644 index 330386f7a8..0000000000 --- a/data/presets/presets/amenity/vending_machine/public_transport_tickets.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-vending_tickets", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "bus", - "train", - "ferry", - "rail", - "ticket", - "transportation" - ], - "tags": { - "amenity": "vending_machine", - "vending": "public_transport_tickets" - }, - "reference": { - "key": "vending", - "value": "public_transport_tickets" - }, - "name": "Transit Ticket Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/stamps.json b/data/presets/presets/amenity/vending_machine/stamps.json deleted file mode 100644 index 9256eb3423..0000000000 --- a/data/presets/presets/amenity/vending_machine/stamps.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-vending_stamps", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "mail", - "postage", - "stamp" - ], - "tags": { - "amenity": "vending_machine", - "vending": "stamps" - }, - "reference": { - "key": "vending", - "value": "stamps" - }, - "name": "Postage Vending Machine" -} diff --git a/data/presets/presets/amenity/vending_machine/sweets.json b/data/presets/presets/amenity/vending_machine/sweets.json deleted file mode 100644 index 79dfa66b43..0000000000 --- a/data/presets/presets/amenity/vending_machine/sweets.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-vending_machine", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "candy", - "gum", - "chip", - "pretzel", - "cookie", - "cracker" - ], - "tags": { - "amenity": "vending_machine", - "vending": "sweets" - }, - "reference": { - "key": "vending", - "value": "sweets" - }, - "name": "Snack Vending Machine" -} diff --git a/data/presets/presets/amenity/veterinary.json b/data/presets/presets/amenity/veterinary.json deleted file mode 100644 index 4205a8c1d9..0000000000 --- a/data/presets/presets/amenity/veterinary.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-veterinary_care", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "charge_fee", - "email", - "fax", - "fee", - "gnis/feature_id", - "level", - "payment_multi_fee", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "pet clinic", - "veterinarian", - "animal hospital", - "pet doctor" - ], - "tags": { - "amenity": "veterinary" - }, - "name": "Veterinary" -} diff --git a/data/presets/presets/amenity/waste/dog_excrement.json b/data/presets/presets/amenity/waste/dog_excrement.json deleted file mode 100644 index c42d0a35b2..0000000000 --- a/data/presets/presets/amenity/waste/dog_excrement.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "maki-waste-basket", - "fields": [ - "collection_times" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "waste_basket", - "waste": "dog_excrement" - }, - "reference": { - "key": "waste", - "value": "dog_excrement" - }, - "terms": [ - "bin", - "garbage", - "rubbish", - "litter", - "trash", - "poo", - "dog" - ], - "name": "Dog Excrement Bin" -} diff --git a/data/presets/presets/amenity/waste_basket.json b/data/presets/presets/amenity/waste_basket.json deleted file mode 100644 index c482eb0678..0000000000 --- a/data/presets/presets/amenity/waste_basket.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-waste-basket", - "fields": [ - "operator", - "waste", - "collection_times", - "material", - "colour" - ], - "moreFields": [ - "covered", - "indoor", - "manufacturer" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "amenity": "waste_basket" - }, - "terms": [ - "bin", - "garbage", - "rubbish", - "litter", - "trash" - ], - "name": "Waste Basket" -} diff --git a/data/presets/presets/amenity/waste_disposal.json b/data/presets/presets/amenity/waste_disposal.json deleted file mode 100644 index 457745c1c7..0000000000 --- a/data/presets/presets/amenity/waste_disposal.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "fas-dumpster", - "fields": [ - "operator", - "waste", - "collection_times", - "access_simple" - ], - "moreFields": [ - "brand", - "colour", - "height", - "manufacturer", - "material" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "waste_disposal" - }, - "terms": [ - "garbage", - "rubbish", - "litter", - "trash" - ], - "name": "Garbage Dumpster" -} diff --git a/data/presets/presets/amenity/waste_transfer_station.json b/data/presets/presets/amenity/waste_transfer_station.json deleted file mode 100644 index b30329b8b0..0000000000 --- a/data/presets/presets/amenity/waste_transfer_station.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "fas-trash-restore", - "fields": [ - "name", - "operator", - "operator/type", - "waste", - "address", - "opening_hours", - "opening_hours/covid19", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "email", - "fax", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "dump", - "garbage", - "recycling", - "rubbish", - "scrap", - "trash" - ], - "tags": { - "amenity": "waste_transfer_station" - }, - "name": "Waste Transfer Station" -} diff --git a/data/presets/presets/amenity/water_point.json b/data/presets/presets/amenity/water_point.json deleted file mode 100644 index 4bbaca0e31..0000000000 --- a/data/presets/presets/amenity/water_point.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "maki-drinking-water", - "fields": [ - "operator", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "covered", - "drinking_water", - "lit", - "ref" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "water_point" - }, - "terms": [ - "water faucet", - "water point", - "water tap", - "water source", - "water spigot" - ], - "name": "RV Drinking Water" -} diff --git a/data/presets/presets/amenity/watering_place.json b/data/presets/presets/amenity/watering_place.json deleted file mode 100644 index c4dbdd8ff1..0000000000 --- a/data/presets/presets/amenity/watering_place.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-drinking-water", - "fields": [ - "operator", - "fee", - "payment_multi_fee", - "charge_fee", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "amenity": "watering_place" - }, - "name": "Animal Watering Place" -} diff --git a/data/presets/presets/amenity/weighbridge.json b/data/presets/presets/amenity/weighbridge.json deleted file mode 100644 index 0e71b1f2c6..0000000000 --- a/data/presets/presets/amenity/weighbridge.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "fas-weight", - "fields": [ - "ref", - "operator", - "access_simple", - "maxweight" - ], - "moreFields": [ - "address", - "colour", - "lit", - "manufacturer", - "material", - "wheelchair" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "weigh station", - "weighbridge" - ], - "tags": { - "amenity": "weighbridge" - }, - "name": "Truck Scale" -} diff --git a/data/presets/presets/area.json b/data/presets/presets/area.json deleted file mode 100644 index ab20323aa8..0000000000 --- a/data/presets/presets/area.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fields": [ - "name" - ], - "geometry": [ - "area" - ], - "tags": { - "area": "yes" - }, - "terms": [ - "polygon" - ], - "name": "Area", - "matchScore": 0.1 -} diff --git a/data/presets/presets/area/highway.json b/data/presets/presets/area/highway.json deleted file mode 100644 index 5a6c70237e..0000000000 --- a/data/presets/presets/area/highway.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "fields": [ - "name", - "area/highway", - "surface" - ], - "geometry": [ - "area" - ], - "terms": [ - "area:highway", - "edge of pavement", - "highway area", - "highway shape", - "pavement", - "road shape", - "street area" - ], - "tags": { - "area:highway": "*" - }, - "name": "Road Area" -} diff --git a/data/presets/presets/attraction/amusement_ride.json b/data/presets/presets/attraction/amusement_ride.json deleted file mode 100644 index 8a7acbe705..0000000000 --- a/data/presets/presets/attraction/amusement_ride.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-amusement-park", - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theme park", - "carnival ride" - ], - "tags": { - "attraction": "amusement_ride" - }, - "name": "Amusement Ride" -} diff --git a/data/presets/presets/attraction/animal.json b/data/presets/presets/attraction/animal.json deleted file mode 100644 index 240e59b5a6..0000000000 --- a/data/presets/presets/attraction/animal.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "maki-zoo", - "fields": [ - "name", - "operator", - "species/wikidata" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "amphibian", - "animal park", - "aquarium", - "bear", - "bird", - "fish", - "insect", - "lion", - "mammal", - "monkey", - "penguin", - "reptile", - "safari", - "theme park", - "tiger", - "zoo" - ], - "tags": { - "attraction": "animal" - }, - "name": "Animal Enclosure" -} diff --git a/data/presets/presets/attraction/big_wheel.json b/data/presets/presets/attraction/big_wheel.json deleted file mode 100644 index d926d2c2af..0000000000 --- a/data/presets/presets/attraction/big_wheel.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-amusement-park", - "fields": [ - "{attraction}", - "height" - ], - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point" - ], - "terms": [ - "ferris wheel", - "theme park", - "amusement ride" - ], - "tags": { - "attraction": "big_wheel" - }, - "name": "Big Wheel" -} diff --git a/data/presets/presets/attraction/bumper_car.json b/data/presets/presets/attraction/bumper_car.json deleted file mode 100644 index 6b2d057ed5..0000000000 --- a/data/presets/presets/attraction/bumper_car.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "fas-car-crash", - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theme park", - "dodgem cars", - "autoscooter" - ], - "tags": { - "attraction": "bumper_car" - }, - "name": "Bumper Cars" -} diff --git a/data/presets/presets/attraction/bungee_jumping.json b/data/presets/presets/attraction/bungee_jumping.json deleted file mode 100644 index 64032ea6f6..0000000000 --- a/data/presets/presets/attraction/bungee_jumping.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "{attraction}", - "height" - ], - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theme park", - "bungy jumping", - "jumping platform" - ], - "tags": { - "attraction": "bungee_jumping" - }, - "name": "Bungee Jumping" -} diff --git a/data/presets/presets/attraction/carousel.json b/data/presets/presets/attraction/carousel.json deleted file mode 100644 index f3f1c7eba9..0000000000 --- a/data/presets/presets/attraction/carousel.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-amusement_park", - "fields": [ - "{attraction}", - "building_area" - ], - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theme park", - "roundabout", - "merry-go-round", - "galloper", - "jumper", - "horseabout", - "flying horses" - ], - "tags": { - "attraction": "carousel" - }, - "name": "Carousel" -} diff --git a/data/presets/presets/attraction/dark_ride.json b/data/presets/presets/attraction/dark_ride.json deleted file mode 100644 index 2fd721d101..0000000000 --- a/data/presets/presets/attraction/dark_ride.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-rail-metro", - "fields": [ - "{attraction}", - "building_area" - ], - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "line", - "area" - ], - "terms": [ - "theme park", - "ghost train" - ], - "tags": { - "attraction": "dark_ride" - }, - "name": "Dark Ride" -} diff --git a/data/presets/presets/attraction/drop_tower.json b/data/presets/presets/attraction/drop_tower.json deleted file mode 100644 index 180da561a1..0000000000 --- a/data/presets/presets/attraction/drop_tower.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-tower", - "fields": [ - "{attraction}", - "height" - ], - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theme park", - "amusement ride", - "gondola", - "tower", - "big drop" - ], - "tags": { - "attraction": "drop_tower" - }, - "name": "Drop Tower Ride" -} diff --git a/data/presets/presets/attraction/kiddie_ride.json b/data/presets/presets/attraction/kiddie_ride.json deleted file mode 100644 index c06e3efcb7..0000000000 --- a/data/presets/presets/attraction/kiddie_ride.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-amusement_park", - "fields": [ - "{attraction}", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point" - ], - "tags": { - "attraction": "kiddie_ride" - }, - "name": "Kiddie Ride" -} diff --git a/data/presets/presets/attraction/log_flume.json b/data/presets/presets/attraction/log_flume.json deleted file mode 100644 index 9e7bf27c79..0000000000 --- a/data/presets/presets/attraction/log_flume.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-ferry", - "fields": [ - "{attraction}", - "height" - ], - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theme park", - "amusement ride", - "flume" - ], - "tags": { - "attraction": "log_flume" - }, - "name": "Log Flume" -} diff --git a/data/presets/presets/attraction/maze.json b/data/presets/presets/attraction/maze.json deleted file mode 100644 index 5e6f3fc597..0000000000 --- a/data/presets/presets/attraction/maze.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-amusement-park", - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theme park", - "amusement ride", - "labyrinth" - ], - "tags": { - "attraction": "maze" - }, - "name": "Maze" -} diff --git a/data/presets/presets/attraction/pirate_ship.json b/data/presets/presets/attraction/pirate_ship.json deleted file mode 100644 index 916ced4de2..0000000000 --- a/data/presets/presets/attraction/pirate_ship.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-danger", - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point" - ], - "terms": [ - "theme park", - "carnival ride", - "amusement ride" - ], - "tags": { - "attraction": "pirate_ship" - }, - "name": "Pirate Ship Ride" -} diff --git a/data/presets/presets/attraction/river_rafting.json b/data/presets/presets/attraction/river_rafting.json deleted file mode 100644 index ba9c4b8247..0000000000 --- a/data/presets/presets/attraction/river_rafting.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-ferry", - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "line" - ], - "terms": [ - "theme park", - "aquatic park", - "water park", - "rafting simulator", - "river rafting ride", - "river rapids ride" - ], - "tags": { - "attraction": "river_rafting" - }, - "name": "River Rapids Ride" -} diff --git a/data/presets/presets/attraction/roller_coaster.json b/data/presets/presets/attraction/roller_coaster.json deleted file mode 100644 index 5da6f1c888..0000000000 --- a/data/presets/presets/attraction/roller_coaster.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-roller_coaster", - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theme park", - "amusement ride" - ], - "tags": { - "attraction": "roller_coaster" - }, - "name": "Roller Coaster" -} diff --git a/data/presets/presets/attraction/summer_toboggan.json b/data/presets/presets/attraction/summer_toboggan.json deleted file mode 100644 index 29b53dd730..0000000000 --- a/data/presets/presets/attraction/summer_toboggan.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-sledding", - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "line" - ], - "terms": [ - "alpine slide", - "mountain coaster" - ], - "tags": { - "attraction": "summer_toboggan" - }, - "name": "Summer Toboggan" -} diff --git a/data/presets/presets/attraction/swing_carousel.json b/data/presets/presets/attraction/swing_carousel.json deleted file mode 100644 index ac72536568..0000000000 --- a/data/presets/presets/attraction/swing_carousel.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-tower", - "fields": [ - "{attraction}", - "height" - ], - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "theme park", - "amusement ride", - "carousel", - "tower", - "carousel tower" - ], - "tags": { - "attraction": "swing_carousel" - }, - "name": "Swing Carousel" -} diff --git a/data/presets/presets/attraction/train.json b/data/presets/presets/attraction/train.json deleted file mode 100644 index bfd8d55e07..0000000000 --- a/data/presets/presets/attraction/train.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-train_kids", - "fields": [ - "{attraction}", - "fee", - "charge_fee" - ], - "geometry": [ - "point", - "line" - ], - "terms": [ - "theme park", - "rackless train", - "road train", - "Tschu-Tschu train", - "dotto train", - "park train" - ], - "tags": { - "attraction": "train" - }, - "name": "Tourist Train" -} diff --git a/data/presets/presets/attraction/water_slide.json b/data/presets/presets/attraction/water_slide.json deleted file mode 100644 index 5beb284bc6..0000000000 --- a/data/presets/presets/attraction/water_slide.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-slide", - "fields": [ - "{attraction}", - "height" - ], - "moreFields": [ - "{attraction}", - "max_age", - "min_age" - ], - "geometry": [ - "line", - "area" - ], - "terms": [ - "theme park", - "aquatic park", - "water park", - "flumes", - "water chutes", - "hydroslides" - ], - "tags": { - "attraction": "water_slide" - }, - "name": "Water Slide" -} diff --git a/data/presets/presets/barrier.json b/data/presets/presets/barrier.json deleted file mode 100644 index 3be9fb5925..0000000000 --- a/data/presets/presets/barrier.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-roadblock", - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "barrier": "*" - }, - "fields": [ - "barrier" - ], - "moreFields": [ - "level" - ], - "name": "Barrier", - "matchScore": 0.4 -} diff --git a/data/presets/presets/barrier/_entrance.json b/data/presets/presets/barrier/_entrance.json deleted file mode 100644 index a1240a4d92..0000000000 --- a/data/presets/presets/barrier/_entrance.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-entrance-alt1", - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "entrance" - }, - "name": "Entrance", - "searchable": false -} diff --git a/data/presets/presets/barrier/block.json b/data/presets/presets/barrier/block.json deleted file mode 100644 index 76f2d87a70..0000000000 --- a/data/presets/presets/barrier/block.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-cube", - "fields": [ - "access", - "material" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "barrier": "block" - }, - "name": "Block" -} diff --git a/data/presets/presets/barrier/bollard.json b/data/presets/presets/barrier/bollard.json deleted file mode 100644 index 4477cc1bb8..0000000000 --- a/data/presets/presets/barrier/bollard.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-bollard", - "fields": [ - "access", - "bollard", - "height", - "width", - "material", - "colour" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "barrier": "bollard" - }, - "name": "Bollard" -} diff --git a/data/presets/presets/barrier/bollard_line.json b/data/presets/presets/barrier/bollard_line.json deleted file mode 100644 index 322d690ae4..0000000000 --- a/data/presets/presets/barrier/bollard_line.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-bollard_row", - "fields": [ - "access", - "bollard", - "height", - "material", - "colour" - ], - "geometry": [ - "line" - ], - "tags": { - "barrier": "bollard" - }, - "name": "Bollard Row" -} diff --git a/data/presets/presets/barrier/border_control.json b/data/presets/presets/barrier/border_control.json deleted file mode 100644 index 58d71680b2..0000000000 --- a/data/presets/presets/barrier/border_control.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-passport_checkpoint", - "fields": [ - "access", - "building_area" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "vertex", - "area" - ], - "tags": { - "barrier": "border_control" - }, - "terms": [ - "checkpoint", - "customs", - "international boundary", - "passport check", - "port of entry", - "visa" - ], - "name": "Border Control" -} diff --git a/data/presets/presets/barrier/cattle_grid.json b/data/presets/presets/barrier/cattle_grid.json deleted file mode 100644 index f264630818..0000000000 --- a/data/presets/presets/barrier/cattle_grid.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-cattle_grid", - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "cattle_grid" - }, - "terms": [ - "cattle guard", - "cattle stop", - "livestock grid", - "stock gate", - "stock grid", - "stock stop", - "Texas gate", - "vehicle pass" - ], - "name": "Cattle Grid" -} diff --git a/data/presets/presets/barrier/chain.json b/data/presets/presets/barrier/chain.json deleted file mode 100644 index 7cf75e74b0..0000000000 --- a/data/presets/presets/barrier/chain.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-rope_fence", - "fields": [ - "access" - ], - "geometry": [ - "vertex", - "line" - ], - "tags": { - "barrier": "chain" - }, - "name": "Chain" -} diff --git a/data/presets/presets/barrier/city_wall.json b/data/presets/presets/barrier/city_wall.json deleted file mode 100644 index 4962a9f5ce..0000000000 --- a/data/presets/presets/barrier/city_wall.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-wall", - "fields": [ - "height", - "material" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "city_wall" - }, - "name": "City Wall" -} diff --git a/data/presets/presets/barrier/cycle_barrier.json b/data/presets/presets/barrier/cycle_barrier.json deleted file mode 100644 index f05935d742..0000000000 --- a/data/presets/presets/barrier/cycle_barrier.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-cycle_barrier", - "fields": [ - "access" - ], - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "cycle_barrier" - }, - "terms": [ - "bicycle barrier", - "bicycling barrier", - "bike gates", - "cycling barrier" - ], - "name": "Cycle Barrier" -} diff --git a/data/presets/presets/barrier/ditch.json b/data/presets/presets/barrier/ditch.json deleted file mode 100644 index 290ea9ac02..0000000000 --- a/data/presets/presets/barrier/ditch.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "temaki-trench", - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "ditch" - }, - "name": "Trench", - "matchScore": 0.25 -} diff --git a/data/presets/presets/barrier/fence.json b/data/presets/presets/barrier/fence.json deleted file mode 100644 index b97382b2f1..0000000000 --- a/data/presets/presets/barrier/fence.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-fence", - "fields": [ - "fence_type", - "height", - "material" - ], - "geometry": [ - "line" - ], - "tags": { - "barrier": "fence" - }, - "name": "Fence", - "matchScore": 0.25 -} diff --git a/data/presets/presets/barrier/fence/railing.json b/data/presets/presets/barrier/fence/railing.json deleted file mode 100644 index 4b9e410d0c..0000000000 --- a/data/presets/presets/barrier/fence/railing.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-railing", - "geometry": [ - "line" - ], - "tags": { - "barrier": "fence", - "fence_type": "railing" - }, - "terms": [ - "railing", - "handrail", - "guard rail" - ], - "name": "Railing", - "matchScore": 0.5 -} diff --git a/data/presets/presets/barrier/gate.json b/data/presets/presets/barrier/gate.json deleted file mode 100644 index 0246bfba89..0000000000 --- a/data/presets/presets/barrier/gate.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-gate", - "fields": [ - "access", - "wheelchair", - "opening_hours", - "opening_hours/covid19", - "height", - "material" - ], - "moreFields": [ - "colour", - "manufacturer", - "operator", - "ref" - ], - "geometry": [ - "vertex", - "line" - ], - "tags": { - "barrier": "gate" - }, - "name": "Gate" -} diff --git a/data/presets/presets/barrier/guard_rail.json b/data/presets/presets/barrier/guard_rail.json deleted file mode 100644 index 0e4978de25..0000000000 --- a/data/presets/presets/barrier/guard_rail.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-guard_rail", - "fields": [ - "material" - ], - "geometry": [ - "line" - ], - "tags": { - "barrier": "guard_rail" - }, - "name": "Guard Rail", - "terms": [ - "guardrail", - "traffic barrier", - "crash barrier", - "median barrier", - "roadside barrier", - "Armco barrier" - ], - "matchScore": 0.75 -} diff --git a/data/presets/presets/barrier/hedge.json b/data/presets/presets/barrier/hedge.json deleted file mode 100644 index 1499944a13..0000000000 --- a/data/presets/presets/barrier/hedge.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-hedge", - "fields": [ - "height" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "hedge" - }, - "name": "Hedge", - "matchScore": 0.25 -} diff --git a/data/presets/presets/barrier/height_restrictor.json b/data/presets/presets/barrier/height_restrictor.json deleted file mode 100644 index 44a4533287..0000000000 --- a/data/presets/presets/barrier/height_restrictor.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-height_restrictor", - "fields": [ - "maxheight" - ], - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "height_restrictor" - }, - "terms": [ - "height barrier", - "height restriction barrier", - "maxheight", - "maximum height measurer" - ], - "name": "Height Restrictor" -} diff --git a/data/presets/presets/barrier/kerb.json b/data/presets/presets/barrier/kerb.json deleted file mode 100644 index 1c55a9c5ce..0000000000 --- a/data/presets/presets/barrier/kerb.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-kerb-raised", - "fields": [ - "kerb", - "tactile_paving", - "wheelchair" - ], - "moreFields": [ - "material" - ], - "geometry": [ - "vertex", - "line" - ], - "tags": { - "barrier": "kerb" - }, - "matchScore": 0.5, - "name": "Curb" -} diff --git a/data/presets/presets/barrier/kerb/flush.json b/data/presets/presets/barrier/kerb/flush.json deleted file mode 100644 index 3f635e72ee..0000000000 --- a/data/presets/presets/barrier/kerb/flush.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-kerb-flush", - "fields": [ - "kerb", - "{barrier/kerb}" - ], - "geometry": [ - "vertex", - "line" - ], - "tags": { - "kerb": "flush" - }, - "addTags": { - "barrier": "kerb", - "kerb": "flush" - }, - "reference": { - "key": "kerb", - "value": "flush" - }, - "terms": [ - "even curb", - "level curb", - "tactile curb" - ], - "matchScore": 0.55, - "name": "Flush Curb" -} diff --git a/data/presets/presets/barrier/kerb/lowered.json b/data/presets/presets/barrier/kerb/lowered.json deleted file mode 100644 index c45a46caaa..0000000000 --- a/data/presets/presets/barrier/kerb/lowered.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "temaki-kerb-lowered", - "fields": [ - "kerb", - "{barrier/kerb}", - "kerb/height" - ], - "geometry": [ - "vertex", - "line" - ], - "tags": { - "kerb": "lowered" - }, - "addTags": { - "barrier": "kerb", - "kerb": "lowered" - }, - "reference": { - "key": "kerb", - "value": "lowered" - }, - "terms": [ - "curb cut", - "curb ramp", - "kerb ramp", - "dropped kerb", - "pram ramp" - ], - "matchScore": 0.55, - "name": "Lowered Curb" -} diff --git a/data/presets/presets/barrier/kerb/raised.json b/data/presets/presets/barrier/kerb/raised.json deleted file mode 100644 index 499a7e97d6..0000000000 --- a/data/presets/presets/barrier/kerb/raised.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-kerb-raised", - "fields": [ - "kerb", - "{barrier/kerb}", - "kerb/height" - ], - "geometry": [ - "vertex", - "line" - ], - "tags": { - "kerb": "raised" - }, - "addTags": { - "barrier": "kerb", - "kerb": "raised" - }, - "reference": { - "key": "kerb", - "value": "raised" - }, - "terms": [], - "matchScore": 0.55, - "name": "Raised Curb" -} diff --git a/data/presets/presets/barrier/kerb/rolled.json b/data/presets/presets/barrier/kerb/rolled.json deleted file mode 100644 index 6982f1fa49..0000000000 --- a/data/presets/presets/barrier/kerb/rolled.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-kerb-rolled", - "fields": [ - "kerb", - "{barrier/kerb}", - "kerb/height" - ], - "geometry": [ - "vertex", - "line" - ], - "tags": { - "kerb": "rolled" - }, - "addTags": { - "barrier": "kerb", - "kerb": "rolled" - }, - "reference": { - "key": "kerb", - "value": "rolled" - }, - "terms": [ - "gutter" - ], - "matchScore": 0.55, - "name": "Rolled Curb" -} diff --git a/data/presets/presets/barrier/kissing_gate.json b/data/presets/presets/barrier/kissing_gate.json deleted file mode 100644 index 622cbc44dc..0000000000 --- a/data/presets/presets/barrier/kissing_gate.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "temaki-gate", - "fields": [ - "access" - ], - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "kissing_gate" - }, - "name": "Kissing Gate" -} diff --git a/data/presets/presets/barrier/lift_gate.json b/data/presets/presets/barrier/lift_gate.json deleted file mode 100644 index d0d53aaf68..0000000000 --- a/data/presets/presets/barrier/lift_gate.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-lift_gate", - "fields": [ - "access", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "vertex", - "line" - ], - "tags": { - "barrier": "lift_gate" - }, - "terms": [ - "boom barrier", - "boom gate", - "boom lift", - "hinged bar", - "pivoted pole" - ], - "name": "Lift Gate" -} diff --git a/data/presets/presets/barrier/retaining_wall.json b/data/presets/presets/barrier/retaining_wall.json deleted file mode 100644 index 6aa7a8f61d..0000000000 --- a/data/presets/presets/barrier/retaining_wall.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-wall", - "fields": [ - "height", - "material" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "retaining_wall" - }, - "name": "Retaining Wall" -} diff --git a/data/presets/presets/barrier/sally_port.json b/data/presets/presets/barrier/sally_port.json deleted file mode 100644 index 67b24afa39..0000000000 --- a/data/presets/presets/barrier/sally_port.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-dungeon", - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "sally_port" - }, - "terms": [ - "Postern", - "castle side gate" - ], - "name": "Sally Port" -} diff --git a/data/presets/presets/barrier/spikes.json b/data/presets/presets/barrier/spikes.json deleted file mode 100644 index d7f9bd7324..0000000000 --- a/data/presets/presets/barrier/spikes.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-spike_strip", - "fields": [ - "direction_vertex", - "access", - "height", - "colour" - ], - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "spikes" - }, - "terms": [ - "one-way traffic treadles", - "stingers", - "stop sticks", - "tire deflation device", - "tire shredders", - "traffic spikes" - ], - "name": "Spike Strip", - "matchScore": 0.50 -} diff --git a/data/presets/presets/barrier/stile.json b/data/presets/presets/barrier/stile.json deleted file mode 100644 index e5cce6a035..0000000000 --- a/data/presets/presets/barrier/stile.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-stile_squeezer", - "fields": [ - "access", - "stile", - "material" - ], - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "stile" - }, - "name": "Stile" -} diff --git a/data/presets/presets/barrier/swing_gate.json b/data/presets/presets/barrier/swing_gate.json deleted file mode 100644 index 1dc67bd9d1..0000000000 --- a/data/presets/presets/barrier/swing_gate.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-gate", - "fields": [ - "{barrier/gate}" - ], - "moreFields": [ - "{barrier/gate}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "barrier": "swing_gate" - }, - "name": "Swing Gate" -} diff --git a/data/presets/presets/barrier/toll_booth.json b/data/presets/presets/barrier/toll_booth.json deleted file mode 100644 index 54d9841ac4..0000000000 --- a/data/presets/presets/barrier/toll_booth.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-roadblock", - "fields": [ - "access", - "building_area", - "payment_multi", - "currency_multi" - ], - "moreFields": [ - "address", - "email", - "fax", - "opening_hours", - "opening_hours/covid19", - "phone", - "website" - ], - "geometry": [ - "vertex", - "area" - ], - "tags": { - "barrier": "toll_booth" - }, - "name": "Toll Booth" -} diff --git a/data/presets/presets/barrier/turnstile.json b/data/presets/presets/barrier/turnstile.json deleted file mode 100644 index 8da4a0db0c..0000000000 --- a/data/presets/presets/barrier/turnstile.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-turnstile", - "fields": [ - "access" - ], - "geometry": [ - "vertex" - ], - "terms": [ - "baffle gate", - "turnstyle" - ], - "tags": { - "barrier": "turnstile" - }, - "name": "Turnstile" -} diff --git a/data/presets/presets/barrier/wall.json b/data/presets/presets/barrier/wall.json deleted file mode 100644 index 492a0229ff..0000000000 --- a/data/presets/presets/barrier/wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-wall", - "fields": [ - "wall", - "height", - "material" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "wall" - }, - "name": "Wall", - "matchScore": 0.25 -} diff --git a/data/presets/presets/barrier/wall/noise_barrier.json b/data/presets/presets/barrier/wall/noise_barrier.json deleted file mode 100644 index 5f8b0134a6..0000000000 --- a/data/presets/presets/barrier/wall/noise_barrier.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-wall", - "geometry": [ - "line", - "area" - ], - "tags": { - "barrier": "wall", - "wall": "noise_barrier" - }, - "terms": [ - "acoustical barrier", - "noise wall", - "noisewall", - "sound barrier", - "sound berm", - "sound wall", - "soundberm", - "soundwall" - ], - "name": "Noise Barrier", - "matchScore": 0.27 -} diff --git a/data/presets/presets/boundary/administrative.json b/data/presets/presets/boundary/administrative.json deleted file mode 100644 index 5d31d87f50..0000000000 --- a/data/presets/presets/boundary/administrative.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "name", - "admin_level" - ], - "geometry": [ - "line" - ], - "tags": { - "boundary": "administrative" - }, - "name": "Administrative Boundary", - "matchScore": 0.5 -} diff --git a/data/presets/presets/bridge/support.json b/data/presets/presets/bridge/support.json deleted file mode 100644 index 42f57e4dad..0000000000 --- a/data/presets/presets/bridge/support.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "fas-archway", - "fields": [ - "bridge/support", - "height", - "layer", - "material" - ], - "moreFields": [ - "colour", - "seamark/type" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "bridge:support": "*" - }, - "name": "Bridge Support" -} diff --git a/data/presets/presets/bridge/support/pier.json b/data/presets/presets/bridge/support/pier.json deleted file mode 100644 index 55b3bf5f22..0000000000 --- a/data/presets/presets/bridge/support/pier.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "fas-archway", - "fields": [ - "bridge/support", - "{bridge/support}" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "bridge:support": "pier" - }, - "name": "Bridge Pier" -} diff --git a/data/presets/presets/building.json b/data/presets/presets/building.json deleted file mode 100644 index ee3674bc6d..0000000000 --- a/data/presets/presets/building.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "maki-home", - "fields": [ - "name", - "building", - "building/levels", - "height", - "address" - ], - "moreFields": [ - "architect", - "building/levels/underground", - "building/material", - "ele", - "gnis/feature_id", - "layer", - "not/name", - "operator", - "roof/colour", - "smoking", - "wheelchair" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "*" - }, - "matchScore": 0.6, - "terms": [], - "name": "Building" -} diff --git a/data/presets/presets/building/_bunker.json b/data/presets/presets/building/_bunker.json deleted file mode 100644 index 473e473dfd..0000000000 --- a/data/presets/presets/building/_bunker.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "temaki-bunker", - "geometry": [ - "area" - ], - "tags": { - "building": "bunker" - }, - "matchScore": 0.5, - "name": "Bunker", - "searchable": false -} diff --git a/data/presets/presets/building/_entrance.json b/data/presets/presets/building/_entrance.json deleted file mode 100644 index 5843c42ea5..0000000000 --- a/data/presets/presets/building/_entrance.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "maki-entrance-alt1", - "fields": [], - "moreFields": [], - "geometry": [ - "vertex" - ], - "tags": { - "building": "entrance" - }, - "name": "Entrance/Exit", - "searchable": false -} diff --git a/data/presets/presets/building/_train_station.json b/data/presets/presets/building/_train_station.json deleted file mode 100644 index 8ea49d27c2..0000000000 --- a/data/presets/presets/building/_train_station.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-building", - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "building": "train_station" - }, - "matchScore": 0.5, - "name": "Train Station Building", - "searchable": false -} diff --git a/data/presets/presets/building/apartments.json b/data/presets/presets/building/apartments.json deleted file mode 100644 index 7c0da5f774..0000000000 --- a/data/presets/presets/building/apartments.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-building", - "fields": [ - "{building}", - "building/flats" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "apartments" - }, - "matchScore": 0.5, - "name": "Apartment Building" -} \ No newline at end of file diff --git a/data/presets/presets/building/barn.json b/data/presets/presets/building/barn.json deleted file mode 100644 index 780f32e91a..0000000000 --- a/data/presets/presets/building/barn.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-barn", - "geometry": [ - "area" - ], - "tags": { - "building": "barn" - }, - "matchScore": 0.5, - "name": "Barn" -} diff --git a/data/presets/presets/building/boathouse.json b/data/presets/presets/building/boathouse.json deleted file mode 100644 index 018182422f..0000000000 --- a/data/presets/presets/building/boathouse.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "maki-harbor", - "geometry": [ - "area" - ], - "tags": { - "building": "boathouse" - }, - "matchScore": 0.5, - "terms": [], - "name": "Boathouse" -} diff --git a/data/presets/presets/building/bungalow.json b/data/presets/presets/building/bungalow.json deleted file mode 100644 index 1cce91d960..0000000000 --- a/data/presets/presets/building/bungalow.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-home", - "geometry": [ - "area" - ], - "tags": { - "building": "bungalow" - }, - "terms": [ - "home", - "detached" - ], - "matchScore": 0.5, - "name": "Bungalow" -} diff --git a/data/presets/presets/building/cabin.json b/data/presets/presets/building/cabin.json deleted file mode 100644 index 90537cac51..0000000000 --- a/data/presets/presets/building/cabin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-cabin", - "geometry": [ - "area" - ], - "tags": { - "building": "cabin" - }, - "matchScore": 0.5, - "name": "Cabin" -} diff --git a/data/presets/presets/building/carport.json b/data/presets/presets/building/carport.json deleted file mode 100644 index 136f245155..0000000000 --- a/data/presets/presets/building/carport.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-carport", - "fields": [ - "{building}", - "capacity" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "carport" - }, - "matchScore": 0.5, - "terms": [ - "covered parking space", - "garage", - "car", - "porch" - ], - "name": "Carport" -} diff --git a/data/presets/presets/building/cathedral.json b/data/presets/presets/building/cathedral.json deleted file mode 100644 index 49fb23743a..0000000000 --- a/data/presets/presets/building/cathedral.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-church", - "geometry": [ - "area" - ], - "tags": { - "building": "cathedral" - }, - "matchScore": 0.5, - "name": "Cathedral Building" -} diff --git a/data/presets/presets/building/chapel.json b/data/presets/presets/building/chapel.json deleted file mode 100644 index a5cd1c36ec..0000000000 --- a/data/presets/presets/building/chapel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-place-of-worship", - "geometry": [ - "area" - ], - "tags": { - "building": "chapel" - }, - "matchScore": 0.5, - "name": "Chapel Building" -} diff --git a/data/presets/presets/building/church.json b/data/presets/presets/building/church.json deleted file mode 100644 index ffb066b0fd..0000000000 --- a/data/presets/presets/building/church.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-church", - "geometry": [ - "area" - ], - "tags": { - "building": "church" - }, - "matchScore": 0.5, - "name": "Church Building" -} diff --git a/data/presets/presets/building/civic.json b/data/presets/presets/building/civic.json deleted file mode 100644 index 9fc9dcf1ab..0000000000 --- a/data/presets/presets/building/civic.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-building", - "fields": [ - "{building}", - "smoking" - ], - "moreFields": [ - "{building}", - "polling_station" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "civic" - }, - "matchScore": 0.5, - "name": "Civic Building" -} diff --git a/data/presets/presets/building/college.json b/data/presets/presets/building/college.json deleted file mode 100644 index dfcdebd315..0000000000 --- a/data/presets/presets/building/college.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "fas-school", - "moreFields": [ - "{building}", - "polling_station" - ], - "geometry": [ - "area" - ], - "terms": [ - "university" - ], - "tags": { - "building": "college" - }, - "matchScore": 0.5, - "name": "College Building" -} diff --git a/data/presets/presets/building/commercial.json b/data/presets/presets/building/commercial.json deleted file mode 100644 index 949f16cf30..0000000000 --- a/data/presets/presets/building/commercial.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-suitcase", - "fields": [ - "{building}", - "smoking" - ], - "moreFields": [ - "{building}", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "commercial" - }, - "matchScore": 0.5, - "name": "Commercial Building" -} diff --git a/data/presets/presets/building/construction.json b/data/presets/presets/building/construction.json deleted file mode 100644 index cd5884e00f..0000000000 --- a/data/presets/presets/building/construction.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-building", - "geometry": [ - "area" - ], - "tags": { - "building": "construction" - }, - "matchScore": 0.5, - "name": "Building Under Construction" -} diff --git a/data/presets/presets/building/cowshed.json b/data/presets/presets/building/cowshed.json deleted file mode 100644 index 34f8d115d0..0000000000 --- a/data/presets/presets/building/cowshed.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-barn", - "geometry": [ - "area" - ], - "tags": { - "building": "cowshed" - }, - "matchScore": 0.5, - "terms": [ - "byre", - "cow barn", - "cow house", - "cow shed", - "cowbarn", - "cowhouse", - "dairy barn", - "milking barn" - ], - "name": "Cowshed" -} diff --git a/data/presets/presets/building/detached.json b/data/presets/presets/building/detached.json deleted file mode 100644 index 43400e013e..0000000000 --- a/data/presets/presets/building/detached.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-home", - "geometry": [ - "area" - ], - "tags": { - "building": "detached" - }, - "terms": [ - "home", - "single", - "family", - "residence", - "dwelling" - ], - "matchScore": 0.5, - "name": "Detached House" -} diff --git a/data/presets/presets/building/dormitory.json b/data/presets/presets/building/dormitory.json deleted file mode 100644 index a5ed0a0526..0000000000 --- a/data/presets/presets/building/dormitory.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-building", - "fields": [ - "{building}", - "smoking" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "dormitory" - }, - "matchScore": 0.5, - "name": "Dormitory" -} diff --git a/data/presets/presets/building/farm.json b/data/presets/presets/building/farm.json deleted file mode 100644 index 6395998301..0000000000 --- a/data/presets/presets/building/farm.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-farm", - "geometry": [ - "area" - ], - "tags": { - "building": "farm" - }, - "matchScore": 0.5, - "name": "Farm House" -} diff --git a/data/presets/presets/building/farm_auxiliary.json b/data/presets/presets/building/farm_auxiliary.json deleted file mode 100644 index 9290a99582..0000000000 --- a/data/presets/presets/building/farm_auxiliary.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-farm", - "geometry": [ - "area" - ], - "tags": { - "building": "farm_auxiliary" - }, - "terms": [ - "agriculture", - "auxiliary", - "auxilary", - "chicken coop", - "farm auxiliary", - "pigsty", - "sty" - ], - "matchScore": 0.5, - "name": "Farm Building" -} diff --git a/data/presets/presets/building/garage.json b/data/presets/presets/building/garage.json deleted file mode 100644 index 1e20eb4bd3..0000000000 --- a/data/presets/presets/building/garage.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-warehouse", - "fields": [ - "{building}", - "capacity" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "garage" - }, - "matchScore": 0.5, - "name": "Garage" -} diff --git a/data/presets/presets/building/garages.json b/data/presets/presets/building/garages.json deleted file mode 100644 index 887a264f25..0000000000 --- a/data/presets/presets/building/garages.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-warehouse", - "fields": [ - "{building}", - "capacity" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "garages" - }, - "matchScore": 0.5, - "name": "Garages" -} diff --git a/data/presets/presets/building/grandstand.json b/data/presets/presets/building/grandstand.json deleted file mode 100644 index e27f052a52..0000000000 --- a/data/presets/presets/building/grandstand.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-building", - "geometry": [ - "area" - ], - "tags": { - "building": "grandstand" - }, - "terms": [ - "tribune", - "stand", - "stands", - "bleachers" - ], - "matchScore": 0.5, - "name": "Grandstand" -} diff --git a/data/presets/presets/building/greenhouse.json b/data/presets/presets/building/greenhouse.json deleted file mode 100644 index 817ba515d6..0000000000 --- a/data/presets/presets/building/greenhouse.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-garden-centre", - "geometry": [ - "area" - ], - "tags": { - "building": "greenhouse" - }, - "matchScore": 0.5, - "name": "Greenhouse" -} diff --git a/data/presets/presets/building/hangar.json b/data/presets/presets/building/hangar.json deleted file mode 100644 index aaee52d7fb..0000000000 --- a/data/presets/presets/building/hangar.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-warehouse", - "fields": [ - "name" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "hangar" - }, - "matchScore": 0.5, - "name": "Hangar Building" -} diff --git a/data/presets/presets/building/hospital.json b/data/presets/presets/building/hospital.json deleted file mode 100644 index 021a16c841..0000000000 --- a/data/presets/presets/building/hospital.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-hospital-alt", - "geometry": [ - "area" - ], - "tags": { - "building": "hospital" - }, - "matchScore": 0.5, - "name": "Hospital Building" -} diff --git a/data/presets/presets/building/hotel.json b/data/presets/presets/building/hotel.json deleted file mode 100644 index 4e03f55acd..0000000000 --- a/data/presets/presets/building/hotel.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-hotel", - "fields": [ - "{building}", - "smoking" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "hotel" - }, - "matchScore": 0.5, - "name": "Hotel Building" -} diff --git a/data/presets/presets/building/house.json b/data/presets/presets/building/house.json deleted file mode 100644 index 1c4636ab67..0000000000 --- a/data/presets/presets/building/house.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-home", - "geometry": [ - "area" - ], - "tags": { - "building": "house" - }, - "terms": [ - "home", - "family", - "residence", - "dwelling" - ], - "matchScore": 0.5, - "name": "House" -} diff --git a/data/presets/presets/building/houseboat.json b/data/presets/presets/building/houseboat.json deleted file mode 100644 index 9549140d92..0000000000 --- a/data/presets/presets/building/houseboat.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-houseboat", - "geometry": [ - "area" - ], - "tags": { - "building": "houseboat" - }, - "terms": [ - "home", - "family", - "residence", - "dwelling" - ], - "matchScore": 0.5, - "name": "Houseboat" -} diff --git a/data/presets/presets/building/hut.json b/data/presets/presets/building/hut.json deleted file mode 100644 index 5693655d24..0000000000 --- a/data/presets/presets/building/hut.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-home", - "geometry": [ - "area" - ], - "tags": { - "building": "hut" - }, - "matchScore": 0.5, - "name": "Hut" -} diff --git a/data/presets/presets/building/industrial.json b/data/presets/presets/building/industrial.json deleted file mode 100644 index 85ee6b6386..0000000000 --- a/data/presets/presets/building/industrial.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-industry", - "geometry": [ - "area" - ], - "tags": { - "building": "industrial" - }, - "matchScore": 0.5, - "name": "Industrial Building" -} diff --git a/data/presets/presets/building/kindergarten.json b/data/presets/presets/building/kindergarten.json deleted file mode 100644 index dfe6d3b51c..0000000000 --- a/data/presets/presets/building/kindergarten.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "fas-school", - "geometry": [ - "area" - ], - "terms": [ - "kindergarten", - "kindergarden", - "pre-school" - ], - "tags": { - "building": "kindergarten" - }, - "matchScore": 0.5, - "name": "Preschool / Kindergarten Building" -} diff --git a/data/presets/presets/building/mosque.json b/data/presets/presets/building/mosque.json deleted file mode 100644 index 3847de5a8a..0000000000 --- a/data/presets/presets/building/mosque.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-mosque", - "geometry": [ - "area" - ], - "tags": { - "building": "mosque" - }, - "matchScore": 0.5, - "name": "Mosque Building" -} diff --git a/data/presets/presets/building/office.json b/data/presets/presets/building/office.json deleted file mode 100644 index 025b217fd6..0000000000 --- a/data/presets/presets/building/office.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-suitcase", - "fields": [ - "{building}", - "smoking" - ], - "moreFields": [ - "{building}", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "office" - }, - "matchScore": 0.5, - "terms": [ - "business center", - "office block" - ], - "name": "Office Building" -} diff --git a/data/presets/presets/building/pavilion.json b/data/presets/presets/building/pavilion.json deleted file mode 100644 index 74c13c3245..0000000000 --- a/data/presets/presets/building/pavilion.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-building", - "fields": [ - "{building}", - "smoking" - ], - "geometry": [ - "area" - ], - "terms": [ - "sports" - ], - "tags": { - "building": "pavilion" - }, - "matchScore": 0.5, - "name": "Pavilion Building" -} diff --git a/data/presets/presets/building/public.json b/data/presets/presets/building/public.json deleted file mode 100644 index 4cf312178a..0000000000 --- a/data/presets/presets/building/public.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-building", - "fields": [ - "{building}", - "smoking" - ], - "moreFields": [ - "{building}", - "polling_station" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "public" - }, - "matchScore": 0.5, - "name": "Public Building" -} diff --git a/data/presets/presets/building/residential.json b/data/presets/presets/building/residential.json deleted file mode 100644 index 32afacd118..0000000000 --- a/data/presets/presets/building/residential.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-residential-community", - "geometry": [ - "area" - ], - "tags": { - "building": "residential" - }, - "matchScore": 0.5, - "name": "Residential Building" -} diff --git a/data/presets/presets/building/retail.json b/data/presets/presets/building/retail.json deleted file mode 100644 index 756fe27b80..0000000000 --- a/data/presets/presets/building/retail.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-commercial", - "fields": [ - "{building}", - "smoking" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "retail" - }, - "terms": [ - "shop building", - "store building" - ], - "matchScore": 0.5, - "name": "Retail Building" -} diff --git a/data/presets/presets/building/roof.json b/data/presets/presets/building/roof.json deleted file mode 100644 index b419deb934..0000000000 --- a/data/presets/presets/building/roof.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-shelter", - "fields": [ - "{building}", - "layer" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "roof" - }, - "matchScore": 0.5, - "name": "Roof" -} diff --git a/data/presets/presets/building/ruins.json b/data/presets/presets/building/ruins.json deleted file mode 100644 index 46dc1a2397..0000000000 --- a/data/presets/presets/building/ruins.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-ruins", - "geometry": [ - "area" - ], - "tags": { - "building": "ruins" - }, - "matchScore": 0.5, - "name": "Building Ruins" -} diff --git a/data/presets/presets/building/school.json b/data/presets/presets/building/school.json deleted file mode 100644 index daff0625df..0000000000 --- a/data/presets/presets/building/school.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "fas-school", - "moreFields": [ - "{building}", - "polling_station" - ], - "geometry": [ - "area" - ], - "terms": [ - "academy", - "elementary school", - "middle school", - "high school" - ], - "tags": { - "building": "school" - }, - "matchScore": 0.5, - "name": "School Building" -} diff --git a/data/presets/presets/building/semidetached_house.json b/data/presets/presets/building/semidetached_house.json deleted file mode 100644 index 2cf3ef061c..0000000000 --- a/data/presets/presets/building/semidetached_house.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-home", - "geometry": [ - "area" - ], - "tags": { - "building": "semidetached_house" - }, - "terms": [ - "home", - "double", - "duplex", - "twin", - "family", - "residence", - "dwelling" - ], - "matchScore": 0.5, - "name": "Semi-Detached House" -} diff --git a/data/presets/presets/building/service.json b/data/presets/presets/building/service.json deleted file mode 100644 index 72d356a045..0000000000 --- a/data/presets/presets/building/service.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-building", - "geometry": [ - "area" - ], - "tags": { - "building": "service" - }, - "matchScore": 0.5, - "name": "Service Building" -} diff --git a/data/presets/presets/building/shed.json b/data/presets/presets/building/shed.json deleted file mode 100644 index 23f8c497df..0000000000 --- a/data/presets/presets/building/shed.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-warehouse", - "fields": [ - "{building}", - "lockable" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "shed" - }, - "matchScore": 0.5, - "name": "Shed" -} diff --git a/data/presets/presets/building/stable.json b/data/presets/presets/building/stable.json deleted file mode 100644 index ce4a575c1c..0000000000 --- a/data/presets/presets/building/stable.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-horse_shelter", - "geometry": [ - "area" - ], - "tags": { - "building": "stable" - }, - "terms": [ - "horse shelter" - ], - "matchScore": 0.5, - "name": "Stable" -} diff --git a/data/presets/presets/building/stadium.json b/data/presets/presets/building/stadium.json deleted file mode 100644 index fb1b7e8bf5..0000000000 --- a/data/presets/presets/building/stadium.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-stadium", - "fields": [ - "{building}", - "smoking" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "stadium" - }, - "matchScore": 0.5, - "name": "Stadium Building" -} diff --git a/data/presets/presets/building/static_caravan.json b/data/presets/presets/building/static_caravan.json deleted file mode 100644 index a78e9e38f7..0000000000 --- a/data/presets/presets/building/static_caravan.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-manufactured_home", - "geometry": [ - "area" - ], - "tags": { - "building": "static_caravan" - }, - "terms": [ - "house trailer", - "manufactured home", - "mobile home", - "prefabricated home", - "residential caravan", - "static caravan", - "trailer home" - ], - "matchScore": 0.5, - "name": "Static Mobile Home" -} diff --git a/data/presets/presets/building/sty.json b/data/presets/presets/building/sty.json deleted file mode 100644 index a79930615a..0000000000 --- a/data/presets/presets/building/sty.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-barn", - "geometry": [ - "area" - ], - "tags": { - "building": "sty" - }, - "matchScore": 0.5, - "terms": [ - "hog parlor", - "hog pen", - "pig ark", - "pig barn", - "pig parlor", - "pig pen", - "pig shed", - "pig shelter", - "pig-cote", - "piggery", - "pigpen", - "pigshed", - "sty" - ], - "name": "Pigsty" -} diff --git a/data/presets/presets/building/temple.json b/data/presets/presets/building/temple.json deleted file mode 100644 index 0ef4f22d7e..0000000000 --- a/data/presets/presets/building/temple.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-place-of-worship", - "geometry": [ - "area" - ], - "tags": { - "building": "temple" - }, - "matchScore": 0.5, - "name": "Temple Building" -} diff --git a/data/presets/presets/building/terrace.json b/data/presets/presets/building/terrace.json deleted file mode 100644 index 0de9a9f77a..0000000000 --- a/data/presets/presets/building/terrace.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-row_houses", - "geometry": [ - "area" - ], - "tags": { - "building": "terrace" - }, - "terms": [ - "home", - "terrace", - "brownstone", - "family", - "residence", - "dwelling" - ], - "matchScore": 0.5, - "name": "Row Houses" -} diff --git a/data/presets/presets/building/transportation.json b/data/presets/presets/building/transportation.json deleted file mode 100644 index 785d5fc540..0000000000 --- a/data/presets/presets/building/transportation.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-building", - "fields": [ - "{building}", - "smoking" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "transportation" - }, - "matchScore": 0.5, - "name": "Transportation Building" -} diff --git a/data/presets/presets/building/university.json b/data/presets/presets/building/university.json deleted file mode 100644 index b16325286a..0000000000 --- a/data/presets/presets/building/university.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "fas-school", - "moreFields": [ - "{building}", - "polling_station" - ], - "geometry": [ - "area" - ], - "terms": [ - "college" - ], - "tags": { - "building": "university" - }, - "matchScore": 0.5, - "name": "University Building" -} diff --git a/data/presets/presets/building/warehouse.json b/data/presets/presets/building/warehouse.json deleted file mode 100644 index 2c1ccdc2a5..0000000000 --- a/data/presets/presets/building/warehouse.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-warehouse", - "fields": [ - "{building}", - "phone" - ], - "geometry": [ - "area" - ], - "tags": { - "building": "warehouse" - }, - "matchScore": 0.5, - "name": "Warehouse" -} diff --git a/data/presets/presets/building_part.json b/data/presets/presets/building_part.json deleted file mode 100644 index 84f3fc4c2b..0000000000 --- a/data/presets/presets/building_part.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-building", - "fields": [ - "building/levels", - "height", - "building/material", - "roof/colour" - ], - "moreFields": [ - "layer" - ], - "geometry": [ - "area" - ], - "tags": { - "building:part": "*" - }, - "matchScore": 0.5, - "terms": [ - "roof", - "simple 3D buildings" - ], - "name": "Building Part" -} diff --git a/data/presets/presets/club.json b/data/presets/presets/club.json deleted file mode 100644 index f612d9c586..0000000000 --- a/data/presets/presets/club.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "fas-handshake", - "fields": [ - "name", - "club", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "phone", - "website" - ], - "moreFields": [ - "access_simple", - "building/levels_building", - "email", - "fax", - "gnis/feature_id", - "height_building", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "max_age", - "min_age", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "club": "*" - }, - "terms": [ - "social" - ], - "name": "Club" -} diff --git a/data/presets/presets/club/sport.json b/data/presets/presets/club/sport.json deleted file mode 100644 index 28cc79b0f1..0000000000 --- a/data/presets/presets/club/sport.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "name", - "sport", - "{club}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "club": "sport" - }, - "terms": [ - "athletics club", - "sporting club", - "sports association", - "sports society" - ], - "name": "Sports Club" -} diff --git a/data/presets/presets/craft.json b/data/presets/presets/craft.json deleted file mode 100644 index 62e139d116..0000000000 --- a/data/presets/presets/craft.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "temaki-tools", - "fields": [ - "name", - "craft", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "phone", - "website" - ], - "moreFields": [ - "air_conditioning", - "building/levels_building", - "ele", - "email", - "fax", - "gnis/feature_id", - "height_building", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "product", - "ref/vatin", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "*" - }, - "terms": [], - "name": "Craft" -} diff --git a/data/presets/presets/craft/_locksmith.json b/data/presets/presets/craft/_locksmith.json deleted file mode 100644 index 4bd365e79e..0000000000 --- a/data/presets/presets/craft/_locksmith.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-marker-stroked", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "locksmith" - }, - "reference": { - "key": "shop", - "value": "locksmith" - }, - "name": "Locksmith", - "searchable": false -} diff --git a/data/presets/presets/craft/_tailor.json b/data/presets/presets/craft/_tailor.json deleted file mode 100644 index f2a92d8828..0000000000 --- a/data/presets/presets/craft/_tailor.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-needle_and_spool", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "tailor" - }, - "reference": { - "key": "shop", - "value": "tailor" - }, - "name": "Tailor", - "searchable": false -} diff --git a/data/presets/presets/craft/agricultural_engines.json b/data/presets/presets/craft/agricultural_engines.json deleted file mode 100644 index ca7b50c2f4..0000000000 --- a/data/presets/presets/craft/agricultural_engines.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "fas-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "agricultural_engines" - }, - "terms": [ - "combines", - "farm equipment", - "harvesters", - "tractors" - ], - "name": "Agricultural Engines Mechanic" -} diff --git a/data/presets/presets/craft/basket_maker.json b/data/presets/presets/craft/basket_maker.json deleted file mode 100644 index 2387e0a663..0000000000 --- a/data/presets/presets/craft/basket_maker.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-vase", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "basket_maker" - }, - "name": "Basket Maker" -} diff --git a/data/presets/presets/craft/beekeeper.json b/data/presets/presets/craft/beekeeper.json deleted file mode 100644 index 3198298475..0000000000 --- a/data/presets/presets/craft/beekeeper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-farm", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "beekeeper" - }, - "name": "Beekeeper" -} diff --git a/data/presets/presets/craft/blacksmith.json b/data/presets/presets/craft/blacksmith.json deleted file mode 100644 index bf290809ea..0000000000 --- a/data/presets/presets/craft/blacksmith.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-anvil_and_hammer", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "blacksmith" - }, - "name": "Blacksmith" -} diff --git a/data/presets/presets/craft/boatbuilder.json b/data/presets/presets/craft/boatbuilder.json deleted file mode 100644 index 9d38c58728..0000000000 --- a/data/presets/presets/craft/boatbuilder.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "temaki-boat_repair", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "boatbuilder" - }, - "matchScore": 0.6, - "name": "Boat Builder" -} diff --git a/data/presets/presets/craft/bookbinder.json b/data/presets/presets/craft/bookbinder.json deleted file mode 100644 index 8b1c0baa20..0000000000 --- a/data/presets/presets/craft/bookbinder.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-library", - "geometry": [ - "point", - "area" - ], - "terms": [ - "book repair" - ], - "tags": { - "craft": "bookbinder" - }, - "name": "Bookbinder" -} diff --git a/data/presets/presets/craft/brewery.json b/data/presets/presets/craft/brewery.json deleted file mode 100644 index b0676a8554..0000000000 --- a/data/presets/presets/craft/brewery.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-storage_fermenter", - "fields": [ - "{craft}", - "product" - ], - "moreFields": [ - "{craft}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "alcohol", - "beer", - "beverage", - "bier", - "booze", - "cider" - ], - "tags": { - "craft": "brewery" - }, - "name": "Brewery" -} diff --git a/data/presets/presets/craft/carpenter.json b/data/presets/presets/craft/carpenter.json deleted file mode 100644 index 4fbad0f145..0000000000 --- a/data/presets/presets/craft/carpenter.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-hammer", - "geometry": [ - "point", - "area" - ], - "terms": [ - "woodworker" - ], - "tags": { - "craft": "carpenter" - }, - "name": "Carpenter" -} diff --git a/data/presets/presets/craft/carpet_layer.json b/data/presets/presets/craft/carpet_layer.json deleted file mode 100644 index 86f15800fc..0000000000 --- a/data/presets/presets/craft/carpet_layer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "carpet_layer" - }, - "name": "Carpet Layer" -} diff --git a/data/presets/presets/craft/caterer.json b/data/presets/presets/craft/caterer.json deleted file mode 100644 index 226aba76ae..0000000000 --- a/data/presets/presets/craft/caterer.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-catering", - "fields": [ - "name", - "cuisine", - "{craft}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "caterer" - }, - "name": "Caterer" -} diff --git a/data/presets/presets/craft/chimney_sweeper.json b/data/presets/presets/craft/chimney_sweeper.json deleted file mode 100644 index d7ae1ac15f..0000000000 --- a/data/presets/presets/craft/chimney_sweeper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-chimney", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "chimney_sweeper" - }, - "name": "Chimney Sweeper" -} diff --git a/data/presets/presets/craft/cleaning.json b/data/presets/presets/craft/cleaning.json deleted file mode 100644 index 826a8143b8..0000000000 --- a/data/presets/presets/craft/cleaning.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-vacuum", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "cleaning" - }, - "name": "Cleaning Service" -} diff --git a/data/presets/presets/craft/clockmaker.json b/data/presets/presets/craft/clockmaker.json deleted file mode 100644 index 45227c9749..0000000000 --- a/data/presets/presets/craft/clockmaker.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-clock", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "clockmaker" - }, - "name": "Clockmaker" -} diff --git a/data/presets/presets/craft/confectionery.json b/data/presets/presets/craft/confectionery.json deleted file mode 100644 index e6b28b8965..0000000000 --- a/data/presets/presets/craft/confectionery.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-confectionery", - "geometry": [ - "point", - "area" - ], - "terms": [ - "sweet", - "candy" - ], - "tags": { - "craft": "confectionery" - }, - "name": "Candy Maker" -} diff --git a/data/presets/presets/craft/distillery.json b/data/presets/presets/craft/distillery.json deleted file mode 100644 index e5142e992f..0000000000 --- a/data/presets/presets/craft/distillery.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "temaki-storage_fermenter", - "fields": [ - "{craft}", - "product" - ], - "moreFields": [ - "{craft}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "alcohol", - "beverage", - "bourbon", - "booze", - "brandy", - "gin", - "hooch", - "liquor", - "mezcal", - "moonshine", - "rum", - "scotch", - "spirits", - "still", - "tequila", - "vodka", - "whiskey", - "whisky" - ], - "tags": { - "craft": "distillery" - }, - "name": "Distillery" -} diff --git a/data/presets/presets/craft/dressmaker.json b/data/presets/presets/craft/dressmaker.json deleted file mode 100644 index 1710433286..0000000000 --- a/data/presets/presets/craft/dressmaker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-dress", - "geometry": [ - "point", - "area" - ], - "terms": [ - "seamstress" - ], - "tags": { - "craft": "dressmaker" - }, - "name": "Dressmaker" -} diff --git a/data/presets/presets/craft/electrician.json b/data/presets/presets/craft/electrician.json deleted file mode 100644 index 1ea9b548a3..0000000000 --- a/data/presets/presets/craft/electrician.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-power", - "geometry": [ - "point", - "area" - ], - "terms": [ - "power", - "wire" - ], - "tags": { - "craft": "electrician" - }, - "name": "Electrician" -} diff --git a/data/presets/presets/craft/electronics_repair.json b/data/presets/presets/craft/electronics_repair.json deleted file mode 100644 index c0567bcb7f..0000000000 --- a/data/presets/presets/craft/electronics_repair.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-screwdriver", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "electronics_repair" - }, - "name": "Electronics Repair Shop" -} diff --git a/data/presets/presets/craft/floorer.json b/data/presets/presets/craft/floorer.json deleted file mode 100644 index bf37d8b4ec..0000000000 --- a/data/presets/presets/craft/floorer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-brick_trowel", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "floorer" - }, - "name": "Floorer" -} diff --git a/data/presets/presets/craft/gardener.json b/data/presets/presets/craft/gardener.json deleted file mode 100644 index c2470b0ecf..0000000000 --- a/data/presets/presets/craft/gardener.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-garden-centre", - "geometry": [ - "point", - "area" - ], - "terms": [ - "landscaper", - "grounds keeper" - ], - "tags": { - "craft": "gardener" - }, - "name": "Gardener" -} diff --git a/data/presets/presets/craft/glaziery.json b/data/presets/presets/craft/glaziery.json deleted file mode 100644 index 85c661b0ec..0000000000 --- a/data/presets/presets/craft/glaziery.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-window", - "geometry": [ - "point", - "area" - ], - "terms": [ - "glass", - "stained-glass", - "window" - ], - "tags": { - "craft": "glaziery" - }, - "name": "Glaziery" -} diff --git a/data/presets/presets/craft/handicraft.json b/data/presets/presets/craft/handicraft.json deleted file mode 100644 index d56a1eae32..0000000000 --- a/data/presets/presets/craft/handicraft.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-vase", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "handicraft" - }, - "name": "Handicraft Workspace" -} diff --git a/data/presets/presets/craft/hvac.json b/data/presets/presets/craft/hvac.json deleted file mode 100644 index fb9a0dc98e..0000000000 --- a/data/presets/presets/craft/hvac.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "terms": [ - "heat*", - "vent*", - "air conditioning" - ], - "tags": { - "craft": "hvac" - }, - "name": "HVAC Workplace" -} diff --git a/data/presets/presets/craft/insulator.json b/data/presets/presets/craft/insulator.json deleted file mode 100644 index 8bb35022a9..0000000000 --- a/data/presets/presets/craft/insulator.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "insulation" - }, - "name": "Insulator" -} diff --git a/data/presets/presets/craft/joiner.json b/data/presets/presets/craft/joiner.json deleted file mode 100644 index 540409f1a3..0000000000 --- a/data/presets/presets/craft/joiner.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-hammer", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "joiner" - }, - "terms": [ - "furniture" - ], - "name": "Joiner" -} diff --git a/data/presets/presets/craft/key_cutter.json b/data/presets/presets/craft/key_cutter.json deleted file mode 100644 index ba31def015..0000000000 --- a/data/presets/presets/craft/key_cutter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-key", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "key_cutter" - }, - "name": "Key Cutter" -} diff --git a/data/presets/presets/craft/metal_construction.json b/data/presets/presets/craft/metal_construction.json deleted file mode 100644 index 39329a685b..0000000000 --- a/data/presets/presets/craft/metal_construction.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "metal_construction" - }, - "name": "Metalworker" -} diff --git a/data/presets/presets/craft/painter.json b/data/presets/presets/craft/painter.json deleted file mode 100644 index b67e3929c5..0000000000 --- a/data/presets/presets/craft/painter.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-paint-roller", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "painter" - }, - "name": "Painter" -} diff --git a/data/presets/presets/craft/parquet_layer.json b/data/presets/presets/craft/parquet_layer.json deleted file mode 100644 index 8036717ef5..0000000000 --- a/data/presets/presets/craft/parquet_layer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-brick_trowel", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "parquet_layer" - }, - "name": "Parquet Layer" -} diff --git a/data/presets/presets/craft/photographer.json b/data/presets/presets/craft/photographer.json deleted file mode 100644 index 68e6bb05fa..0000000000 --- a/data/presets/presets/craft/photographer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-attraction", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "photographer" - }, - "name": "Photographer" -} diff --git a/data/presets/presets/craft/photographic_laboratory.json b/data/presets/presets/craft/photographic_laboratory.json deleted file mode 100644 index 1fa7b52561..0000000000 --- a/data/presets/presets/craft/photographic_laboratory.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-film", - "geometry": [ - "point", - "area" - ], - "terms": [ - "film" - ], - "tags": { - "craft": "photographic_laboratory" - }, - "name": "Photographic Laboratory" -} diff --git a/data/presets/presets/craft/plasterer.json b/data/presets/presets/craft/plasterer.json deleted file mode 100644 index 77c27d305c..0000000000 --- a/data/presets/presets/craft/plasterer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-brick_trowel", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "plasterer" - }, - "name": "Plasterer" -} diff --git a/data/presets/presets/craft/plumber.json b/data/presets/presets/craft/plumber.json deleted file mode 100644 index 2e0ff5f409..0000000000 --- a/data/presets/presets/craft/plumber.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-plumber", - "geometry": [ - "point", - "area" - ], - "terms": [ - "pipe" - ], - "tags": { - "craft": "plumber" - }, - "name": "Plumber" -} diff --git a/data/presets/presets/craft/pottery.json b/data/presets/presets/craft/pottery.json deleted file mode 100644 index bf4787e69e..0000000000 --- a/data/presets/presets/craft/pottery.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-vase", - "geometry": [ - "point", - "area" - ], - "terms": [ - "ceramic", - "kiln", - "pot", - "vase" - ], - "tags": { - "craft": "pottery" - }, - "name": "Pottery Maker" -} diff --git a/data/presets/presets/craft/rigger.json b/data/presets/presets/craft/rigger.json deleted file mode 100644 index 39f96413e0..0000000000 --- a/data/presets/presets/craft/rigger.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "rigger" - }, - "name": "Rigger" -} diff --git a/data/presets/presets/craft/roofer.json b/data/presets/presets/craft/roofer.json deleted file mode 100644 index 1247d759c6..0000000000 --- a/data/presets/presets/craft/roofer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-hammer", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "roofer" - }, - "name": "Roofer" -} diff --git a/data/presets/presets/craft/saddler.json b/data/presets/presets/craft/saddler.json deleted file mode 100644 index 683c9c9cf5..0000000000 --- a/data/presets/presets/craft/saddler.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "saddler" - }, - "name": "Saddler" -} diff --git a/data/presets/presets/craft/sailmaker.json b/data/presets/presets/craft/sailmaker.json deleted file mode 100644 index 4baa552327..0000000000 --- a/data/presets/presets/craft/sailmaker.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "sailmaker" - }, - "name": "Sailmaker" -} diff --git a/data/presets/presets/craft/sawmill.json b/data/presets/presets/craft/sawmill.json deleted file mode 100644 index f6814d8825..0000000000 --- a/data/presets/presets/craft/sawmill.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-logging", - "geometry": [ - "point", - "area" - ], - "terms": [ - "lumber" - ], - "tags": { - "craft": "sawmill" - }, - "name": "Sawmill" -} diff --git a/data/presets/presets/craft/scaffolder.json b/data/presets/presets/craft/scaffolder.json deleted file mode 100644 index d86eb99586..0000000000 --- a/data/presets/presets/craft/scaffolder.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-scaffold", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "scaffolder" - }, - "name": "Scaffolder" -} diff --git a/data/presets/presets/craft/sculptor.json b/data/presets/presets/craft/sculptor.json deleted file mode 100644 index 5a19e7fb75..0000000000 --- a/data/presets/presets/craft/sculptor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-art-gallery", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "sculptor" - }, - "name": "Sculptor" -} diff --git a/data/presets/presets/craft/shoemaker.json b/data/presets/presets/craft/shoemaker.json deleted file mode 100644 index cb69665688..0000000000 --- a/data/presets/presets/craft/shoemaker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-shoe", - "geometry": [ - "point", - "area" - ], - "terms": [ - "cobbler" - ], - "tags": { - "craft": "shoemaker" - }, - "name": "Shoemaker" -} diff --git a/data/presets/presets/craft/signmaker.json b/data/presets/presets/craft/signmaker.json deleted file mode 100644 index d58fd4a5f8..0000000000 --- a/data/presets/presets/craft/signmaker.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "signmaker" - }, - "name": "Signmaker" -} diff --git a/data/presets/presets/craft/stonemason.json b/data/presets/presets/craft/stonemason.json deleted file mode 100644 index da14dc0de9..0000000000 --- a/data/presets/presets/craft/stonemason.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-brick_trowel", - "geometry": [ - "point", - "area" - ], - "terms": [ - "masonry" - ], - "tags": { - "craft": "stonemason" - }, - "name": "Stonemason" -} diff --git a/data/presets/presets/craft/tiler.json b/data/presets/presets/craft/tiler.json deleted file mode 100644 index fa549d8e40..0000000000 --- a/data/presets/presets/craft/tiler.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-brick_trowel", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "tiler" - }, - "name": "Tiler" -} diff --git a/data/presets/presets/craft/tinsmith.json b/data/presets/presets/craft/tinsmith.json deleted file mode 100644 index 0b487b7d3b..0000000000 --- a/data/presets/presets/craft/tinsmith.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "tinsmith" - }, - "name": "Tinsmith" -} diff --git a/data/presets/presets/craft/upholsterer.json b/data/presets/presets/craft/upholsterer.json deleted file mode 100644 index 6d83d7f877..0000000000 --- a/data/presets/presets/craft/upholsterer.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "upholsterer" - }, - "name": "Upholsterer" -} diff --git a/data/presets/presets/craft/watchmaker.json b/data/presets/presets/craft/watchmaker.json deleted file mode 100644 index f48718a873..0000000000 --- a/data/presets/presets/craft/watchmaker.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-watch", - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "watchmaker" - }, - "name": "Watchmaker" -} diff --git a/data/presets/presets/craft/window_construction.json b/data/presets/presets/craft/window_construction.json deleted file mode 100644 index 57873bd965..0000000000 --- a/data/presets/presets/craft/window_construction.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-window", - "geometry": [ - "point", - "area" - ], - "terms": [ - "glass" - ], - "tags": { - "craft": "window_construction" - }, - "name": "Window Construction" -} diff --git a/data/presets/presets/craft/winery.json b/data/presets/presets/craft/winery.json deleted file mode 100644 index 008cca9779..0000000000 --- a/data/presets/presets/craft/winery.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-alcohol-shop", - "moreFields": [ - "{craft}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "craft": "winery" - }, - "name": "Winery" -} diff --git a/data/presets/presets/cycleway/asl.json b/data/presets/presets/cycleway/asl.json deleted file mode 100644 index d9d9e9ba67..0000000000 --- a/data/presets/presets/cycleway/asl.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-bicycle", - "fields": [ - "ref", - "direction_vertex", - "width" - ], - "geometry": [ - "vertex" - ], - "tags": { - "cycleway": "asl" - }, - "terms": [ - "advanced stop box", - "asl", - "bicycle box", - "bike box", - "bikebox", - "cycle box", - "cycle stop marking" - ], - "name": "Advanced Stop Line" -} diff --git a/data/presets/presets/demolished/_building.json b/data/presets/presets/demolished/_building.json deleted file mode 100644 index 693b8b6630..0000000000 --- a/data/presets/presets/demolished/_building.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-house-damage", - "fields": [ - "name", - "address" - ], - "geometry": [ - "area" - ], - "tags": { - "demolished:building": "*" - }, - "name": "Recently Demolished Building", - "searchable": false -} diff --git a/data/presets/presets/disused/_amenity.json b/data/presets/presets/disused/_amenity.json deleted file mode 100644 index e29fa7d33b..0000000000 --- a/data/presets/presets/disused/_amenity.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fields": [ - "disused/amenity" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "disused:amenity": "*" - }, - "matchScore": 0.05, - "searchable": false, - "name": "Disused Amenity" -} diff --git a/data/presets/presets/disused/_railway.json b/data/presets/presets/disused/_railway.json deleted file mode 100644 index 89ba0c74c3..0000000000 --- a/data/presets/presets/disused/_railway.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-rail_profile", - "fields": [ - "disused/railway" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "disused:railway": "*" - }, - "matchScore": 0.05, - "searchable": false, - "name": "Disused Railway Feature" -} diff --git a/data/presets/presets/disused/_shop.json b/data/presets/presets/disused/_shop.json deleted file mode 100644 index cdd3362f20..0000000000 --- a/data/presets/presets/disused/_shop.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "fas-store-alt-slash", - "fields": [ - "disused/shop" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "disused:shop": "*" - }, - "matchScore": 0.05, - "searchable": false, - "name": "Disused Shop" -} diff --git a/data/presets/presets/emergency/_designated.json b/data/presets/presets/emergency/_designated.json deleted file mode 100644 index 25d6c2f153..0000000000 --- a/data/presets/presets/emergency/_designated.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "emergency_combo" - ], - "geometry": [ - "line" - ], - "tags": { - "emergency": "designated" - }, - "name": "Emergency Access Designated", - "searchable": false, - "matchScore": 0.01 -} diff --git a/data/presets/presets/emergency/_destination.json b/data/presets/presets/emergency/_destination.json deleted file mode 100644 index 03ffb4cdef..0000000000 --- a/data/presets/presets/emergency/_destination.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "emergency_combo" - ], - "geometry": [ - "line" - ], - "tags": { - "emergency": "destination" - }, - "name": "Emergency Access Destination", - "searchable": false, - "matchScore": 0.01 -} diff --git a/data/presets/presets/emergency/_no.json b/data/presets/presets/emergency/_no.json deleted file mode 100644 index af39e10778..0000000000 --- a/data/presets/presets/emergency/_no.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "emergency_combo" - ], - "geometry": [ - "line" - ], - "tags": { - "emergency": "no" - }, - "name": "Emergency Access No", - "searchable": false, - "matchScore": 0.01 -} diff --git a/data/presets/presets/emergency/_official.json b/data/presets/presets/emergency/_official.json deleted file mode 100644 index a3c9399307..0000000000 --- a/data/presets/presets/emergency/_official.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "emergency_combo" - ], - "geometry": [ - "line" - ], - "tags": { - "emergency": "official" - }, - "name": "Emergency Access Official", - "searchable": false, - "matchScore": 0.01 -} diff --git a/data/presets/presets/emergency/_private.json b/data/presets/presets/emergency/_private.json deleted file mode 100644 index b3738a7502..0000000000 --- a/data/presets/presets/emergency/_private.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "emergency_combo" - ], - "geometry": [ - "line" - ], - "tags": { - "emergency": "private" - }, - "name": "Emergency Access Private", - "searchable": false, - "matchScore": 0.01 -} diff --git a/data/presets/presets/emergency/_yes.json b/data/presets/presets/emergency/_yes.json deleted file mode 100644 index b1267778d5..0000000000 --- a/data/presets/presets/emergency/_yes.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "emergency_combo" - ], - "geometry": [ - "line" - ], - "tags": { - "emergency": "yes" - }, - "name": "Emergency Access Yes", - "searchable": false, - "matchScore": 0.01 -} diff --git a/data/presets/presets/emergency/ambulance_station.json b/data/presets/presets/emergency/ambulance_station.json deleted file mode 100644 index 79aa1138e4..0000000000 --- a/data/presets/presets/emergency/ambulance_station.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "fas-ambulance", - "fields": [ - "name", - "operator", - "building_area", - "address" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "EMS", - "EMT", - "rescue" - ], - "tags": { - "emergency": "ambulance_station" - }, - "name": "Ambulance Station" -} diff --git a/data/presets/presets/emergency/defibrillator.json b/data/presets/presets/emergency/defibrillator.json deleted file mode 100644 index a3c3303a15..0000000000 --- a/data/presets/presets/emergency/defibrillator.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-defibrillator", - "fields": [ - "indoor", - "ref", - "operator", - "defibrillator/location" - ], - "moreFields": [ - "level", - "opening_hours", - "access_simple" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "AED" - ], - "tags": { - "emergency": "defibrillator" - }, - "name": "Defibrillator" -} diff --git a/data/presets/presets/emergency/fire_alarm.json b/data/presets/presets/emergency/fire_alarm.json deleted file mode 100644 index 8d0529562f..0000000000 --- a/data/presets/presets/emergency/fire_alarm.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "fas-bell", - "fields": [ - "indoor", - "ref", - "operator" - ], - "moreFields": [ - "level" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "emergency": "fire_alarm_box" - }, - "name": "Fire Alarm Call Box" -} diff --git a/data/presets/presets/emergency/fire_extinguisher.json b/data/presets/presets/emergency/fire_extinguisher.json deleted file mode 100644 index 25c794cbf3..0000000000 --- a/data/presets/presets/emergency/fire_extinguisher.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "fas-fire-extinguisher", - "fields": [ - "indoor", - "ref", - "operator" - ], - "moreFields": [ - "level" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "emergency": "fire_extinguisher" - }, - "name": "Fire Extinguisher" -} diff --git a/data/presets/presets/emergency/fire_hose.json b/data/presets/presets/emergency/fire_hose.json deleted file mode 100644 index d5ec6c8c58..0000000000 --- a/data/presets/presets/emergency/fire_hose.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "fas-tape", - "fields": [ - "indoor", - "ref", - "operator" - ], - "moreFields": [ - "level" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "emergency": "fire_hose" - }, - "name": "Fire Hose" -} diff --git a/data/presets/presets/emergency/fire_hydrant.json b/data/presets/presets/emergency/fire_hydrant.json deleted file mode 100644 index bf133b350e..0000000000 --- a/data/presets/presets/emergency/fire_hydrant.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-fire_hydrant", - "fields": [ - "ref", - "fire_hydrant/type", - "colour", - "water_source", - "couplings" - ], - "moreFields": [ - "fire_hydrant/diameter", - "fire_hydrant/pressure", - "level", - "survey/date", - "water_volume" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "fire plug", - "fire water well", - "hydrant" - ], - "tags": { - "emergency": "fire_hydrant" - }, - "name": "Fire Hydrant" -} diff --git a/data/presets/presets/emergency/first_aid_kit.json b/data/presets/presets/emergency/first_aid_kit.json deleted file mode 100644 index e5ddc5fa15..0000000000 --- a/data/presets/presets/emergency/first_aid_kit.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "fas-medkit", - "fields": [ - "indoor", - "ref", - "operator" - ], - "moreFields": [ - "level" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "bandage", - "first aid", - "med", - "med kit", - "medic*", - "medkit" - ], - "tags": { - "emergency": "first_aid_kit" - }, - "name": "First Aid Kit" -} diff --git a/data/presets/presets/emergency/landing_site.json b/data/presets/presets/emergency/landing_site.json deleted file mode 100644 index 4e67a41077..0000000000 --- a/data/presets/presets/emergency/landing_site.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-heliport", - "fields": [ - "name", - "operator", - "surface" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "helicopter", - "helipad", - "heliport" - ], - "tags": { - "emergency": "landing_site" - }, - "name": "Emergency Landing Site" -} diff --git a/data/presets/presets/emergency/life_ring.json b/data/presets/presets/emergency/life_ring.json deleted file mode 100644 index 80bdaaa739..0000000000 --- a/data/presets/presets/emergency/life_ring.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "fas-life-ring", - "fields": [ - "ref", - "operator" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "life buoy", - "kisby ring", - "kisbie ring", - "perry buoy" - ], - "tags": { - "emergency": "life_ring" - }, - "name": "Life Ring" -} diff --git a/data/presets/presets/emergency/lifeguard.json b/data/presets/presets/emergency/lifeguard.json deleted file mode 100644 index 3e952041d2..0000000000 --- a/data/presets/presets/emergency/lifeguard.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "fas-life-ring", - "fields": [ - "ref", - "operator", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "CPR", - "rescue" - ], - "tags": { - "emergency": "lifeguard" - }, - "name": "Lifeguard" -} diff --git a/data/presets/presets/emergency/mountain_rescue.json b/data/presets/presets/emergency/mountain_rescue.json deleted file mode 100644 index 01508f3911..0000000000 --- a/data/presets/presets/emergency/mountain_rescue.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-mountain_rescue", - "fields": [ - "name", - "address", - "operator", - "building_area", - "email", - "website" - ], - "moreFields": [ - "fax", - "gnis/feature_id", - "phone", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "EMS", - "EMT", - "rescue" - ], - "tags": { - "emergency": "mountain_rescue" - }, - "name": "Mountain Rescue" -} diff --git a/data/presets/presets/emergency/phone.json b/data/presets/presets/emergency/phone.json deleted file mode 100644 index efea67f538..0000000000 --- a/data/presets/presets/emergency/phone.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-emergency-phone", - "fields": [ - "ref", - "operator", - "covered", - "indoor", - "booth" - ], - "moreFields": [ - "level" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "emergency": "phone" - }, - "name": "Emergency Phone" -} diff --git a/data/presets/presets/emergency/siren.json b/data/presets/presets/emergency/siren.json deleted file mode 100644 index becaf7f13a..0000000000 --- a/data/presets/presets/emergency/siren.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-volume-up", - "fields": [ - "siren/purpose", - "siren/type", - "ref", - "operator" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "air raid", - "loud", - "noise", - "storm", - "tornado", - "warning" - ], - "tags": { - "emergency": "siren" - }, - "name": "Siren" -} diff --git a/data/presets/presets/emergency/water_tank.json b/data/presets/presets/emergency/water_tank.json deleted file mode 100644 index 4cccd7ed05..0000000000 --- a/data/presets/presets/emergency/water_tank.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "ref", - "operator", - "water_tank/volume", - "drinking_water" - ], - "moreFields": [ - "height", - "material" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "water tank", - "cistern", - "reservoir" - ], - "tags": { - "emergency": "water_tank" - }, - "name": "Emergency Water Tank" -} diff --git a/data/presets/presets/entrance.json b/data/presets/presets/entrance.json deleted file mode 100644 index 11d285f498..0000000000 --- a/data/presets/presets/entrance.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-entrance-alt1", - "fields": [ - "ref", - "entrance", - "door", - "access_simple", - "wheelchair", - "level", - "address" - ], - "geometry": [ - "vertex" - ], - "tags": { - "entrance": "*" - }, - "terms": [ - "entrance", - "exit", - "door" - ], - "matchScore": 0.8, - "name": "Entrance / Exit" -} diff --git a/data/presets/presets/entrance/emergency.json b/data/presets/presets/entrance/emergency.json deleted file mode 100644 index 09ea4859c6..0000000000 --- a/data/presets/presets/entrance/emergency.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-entrance-alt1", - "fields": [ - "ref", - "door", - "access_simple", - "level" - ], - "geometry": [ - "vertex" - ], - "tags": { - "entrance": "emergency" - }, - "terms": [ - "fire exit", - "door" - ], - "matchScore": 0.8, - "name": "Emergency Exit" -} diff --git a/data/presets/presets/entrance/emergency_ward_entrance.json b/data/presets/presets/entrance/emergency_ward_entrance.json deleted file mode 100644 index b04e8316eb..0000000000 --- a/data/presets/presets/entrance/emergency_ward_entrance.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-hospital", - "fields": [ - "ref", - "emergency_ward_entrance", - "address", - "level", - "opening_hours" - ], - "geometry": [ - "vertex" - ], - "tags": { - "emergency": "emergency_ward_entrance" - }, - "addTags": { - "emergency": "emergency_ward_entrance", - "entrance": "yes" - }, - "terms": [ - "accident & emergency department", - "casualty department", - "ed", - "emergency department", - "emergency room", - "emergency ward", - "er", - "ew" - ], - "name": "Emergency Room Entrance" -} diff --git a/data/presets/presets/ford.json b/data/presets/presets/ford.json deleted file mode 100644 index 238304880f..0000000000 --- a/data/presets/presets/ford.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "name", - "depth", - "access", - "seasonal" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "vertex" - ], - "tags": { - "ford": "yes" - }, - "name": "Ford" -} \ No newline at end of file diff --git a/data/presets/presets/golf/bunker.json b/data/presets/presets/golf/bunker.json deleted file mode 100644 index 6528c5f679..0000000000 --- a/data/presets/presets/golf/bunker.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "name" - ], - "geometry": [ - "area" - ], - "tags": { - "golf": "bunker" - }, - "addTags": { - "golf": "bunker", - "natural": "sand" - }, - "terms": [ - "hazard", - "bunker" - ], - "name": "Sand Trap" -} diff --git a/data/presets/presets/golf/cartpath.json b/data/presets/presets/golf/cartpath.json deleted file mode 100644 index acf329fb53..0000000000 --- a/data/presets/presets/golf/cartpath.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-golf_cart", - "fields": [ - "{golf/path}", - "maxspeed" - ], - "geometry": [ - "line" - ], - "tags": { - "golf": "cartpath" - }, - "addTags": { - "golf": "cartpath", - "golf_cart": "designated", - "highway": "service" - }, - "name": "Golf Cartpath" -} diff --git a/data/presets/presets/golf/clubhouse.json b/data/presets/presets/golf/clubhouse.json deleted file mode 100644 index 4296ddf836..0000000000 --- a/data/presets/presets/golf/clubhouse.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "name", - "operator", - "address", - "building_area", - "access_simple" - ], - "moreFields": [ - "air_conditioning", - "fee", - "payment_multi_fee", - "charge_fee", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "opening_hours", - "opening_hours/covid19", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "club house", - "golf clubhouse", - "golf house", - "pro shop" - ], - "tags": { - "golf": "clubhouse" - }, - "name": "Golf Clubhouse" -} diff --git a/data/presets/presets/golf/driving_range.json b/data/presets/presets/golf/driving_range.json deleted file mode 100644 index febe87962a..0000000000 --- a/data/presets/presets/golf/driving_range.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "name", - "capacity" - ], - "geometry": [ - "area" - ], - "tags": { - "golf": "driving_range" - }, - "addTags": { - "golf": "driving_range", - "landuse": "grass" - }, - "name": "Driving Range" -} diff --git a/data/presets/presets/golf/fairway.json b/data/presets/presets/golf/fairway.json deleted file mode 100644 index 65d0de85ec..0000000000 --- a/data/presets/presets/golf/fairway.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "name" - ], - "geometry": [ - "area" - ], - "tags": { - "golf": "fairway" - }, - "addTags": { - "golf": "fairway", - "landuse": "grass" - }, - "name": "Fairway" -} diff --git a/data/presets/presets/golf/green.json b/data/presets/presets/golf/green.json deleted file mode 100644 index 6f824971be..0000000000 --- a/data/presets/presets/golf/green.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-golf_green", - "fields": [ - "name" - ], - "geometry": [ - "area" - ], - "tags": { - "golf": "green" - }, - "addTags": { - "golf": "green", - "landuse": "grass" - }, - "name": "Putting Green" -} diff --git a/data/presets/presets/golf/hole.json b/data/presets/presets/golf/hole.json deleted file mode 100644 index fe5fb4b552..0000000000 --- a/data/presets/presets/golf/hole.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-golf_green", - "fields": [ - "name", - "ref_golf_hole", - "par", - "handicap" - ], - "geometry": [ - "line" - ], - "tags": { - "golf": "hole" - }, - "name": "Golf Hole" -} diff --git a/data/presets/presets/golf/lateral_water_hazard.json b/data/presets/presets/golf/lateral_water_hazard.json deleted file mode 100644 index 16e04513b8..0000000000 --- a/data/presets/presets/golf/lateral_water_hazard.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "name" - ], - "geometry": [ - "area" - ], - "tags": { - "golf": "lateral_water_hazard" - }, - "addTags": { - "golf": "lateral_water_hazard", - "natural": "water" - }, - "name": "Lateral Water Hazard" -} diff --git a/data/presets/presets/golf/path.json b/data/presets/presets/golf/path.json deleted file mode 100644 index 3627d3dead..0000000000 --- a/data/presets/presets/golf/path.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "name", - "surface", - "width", - "structure", - "incline" - ], - "geometry": [ - "line" - ], - "tags": { - "golf": "path" - }, - "addTags": { - "golf": "path", - "highway": "path", - "foot": "designated" - }, - "name": "Golf Walking Path" -} diff --git a/data/presets/presets/golf/rough.json b/data/presets/presets/golf/rough.json deleted file mode 100644 index d65942c5cc..0000000000 --- a/data/presets/presets/golf/rough.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "name" - ], - "geometry": [ - "area" - ], - "tags": { - "golf": "rough" - }, - "addTags": { - "golf": "rough", - "landuse": "grass" - }, - "name": "Rough" -} diff --git a/data/presets/presets/golf/tee.json b/data/presets/presets/golf/tee.json deleted file mode 100644 index 03ff2b32e3..0000000000 --- a/data/presets/presets/golf/tee.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "name" - ], - "geometry": [ - "area" - ], - "tags": { - "golf": "tee" - }, - "addTags": { - "golf": "tee", - "landuse": "grass" - }, - "terms": [ - "teeing ground" - ], - "name": "Tee Box" -} diff --git a/data/presets/presets/golf/water_hazard.json b/data/presets/presets/golf/water_hazard.json deleted file mode 100644 index 5c9e362890..0000000000 --- a/data/presets/presets/golf/water_hazard.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "name" - ], - "geometry": [ - "area" - ], - "tags": { - "golf": "water_hazard" - }, - "addTags": { - "golf": "water_hazard", - "natural": "water" - }, - "name": "Water Hazard" -} diff --git a/data/presets/presets/healthcare.json b/data/presets/presets/healthcare.json deleted file mode 100644 index a3db274c11..0000000000 --- a/data/presets/presets/healthcare.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "icon": "maki-hospital", - "fields": [ - "name", - "healthcare", - "operator", - "healthcare/speciality", - "address", - "building_area", - "phone", - "website" - ], - "moreFields": [ - "brand", - "building/levels_building", - "email", - "fax", - "gnis/feature_id", - "height_building", - "level", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "healthcare": "*" - }, - "terms": [ - "clinic", - "doctor", - "disease", - "health", - "institution", - "sick", - "surgery", - "wellness" - ], - "name": "Healthcare Facility" -} diff --git a/data/presets/presets/healthcare/alternative.json b/data/presets/presets/healthcare/alternative.json deleted file mode 100644 index 5325b503f4..0000000000 --- a/data/presets/presets/healthcare/alternative.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-hospital", - "geometry": [ - "point", - "area" - ], - "terms": [ - "acupuncture", - "anthroposophical", - "applied kinesiology", - "aromatherapy", - "ayurveda", - "herbalism", - "homeopathy", - "hydrotherapy", - "hypnosis", - "naturopathy", - "osteopathy", - "reflexology", - "reiki", - "shiatsu", - "traditional", - "tuina", - "unani" - ], - "tags": { - "healthcare": "alternative" - }, - "name": "Alternative Medicine" -} diff --git a/data/presets/presets/healthcare/alternative/chiropractic.json b/data/presets/presets/healthcare/alternative/chiropractic.json deleted file mode 100644 index 0503409d93..0000000000 --- a/data/presets/presets/healthcare/alternative/chiropractic.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-hospital", - "geometry": [ - "point", - "area" - ], - "terms": [ - "back", - "pain", - "spine" - ], - "tags": { - "healthcare": "alternative", - "healthcare:speciality": "chiropractic" - }, - "name": "Chiropractor" -} diff --git a/data/presets/presets/healthcare/audiologist.json b/data/presets/presets/healthcare/audiologist.json deleted file mode 100644 index bd5e46299a..0000000000 --- a/data/presets/presets/healthcare/audiologist.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-hospital", - "geometry": [ - "point", - "area" - ], - "terms": [ - "ear", - "hearing", - "sound" - ], - "tags": { - "healthcare": "audiologist" - }, - "name": "Audiologist" -} diff --git a/data/presets/presets/healthcare/birthing_center.json b/data/presets/presets/healthcare/birthing_center.json deleted file mode 100644 index b6687eea26..0000000000 --- a/data/presets/presets/healthcare/birthing_center.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "fas-baby", - "geometry": [ - "point", - "area" - ], - "terms": [ - "baby", - "childbirth", - "delivery", - "labour", - "labor", - "pregnancy" - ], - "tags": { - "healthcare": "birthing_center" - }, - "name": "Birthing Center" -} diff --git a/data/presets/presets/healthcare/blood_donation.json b/data/presets/presets/healthcare/blood_donation.json deleted file mode 100644 index b7bbe2f79d..0000000000 --- a/data/presets/presets/healthcare/blood_donation.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-blood-bank", - "fields": [ - "{healthcare}", - "blood_components" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "blood bank", - "blood donation", - "blood transfusion", - "apheresis", - "plasmapheresis", - "plateletpheresis", - "stem cell donation" - ], - "tags": { - "healthcare": "blood_donation" - }, - "name": "Blood Donor Center" -} diff --git a/data/presets/presets/healthcare/counselling.json b/data/presets/presets/healthcare/counselling.json deleted file mode 100644 index 924b4b81a3..0000000000 --- a/data/presets/presets/healthcare/counselling.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-comments", - "geometry": [ - "point", - "area" - ], - "tags": { - "healthcare": "counselling" - }, - "name": "Counselling Center" -} diff --git a/data/presets/presets/healthcare/dentist/orthodontics.json b/data/presets/presets/healthcare/dentist/orthodontics.json deleted file mode 100644 index 2c8310be10..0000000000 --- a/data/presets/presets/healthcare/dentist/orthodontics.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "fas-teeth", - "fields": [ - "{amenity/dentist}" - ], - "moreFields": [ - "{amenity/dentist}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "braces", - "dentistry", - "dentofacial orthopedics", - "headgear", - "jaw alignment", - "teeth", - "tooth" - ], - "tags": { - "healthcare": "dentist", - "healthcare:speciality": "orthodontics" - }, - "addTags": { - "healthcare": "dentist", - "amenity": "dentist", - "healthcare:speciality": "orthodontics" - }, - "reference": { - "key": "healthcare:speciality", - "value": "orthodontics" - }, - "name": "Orthodontist" -} diff --git a/data/presets/presets/healthcare/hospice.json b/data/presets/presets/healthcare/hospice.json deleted file mode 100644 index e7cbbbd347..0000000000 --- a/data/presets/presets/healthcare/hospice.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-hospital", - "geometry": [ - "point", - "area" - ], - "terms": [ - "terminal", - "illness" - ], - "tags": { - "healthcare": "hospice" - }, - "name": "Hospice" -} diff --git a/data/presets/presets/healthcare/laboratory.json b/data/presets/presets/healthcare/laboratory.json deleted file mode 100644 index 6b6d8f52ca..0000000000 --- a/data/presets/presets/healthcare/laboratory.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-vial", - "fields": [ - "name", - "operator", - "website", - "ref", - "address", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "medical_laboratory", - "medical_lab", - "blood_check" - ], - "tags": { - "healthcare": "laboratory" - }, - "name": "Medical Laboratory" -} diff --git a/data/presets/presets/healthcare/midwife.json b/data/presets/presets/healthcare/midwife.json deleted file mode 100644 index f9074c15f7..0000000000 --- a/data/presets/presets/healthcare/midwife.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "fas-baby", - "geometry": [ - "point", - "area" - ], - "terms": [ - "baby", - "childbirth", - "delivery", - "labour", - "labor", - "pregnancy" - ], - "tags": { - "healthcare": "midwife" - }, - "name": "Midwife" -} diff --git a/data/presets/presets/healthcare/occupational_therapist.json b/data/presets/presets/healthcare/occupational_therapist.json deleted file mode 100644 index 25696a04d2..0000000000 --- a/data/presets/presets/healthcare/occupational_therapist.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-hospital", - "geometry": [ - "point", - "area" - ], - "terms": [ - "therapist", - "therapy" - ], - "tags": { - "healthcare": "occupational_therapist" - }, - "name": "Occupational Therapist" -} diff --git a/data/presets/presets/healthcare/optometrist.json b/data/presets/presets/healthcare/optometrist.json deleted file mode 100644 index a82a401381..0000000000 --- a/data/presets/presets/healthcare/optometrist.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "fas-eye", - "geometry": [ - "point", - "area" - ], - "terms": [ - "eye", - "glasses", - "lasik", - "lenses", - "vision" - ], - "tags": { - "healthcare": "optometrist" - }, - "name": "Optometrist" -} diff --git a/data/presets/presets/healthcare/physiotherapist.json b/data/presets/presets/healthcare/physiotherapist.json deleted file mode 100644 index 8b17948fed..0000000000 --- a/data/presets/presets/healthcare/physiotherapist.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-physiotherapist", - "geometry": [ - "point", - "area" - ], - "terms": [ - "physical", - "therapist", - "therapy" - ], - "tags": { - "healthcare": "physiotherapist" - }, - "name": "Physiotherapist" -} diff --git a/data/presets/presets/healthcare/podiatrist.json b/data/presets/presets/healthcare/podiatrist.json deleted file mode 100644 index ebd282fc14..0000000000 --- a/data/presets/presets/healthcare/podiatrist.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-hospital", - "geometry": [ - "point", - "area" - ], - "terms": [ - "foot", - "feet", - "nails" - ], - "tags": { - "healthcare": "podiatrist" - }, - "name": "Podiatrist" -} diff --git a/data/presets/presets/healthcare/psychotherapist.json b/data/presets/presets/healthcare/psychotherapist.json deleted file mode 100644 index ff31495a99..0000000000 --- a/data/presets/presets/healthcare/psychotherapist.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-hospital", - "geometry": [ - "point", - "area" - ], - "terms": [ - "anxiety", - "counselor", - "depression", - "mental health", - "mind", - "suicide", - "therapist", - "therapy" - ], - "tags": { - "healthcare": "psychotherapist" - }, - "name": "Psychotherapist" -} diff --git a/data/presets/presets/healthcare/rehabilitation.json b/data/presets/presets/healthcare/rehabilitation.json deleted file mode 100644 index 5736f89c58..0000000000 --- a/data/presets/presets/healthcare/rehabilitation.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-hospital", - "geometry": [ - "point", - "area" - ], - "terms": [ - "rehab", - "therapist", - "therapy" - ], - "tags": { - "healthcare": "rehabilitation" - }, - "name": "Rehabilitation Facility" -} diff --git a/data/presets/presets/healthcare/speech_therapist.json b/data/presets/presets/healthcare/speech_therapist.json deleted file mode 100644 index dfcb75e67a..0000000000 --- a/data/presets/presets/healthcare/speech_therapist.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "fas-comment", - "geometry": [ - "point", - "area" - ], - "terms": [ - "speech", - "therapist", - "therapy", - "voice" - ], - "tags": { - "healthcare": "speech_therapist" - }, - "name": "Speech Therapist" -} diff --git a/data/presets/presets/highway/_bus_stop.json b/data/presets/presets/highway/_bus_stop.json deleted file mode 100644 index 98a4157f14..0000000000 --- a/data/presets/presets/highway/_bus_stop.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-bus", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "highway": "bus_stop" - }, - "matchScore": 0.95, - "name": "Bus Stop", - "searchable": false, - "replacement": "public_transport/platform/bus_point" -} diff --git a/data/presets/presets/highway/_crossing.json b/data/presets/presets/highway/_crossing.json deleted file mode 100644 index 8be3c3c5cc..0000000000 --- a/data/presets/presets/highway/_crossing.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "crossing" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "crossing" - }, - "searchable": false, - "matchScore": 0.95, - "name": "Crossing" -} diff --git a/data/presets/presets/highway/bridleway.json b/data/presets/presets/highway/bridleway.json deleted file mode 100644 index c84c64bce2..0000000000 --- a/data/presets/presets/highway/bridleway.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "fields": [ - "name", - "surface", - "width", - "structure", - "access", - "incline", - "horse_scale" - ], - "moreFields": [ - "covered", - "dog", - "lit", - "maxweight_bridge", - "smoothness", - "stroller", - "wheelchair" - ], - "icon": "maki-horse-riding", - "geometry": [ - "line" - ], - "tags": { - "highway": "bridleway" - }, - "terms": [ - "bridleway", - "equestrian", - "horse", - "trail" - ], - "name": "Bridle Path" -} diff --git a/data/presets/presets/highway/bus_guideway.json b/data/presets/presets/highway/bus_guideway.json deleted file mode 100644 index 47352410cc..0000000000 --- a/data/presets/presets/highway/bus_guideway.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-bus_guided", - "fields": [ - "name", - "operator", - "oneway", - "structure", - "covered" - ], - "moreFields": [ - "trolley_wire", - "width" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "bus_guideway" - }, - "addTags": { - "highway": "bus_guideway", - "access": "no", - "bus": "designated" - }, - "terms": [], - "name": "Bus Guideway" -} diff --git a/data/presets/presets/highway/construction.json b/data/presets/presets/highway/construction.json deleted file mode 100644 index a1b7309550..0000000000 --- a/data/presets/presets/highway/construction.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-barrier", - "fields": [ - "name", - "construction", - "opening_date", - "check_date", - "note", - "oneway", - "structure", - "access" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "construction", - "access": "no" - }, - "terms": [ - "closure", - "construction", - "road closed", - "road work", - "roadwork" - ], - "name": "Closed Road" -} diff --git a/data/presets/presets/highway/corridor.json b/data/presets/presets/highway/corridor.json deleted file mode 100644 index 682872d199..0000000000 --- a/data/presets/presets/highway/corridor.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-pedestrian_walled", - "fields": [ - "name", - "width", - "level", - "access_simple", - "wheelchair" - ], - "moreFields": [ - "covered", - "indoor", - "maxheight", - "stroller" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "corridor" - }, - "addTags": { - "highway": "corridor", - "indoor": "yes" - }, - "terms": [ - "gallery", - "hall", - "hallway", - "indoor", - "passage", - "passageway" - ], - "name": "Indoor Corridor" -} diff --git a/data/presets/presets/highway/crossing/_zebra-raised.json b/data/presets/presets/highway/crossing/_zebra-raised.json deleted file mode 100644 index 6f420ff75c..0000000000 --- a/data/presets/presets/highway/crossing/_zebra-raised.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-pedestrian_crosswalk", - "fields": [ - "crossing", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "crossing", - "crossing": "zebra", - "traffic_calming": "table" - }, - "reference": { - "key": "traffic_calming", - "value": "table" - }, - "name": "Marked Crosswalk (Raised)", - "searchable": false -} diff --git a/data/presets/presets/highway/crossing/_zebra.json b/data/presets/presets/highway/crossing/_zebra.json deleted file mode 100644 index 87014d7eb2..0000000000 --- a/data/presets/presets/highway/crossing/_zebra.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-pedestrian_crosswalk", - "fields": [ - "crossing", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "crossing", - "crossing": "zebra" - }, - "reference": { - "key": "highway", - "value": "crossing" - }, - "name": "Marked Crosswalk", - "searchable": false -} diff --git a/data/presets/presets/highway/crossing/marked-raised.json b/data/presets/presets/highway/crossing/marked-raised.json deleted file mode 100644 index 83fa6f4741..0000000000 --- a/data/presets/presets/highway/crossing/marked-raised.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-pedestrian_crosswalk", - "fields": [ - "crossing", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "crossing", - "crossing": "marked", - "traffic_calming": "table" - }, - "addTags": { - "highway": "crossing", - "crossing": "marked", - "traffic_calming": "table" - }, - "reference": { - "key": "traffic_calming", - "value": "table" - }, - "terms": [ - "zebra crossing", - "marked crossing", - "crosswalk", - "flat top", - "hump", - "speed", - "slow" - ], - "name": "Marked Crosswalk (Raised)" -} diff --git a/data/presets/presets/highway/crossing/marked.json b/data/presets/presets/highway/crossing/marked.json deleted file mode 100644 index 924ace9cb1..0000000000 --- a/data/presets/presets/highway/crossing/marked.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-pedestrian_crosswalk", - "fields": [ - "crossing", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "crossing", - "crossing": "marked" - }, - "addTags": { - "highway": "crossing", - "crossing": "marked" - }, - "reference": { - "key": "highway", - "value": "crossing" - }, - "terms": [ - "zebra crossing", - "marked crossing", - "crosswalk" - ], - "name": "Marked Crosswalk" -} diff --git a/data/presets/presets/highway/crossing/unmarked-raised.json b/data/presets/presets/highway/crossing/unmarked-raised.json deleted file mode 100644 index fff5477f16..0000000000 --- a/data/presets/presets/highway/crossing/unmarked-raised.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "crossing", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "crossing", - "crossing": "unmarked", - "traffic_calming": "table" - }, - "reference": { - "key": "traffic_calming", - "value": "table" - }, - "terms": [ - "flat top", - "hump", - "speed", - "slow" - ], - "name": "Unmarked Crossing (Raised)" -} diff --git a/data/presets/presets/highway/crossing/unmarked.json b/data/presets/presets/highway/crossing/unmarked.json deleted file mode 100644 index 0ca68c8a60..0000000000 --- a/data/presets/presets/highway/crossing/unmarked.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "crossing", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "crossing", - "crossing": "unmarked" - }, - "addTags": { - "highway": "crossing", - "crossing": "unmarked" - }, - "reference": { - "key": "crossing", - "value": "unmarked" - }, - "terms": [], - "name": "Unmarked Crossing" -} diff --git a/data/presets/presets/highway/cycleway.json b/data/presets/presets/highway/cycleway.json deleted file mode 100644 index 46c4cc7580..0000000000 --- a/data/presets/presets/highway/cycleway.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "fas-biking", - "fields": [ - "name", - "oneway", - "surface", - "width", - "structure", - "access", - "incline" - ], - "moreFields": [ - "covered", - "dog", - "lit", - "maxspeed", - "maxweight_bridge", - "not/name", - "smoothness", - "stroller", - "wheelchair" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "cycleway" - }, - "terms": [ - "bicyle path", - "bike path", - "cycling path" - ], - "name": "Cycle Path" -} diff --git a/data/presets/presets/highway/cycleway/_crossing.json b/data/presets/presets/highway/cycleway/_crossing.json deleted file mode 100644 index 3a8e678377..0000000000 --- a/data/presets/presets/highway/cycleway/_crossing.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-cyclist_crosswalk", - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "cycleway": "crossing" - }, - "addTags": { - "highway": "cycleway", - "cycleway": "crossing" - }, - "reference": { - "key": "cycleway", - "value": "crossing" - }, - "searchable": false, - "matchScore": 0.95, - "name": "Cycle Crossing" -} diff --git a/data/presets/presets/highway/cycleway/bicycle_foot.json b/data/presets/presets/highway/cycleway/bicycle_foot.json deleted file mode 100644 index 5aa1112b09..0000000000 --- a/data/presets/presets/highway/cycleway/bicycle_foot.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "notCountryCodes": [ - "fr", "lt", "pl", "de" - ], - "icon": "temaki-pedestrian_and_cyclist", - "fields": [ - "name", - "segregated", - "oneway", - "surface", - "width", - "structure", - "access", - "incline" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "cycleway", - "foot": "designated" - }, - "addTags": { - "highway": "cycleway", - "foot": "designated", - "bicycle": "designated" - }, - "terms": [ - "bicycle and foot path", - "bike and pedestrian path", - "green way", - "greenway", - "mixed-use trail", - "multi-use trail", - "segregated trail", - "shared path", - "shared use path", - "rail trail" - ], - "matchScore": 0.9, - "name": "Cycle & Foot Path" -} diff --git a/data/presets/presets/highway/cycleway/crossing/bicycle_foot.json b/data/presets/presets/highway/cycleway/crossing/bicycle_foot.json deleted file mode 100644 index b26af35c2f..0000000000 --- a/data/presets/presets/highway/cycleway/crossing/bicycle_foot.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "notCountryCodes": [ - "fr", "lt", "pl" - ], - "icon": "temaki-ped_cyclist_crosswalk", - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "cycleway", - "cycleway": "crossing", - "foot": "designated" - }, - "addTags": { - "highway": "cycleway", - "cycleway": "crossing", - "foot": "designated", - "bicycle": "designated" - }, - "reference": { - "key": "cycleway", - "value": "crossing" - }, - "terms": [ - "bicycle and foot crosswalk", - "bike and pedestrian crossing", - "cycleway", - "cycling", - "cyclist" - ], - "matchScore": 0.9, - "name": "Cycle & Foot Crossing" -} diff --git a/data/presets/presets/highway/cycleway/crossing/marked.json b/data/presets/presets/highway/cycleway/crossing/marked.json deleted file mode 100644 index 31a4e8383e..0000000000 --- a/data/presets/presets/highway/cycleway/crossing/marked.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-cyclist_crosswalk", - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "cycleway", - "cycleway": "crossing", - "crossing": "marked" - }, - "reference": { - "key": "cycleway", - "value": "crossing" - }, - "terms": [ - "cycle crosswalk", - "cycle path crossing", - "cycleway crossing", - "bicycle crossing", - "bike crossing" - ], - "matchScore": 0.95, - "name": "Marked Cycle Crossing" -} diff --git a/data/presets/presets/highway/cycleway/crossing/unmarked.json b/data/presets/presets/highway/cycleway/crossing/unmarked.json deleted file mode 100644 index cce9e9f1ca..0000000000 --- a/data/presets/presets/highway/cycleway/crossing/unmarked.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "fas-biking", - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "cycleway", - "cycleway": "crossing", - "crossing": "unmarked" - }, - "reference": { - "key": "cycleway", - "value": "crossing" - }, - "terms": [ - "cycle path crossing", - "cycleway crossing", - "bicycle crossing", - "bike crossing" - ], - "matchScore": 0.95, - "name": "Unmarked Cycle Crossing" -} diff --git a/data/presets/presets/highway/elevator.json b/data/presets/presets/highway/elevator.json deleted file mode 100644 index 69715bbff8..0000000000 --- a/data/presets/presets/highway/elevator.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-elevator", - "fields": [ - "ref", - "level_semi", - "access_simple", - "wheelchair", - "maxweight" - ], - "moreFields": [ - "maxheight", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "elevator" - }, - "terms": [ - "lift" - ], - "name": "Elevator" -} diff --git a/data/presets/presets/highway/emergency_bay.json b/data/presets/presets/highway/emergency_bay.json deleted file mode 100644 index bbb109cee0..0000000000 --- a/data/presets/presets/highway/emergency_bay.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "maki-car", - "geometry": [ - "vertex" - ], - "tags": { - "highway": "emergency_bay" - }, - "terms": [ - "Highway Emergency Bay" - ], - "name": "Emergency Stopping Place" -} diff --git a/data/presets/presets/highway/footway.json b/data/presets/presets/highway/footway.json deleted file mode 100644 index 0844fe2113..0000000000 --- a/data/presets/presets/highway/footway.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "name", - "surface", - "width", - "structure", - "access", - "incline" - ], - "moreFields": [ - "covered", - "dog", - "lit", - "maxweight_bridge", - "not/name", - "smoothness", - "stroller", - "tactile_paving", - "wheelchair" - ], - "geometry": [ - "line" - ], - "terms": [ - "hike", - "hiking", - "promenade", - "trackway", - "trail", - "walk" - ], - "tags": { - "highway": "footway" - }, - "name": "Foot Path" -} diff --git a/data/presets/presets/highway/footway/_crossing.json b/data/presets/presets/highway/footway/_crossing.json deleted file mode 100644 index 61a3e50f33..0000000000 --- a/data/presets/presets/highway/footway/_crossing.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "footway": "crossing" - }, - "addTags": { - "highway": "footway", - "footway": "crossing" - }, - "reference": { - "key": "footway", - "value": "crossing" - }, - "searchable": false, - "name": "Pedestrian Crossing" -} diff --git a/data/presets/presets/highway/footway/_zebra-raised.json b/data/presets/presets/highway/footway/_zebra-raised.json deleted file mode 100644 index 2c34240e81..0000000000 --- a/data/presets/presets/highway/footway/_zebra-raised.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "temaki-pedestrian_crosswalk", - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra", - "traffic_calming": "table" - }, - "reference": { - "key": "traffic_calming", - "value": "table" - }, - "terms": [ - "zebra crossing", - "marked crossing", - "crosswalk", - "flat top", - "hump", - "speed", - "slow" - ], - "name": "Marked Crosswalk (Raised)", - "searchable": false -} diff --git a/data/presets/presets/highway/footway/_zebra.json b/data/presets/presets/highway/footway/_zebra.json deleted file mode 100644 index 05ffdcc9cb..0000000000 --- a/data/presets/presets/highway/footway/_zebra.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-pedestrian_crosswalk", - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "footway", - "footway": "crossing", - "crossing": "zebra" - }, - "reference": { - "key": "footway", - "value": "crossing" - }, - "terms": [ - "zebra crossing", - "marked crossing", - "crosswalk" - ], - "name": "Marked Crosswalk", - "searchable": false -} diff --git a/data/presets/presets/highway/footway/access_aisle.json b/data/presets/presets/highway/footway/access_aisle.json deleted file mode 100644 index 26db932883..0000000000 --- a/data/presets/presets/highway/footway/access_aisle.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "icon": "temaki-striped_zone", - "fields": [ - "access_aisle", - "width", - "surface", - "tactile_paving", - "access", - "wheelchair" - ], - "moreFields": [ - "covered", - "dog", - "incline", - "lit", - "maxweight_bridge", - "name", - "ref", - "smoothness", - "stroller", - "structure" - ], - "geometry": [ - "line" - ], - "terms": [ - "accessible van loading zone", - "disabled parking access zone", - "handicap parking access zone", - "parking lot aisle", - "striped zone", - "tow zone", - "tow-away zone", - "towaway zone", - "wheelchair aisle" - ], - "tags": { - "highway": "footway", - "footway": "access_aisle" - }, - "reference": { - "key": "footway", - "value": "access_aisle" - }, - "name": "Access Aisle" -} diff --git a/data/presets/presets/highway/footway/conveying.json b/data/presets/presets/highway/footway/conveying.json deleted file mode 100644 index 01d92297e7..0000000000 --- a/data/presets/presets/highway/footway/conveying.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "name", - "conveying", - "access_simple", - "lit", - "width", - "wheelchair" - ], - "geometry": [ - "line" - ], - "terms": [ - "moving sidewalk", - "autwalk", - "skywalk", - "travolator", - "travelator", - "travellator", - "conveyor" - ], - "tags": { - "highway": "footway", - "conveying": "*" - }, - "name": "Moving Walkway" -} diff --git a/data/presets/presets/highway/footway/marked-raised.json b/data/presets/presets/highway/footway/marked-raised.json deleted file mode 100644 index bf27ab08d3..0000000000 --- a/data/presets/presets/highway/footway/marked-raised.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "temaki-pedestrian_crosswalk", - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "footway": "crossing", - "crossing": "marked", - "traffic_calming": "table" - }, - "addTags": { - "highway": "footway", - "footway": "crossing", - "crossing": "marked", - "traffic_calming": "table" - }, - "reference": { - "key": "traffic_calming", - "value": "table" - }, - "terms": [ - "zebra crossing", - "marked crossing", - "crosswalk", - "flat top", - "hump", - "speed", - "slow" - ], - "name": "Marked Crosswalk (Raised)" -} diff --git a/data/presets/presets/highway/footway/marked.json b/data/presets/presets/highway/footway/marked.json deleted file mode 100644 index 59cb0f86df..0000000000 --- a/data/presets/presets/highway/footway/marked.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-pedestrian_crosswalk", - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "footway": "crossing", - "crossing": "marked" - }, - "addTags": { - "highway": "footway", - "footway": "crossing", - "crossing": "marked" - }, - "reference": { - "key": "footway", - "value": "crossing" - }, - "terms": [ - "marked foot path crossing", - "marked crossing", - "marked pedestrian crosswalk", - "zebra crossing" - ], - "name": "Marked Crosswalk" -} diff --git a/data/presets/presets/highway/footway/sidewalk.json b/data/presets/presets/highway/footway/sidewalk.json deleted file mode 100644 index 106a183bf7..0000000000 --- a/data/presets/presets/highway/footway/sidewalk.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "geometry": [ - "line" - ], - "tags": { - "footway": "sidewalk" - }, - "addTags": { - "highway": "footway", - "footway": "sidewalk" - }, - "reference": { - "key": "footway", - "value": "sidewalk" - }, - "terms": [ - "pavement", - "sidepath" - ], - "name": "Sidewalk" -} diff --git a/data/presets/presets/highway/footway/unmarked-raised.json b/data/presets/presets/highway/footway/unmarked-raised.json deleted file mode 100644 index 4120e091ae..0000000000 --- a/data/presets/presets/highway/footway/unmarked-raised.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "footway": "crossing", - "crossing": "unmarked", - "traffic_calming": "table" - }, - "addTags": { - "highway": "footway", - "footway": "crossing", - "crossing": "unmarked", - "traffic_calming": "table" - }, - "reference": { - "key": "traffic_calming", - "value": "table" - }, - "terms": [ - "flat top", - "hump", - "speed", - "slow" - ], - "name": "Unmarked Crossing (Raised)" -} diff --git a/data/presets/presets/highway/footway/unmarked.json b/data/presets/presets/highway/footway/unmarked.json deleted file mode 100644 index 4dfeb586ed..0000000000 --- a/data/presets/presets/highway/footway/unmarked.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "crossing", - "access", - "surface", - "tactile_paving", - "crossing/island" - ], - "geometry": [ - "line" - ], - "tags": { - "footway": "crossing", - "crossing": "unmarked" - }, - "addTags": { - "highway": "footway", - "footway": "crossing", - "crossing": "unmarked" - }, - "reference": { - "key": "footway", - "value": "crossing" - }, - "terms": [ - "unmarked foot path crossing", - "unmarked crosswalk", - "unmarked pedestrian crossing" - ], - "name": "Unmarked Crossing" -} diff --git a/data/presets/presets/highway/give_way.json b/data/presets/presets/highway/give_way.json deleted file mode 100644 index e6001a406e..0000000000 --- a/data/presets/presets/highway/give_way.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-yield", - "fields": [ - "direction_vertex_dual" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "give_way" - }, - "terms": [ - "give way", - "yield", - "sign" - ], - "name": "Yield Sign" -} diff --git a/data/presets/presets/highway/living_street.json b/data/presets/presets/highway/living_street.json deleted file mode 100644 index 7fd99b27de..0000000000 --- a/data/presets/presets/highway/living_street.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "iD-highway-living-street", - "fields": [ - "name", - "oneway", - "maxspeed", - "lanes", - "surface", - "structure", - "access" - ], - "moreFields": [ - "covered", - "cycleway", - "flood_prone", - "junction_line", - "lit", - "maxheight", - "maxweight_bridge", - "oneway/bicycle", - "smoothness", - "trolley_wire", - "width" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "living_street" - }, - "name": "Living Street" -} diff --git a/data/presets/presets/highway/milestone.json b/data/presets/presets/highway/milestone.json deleted file mode 100644 index 0855a36847..0000000000 --- a/data/presets/presets/highway/milestone.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-milestone", - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "distance", - "direction_vertex" - ], - "tags": { - "highway": "milestone" - }, - "terms": [ - "mile marker", - "mile post", - "mile stone", - "mileage marker", - "milemarker", - "milepost" - ], - "name": "Highway Milestone" -} diff --git a/data/presets/presets/highway/mini_roundabout.json b/data/presets/presets/highway/mini_roundabout.json deleted file mode 100644 index 8cd329f3cd..0000000000 --- a/data/presets/presets/highway/mini_roundabout.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-circle-stroked", - "geometry": [ - "vertex" - ], - "terms": [ - "traffic circle" - ], - "tags": { - "highway": "mini_roundabout" - }, - "fields": [ - "direction_clock" - ], - "name": "Mini-Roundabout" -} diff --git a/data/presets/presets/highway/motorway.json b/data/presets/presets/highway/motorway.json deleted file mode 100644 index 10b3f61dec..0000000000 --- a/data/presets/presets/highway/motorway.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "icon": "iD-highway-motorway", - "fields": [ - "name", - "ref_road_number", - "oneway_yes", - "maxspeed", - "lanes", - "surface", - "structure", - "access" - ], - "moreFields": [ - "charge_toll", - "covered", - "incline", - "junction_line", - "lit", - "maxheight", - "maxweight_bridge", - "minspeed", - "not/name", - "smoothness", - "toll", - "width" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "motorway" - }, - "terms": [ - "autobahn", - "expressway", - "freeway", - "highway", - "interstate", - "parkway", - "road", - "street", - "thruway", - "turnpike" - ], - "name": "Motorway" -} diff --git a/data/presets/presets/highway/motorway_junction.json b/data/presets/presets/highway/motorway_junction.json deleted file mode 100644 index 4ebb18ce68..0000000000 --- a/data/presets/presets/highway/motorway_junction.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-junction", - "fields": [ - "ref_highway_junction", - "name" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "motorway_junction" - }, - "terms": [ - "exit" - ], - "name": "Motorway Junction / Exit" -} diff --git a/data/presets/presets/highway/motorway_link.json b/data/presets/presets/highway/motorway_link.json deleted file mode 100644 index 073b92e35c..0000000000 --- a/data/presets/presets/highway/motorway_link.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "icon": "iD-highway-motorway-link", - "fields": [ - "destination_oneway", - "destination/ref_oneway", - "junction/ref_oneway", - "oneway", - "maxspeed", - "lanes", - "surface", - "structure", - "access" - ], - "moreFields": [ - "charge_toll", - "covered", - "destination/symbol_oneway", - "incline", - "junction_line", - "lit", - "maxheight", - "maxspeed/advisory", - "maxweight_bridge", - "name", - "ref_road_number", - "smoothness", - "toll", - "width" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "motorway_link" - }, - "terms": [ - "exit", - "ramp", - "road", - "street", - "on ramp", - "off ramp" - ], - "name": "Motorway Link" -} diff --git a/data/presets/presets/highway/passing_place.json b/data/presets/presets/highway/passing_place.json deleted file mode 100644 index 843d49aa1e..0000000000 --- a/data/presets/presets/highway/passing_place.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "maki-circle-stroked", - "geometry": [ - "vertex" - ], - "tags": { - "highway": "passing_place" - }, - "terms": [ - "turnout, pullout" - ], - "name": "Passing Place" -} diff --git a/data/presets/presets/highway/path.json b/data/presets/presets/highway/path.json deleted file mode 100644 index 341ca31ce8..0000000000 --- a/data/presets/presets/highway/path.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "icon": "iD-other-line", - "fields": [ - "name", - "surface", - "width", - "structure", - "access", - "incline" - ], - "moreFields": [ - "covered", - "dog", - "gnis/feature_id", - "horse_scale", - "informal", - "lit", - "maxweight_bridge", - "mtb/scale", - "mtb/scale/imba", - "mtb/scale/uphill", - "not/name", - "ref", - "sac_scale", - "smoothness", - "stroller", - "trail_visibility", - "wheelchair" - ], - "geometry": [ - "line" - ], - "terms": [ - "hike", - "hiking", - "trackway", - "trail", - "walk" - ], - "tags": { - "highway": "path" - }, - "name": "Path" -} diff --git a/data/presets/presets/highway/path/boardwalk.json b/data/presets/presets/highway/path/boardwalk.json deleted file mode 100644 index ded75c8f00..0000000000 --- a/data/presets/presets/highway/path/boardwalk.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "geometry": [ - "line" - ], - "tags": { - "highway": "path", - "bridge": "boardwalk" - }, - "addTags": { - "highway": "path", - "bridge": "boardwalk", - "surface": "wood" - }, - "reference": { - "key": "bridge", - "value": "boardwalk" - }, - "terms": [ - "pier", - "plank walkway", - "wooden raised foot path" - ], - "name": "Boardwalk" -} diff --git a/data/presets/presets/highway/path/informal.json b/data/presets/presets/highway/path/informal.json deleted file mode 100644 index a4efc554d7..0000000000 --- a/data/presets/presets/highway/path/informal.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "icon": "iD-other-line", - "fields": [ - "surface", - "width", - "access", - "trail_visibility", - "smoothness", - "incline" - ], - "moreFields": [ - "covered", - "dog", - "horse_scale", - "informal", - "lit", - "maxweight_bridge", - "mtb/scale", - "mtb/scale/imba", - "mtb/scale/uphill", - "sac_scale", - "stroller", - "structure", - "wheelchair" - ], - "geometry": [ - "line" - ], - "terms": [ - "bootleg trail", - "cow path", - "desire line", - "desire path", - "desireline", - "desirepath", - "elephant path", - "game trail", - "goat track", - "herd path", - "pig trail", - "shortcut", - "social trail", - "use trail" - ], - "tags": { - "highway": "path", - "informal": "yes" - }, - "reference": { - "key": "informal" - }, - "name": "Informal Path" -} diff --git a/data/presets/presets/highway/pedestrian_area.json b/data/presets/presets/highway/pedestrian_area.json deleted file mode 100644 index b7ecb9ff0f..0000000000 --- a/data/presets/presets/highway/pedestrian_area.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "name", - "surface", - "lit", - "width", - "structure", - "access" - ], - "geometry": [ - "area" - ], - "tags": { - "highway": "pedestrian" - }, - "terms": [ - "center", - "centre", - "plaza", - "quad", - "square", - "walkway" - ], - "name": "Pedestrian Area" -} diff --git a/data/presets/presets/highway/pedestrian_line.json b/data/presets/presets/highway/pedestrian_line.json deleted file mode 100644 index e3d173d517..0000000000 --- a/data/presets/presets/highway/pedestrian_line.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "name", - "surface", - "lit", - "width", - "oneway", - "structure", - "access" - ], - "moreFields": [ - "covered", - "incline", - "maxweight_bridge", - "smoothness" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "pedestrian" - }, - "terms": [ - "center", - "centre", - "plaza", - "quad", - "square", - "walkway" - ], - "name": "Pedestrian Street" -} diff --git a/data/presets/presets/highway/primary.json b/data/presets/presets/highway/primary.json deleted file mode 100644 index 371bae8786..0000000000 --- a/data/presets/presets/highway/primary.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "iD-highway-primary", - "fields": [ - "name", - "oneway", - "maxspeed", - "lanes", - "surface", - "structure", - "ref_road_number", - "access" - ], - "moreFields": [ - "charge_toll", - "covered", - "cycleway", - "flood_prone", - "incline", - "junction_line", - "lit", - "maxheight", - "maxspeed/advisory", - "maxweight_bridge", - "not/name", - "oneway/bicycle", - "smoothness", - "toll", - "trolley_wire", - "width" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "primary" - }, - "terms": [ - "road", - "street" - ], - "name": "Primary Road" -} diff --git a/data/presets/presets/highway/primary_link.json b/data/presets/presets/highway/primary_link.json deleted file mode 100644 index b1ea14b76c..0000000000 --- a/data/presets/presets/highway/primary_link.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "icon": "iD-highway-primary-link", - "fields": [ - "destination_oneway", - "destination/ref_oneway", - "oneway", - "maxspeed", - "lanes", - "surface", - "structure", - "access" - ], - "moreFields": [ - "charge_toll", - "covered", - "cycleway", - "destination/symbol_oneway", - "flood_prone", - "incline", - "junction_line", - "junction/ref_oneway", - "lit", - "maxheight", - "maxspeed/advisory", - "maxweight_bridge", - "name", - "oneway/bicycle", - "ref_road_number", - "smoothness", - "toll", - "trolley_wire", - "width" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "primary_link" - }, - "terms": [ - "on ramp", - "off ramp", - "ramp", - "road", - "street" - ], - "name": "Primary Link" -} diff --git a/data/presets/presets/highway/raceway.json b/data/presets/presets/highway/raceway.json deleted file mode 100644 index 2cc157c3b7..0000000000 --- a/data/presets/presets/highway/raceway.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "temaki-speedway_oval", - "fields": [ - "name", - "oneway", - "surface", - "sport_racing_motor", - "lit", - "width", - "lanes", - "structure" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "highway": "raceway" - }, - "addTags": { - "highway": "raceway", - "sport": "motor" - }, - "terms": [ - "auto*", - "formula one", - "kart", - "motocross", - "nascar", - "race*", - "track" - ], - "name": "Motorsport Racetrack" -} diff --git a/data/presets/presets/highway/raceway/karting.json b/data/presets/presets/highway/raceway/karting.json deleted file mode 100644 index 1a40de921f..0000000000 --- a/data/presets/presets/highway/raceway/karting.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-speedway_8", - "geometry": [ - "line", - "area" - ], - "tags": { - "highway": "raceway", - "sport": "karting" - }, - "reference": { - "key": "sport", - "value": "karting" - }, - "terms": [ - "carting", - "go carts", - "go karts", - "go-karts", - "gokarts", - "kart racing", - "karting track", - "motorsports", - "shifter karts", - "superkarts" - ], - "name": "Karting Racetrack" -} diff --git a/data/presets/presets/highway/raceway/motocross.json b/data/presets/presets/highway/raceway/motocross.json deleted file mode 100644 index fce5216341..0000000000 --- a/data/presets/presets/highway/raceway/motocross.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "fas-motorcycle", - "geometry": [ - "line", - "area" - ], - "tags": { - "highway": "raceway", - "sport": "motocross" - }, - "reference": { - "key": "sport", - "value": "motocross" - }, - "terms": [ - "off-road racing", - "offroad moto racing", - "motocross circuit", - "motorcycle track", - "motorsports" - ], - "name": "Motocross Racetrack" -} diff --git a/data/presets/presets/highway/residential.json b/data/presets/presets/highway/residential.json deleted file mode 100644 index ee1dead910..0000000000 --- a/data/presets/presets/highway/residential.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "iD-highway-residential", - "fields": [ - "name", - "oneway", - "maxspeed", - "lanes", - "surface", - "structure", - "access" - ], - "moreFields": [ - "covered", - "cycleway", - "flood_prone", - "incline", - "junction_line", - "lit", - "maxheight", - "maxspeed/advisory", - "maxweight_bridge", - "not/name", - "oneway/bicycle", - "smoothness", - "trolley_wire", - "width" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "residential" - }, - "terms": [ - "road", - "street" - ], - "name": "Residential Road" -} diff --git a/data/presets/presets/highway/rest_area.json b/data/presets/presets/highway/rest_area.json deleted file mode 100644 index 797a99be7f..0000000000 --- a/data/presets/presets/highway/rest_area.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "maki-car", - "fields": [ - "name", - "operator", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "highway": "rest_area" - }, - "terms": [ - "rest stop" - ], - "name": "Rest Area" -} diff --git a/data/presets/presets/highway/road.json b/data/presets/presets/highway/road.json deleted file mode 100644 index 5ece8630c7..0000000000 --- a/data/presets/presets/highway/road.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "iD-other-line", - "fields": [ - "highway", - "{highway/residential}" - ], - "moreFields": [ - "{highway/residential}" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "road" - }, - "terms": [ - "road", - "street" - ], - "name": "Unknown Road" -} diff --git a/data/presets/presets/highway/road/bridge.json b/data/presets/presets/highway/road/bridge.json deleted file mode 100644 index baa29d42a3..0000000000 --- a/data/presets/presets/highway/road/bridge.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "iD-other-line", - "fields": [ - "highway", - "{highway/residential}" - ], - "moreFields": [ - "{highway/residential}" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "road", - "bridge": "*" - }, - "addTags": { - "highway": "road", - "bridge": "yes", - "layer": "1" - }, - "name": "Unknown Road Bridge", - "matchScore": 0.25 -} diff --git a/data/presets/presets/highway/secondary.json b/data/presets/presets/highway/secondary.json deleted file mode 100644 index cf9e4dad1c..0000000000 --- a/data/presets/presets/highway/secondary.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "iD-highway-secondary", - "fields": [ - "{highway/primary}" - ], - "moreFields": [ - "{highway/primary}" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "secondary" - }, - "terms": [ - "road", - "street" - ], - "name": "Secondary Road" -} diff --git a/data/presets/presets/highway/secondary_link.json b/data/presets/presets/highway/secondary_link.json deleted file mode 100644 index 8275ac0814..0000000000 --- a/data/presets/presets/highway/secondary_link.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "iD-highway-secondary-link", - "fields": [ - "{highway/primary_link}" - ], - "moreFields": [ - "{highway/primary_link}" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "secondary_link" - }, - "terms": [ - "on ramp", - "off ramp", - "ramp", - "road", - "street" - ], - "name": "Secondary Link" -} diff --git a/data/presets/presets/highway/service.json b/data/presets/presets/highway/service.json deleted file mode 100644 index 3e3bdfc4c2..0000000000 --- a/data/presets/presets/highway/service.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "iD-highway-service", - "fields": [ - "name", - "service", - "oneway", - "maxspeed", - "surface", - "covered", - "structure", - "access" - ], - "moreFields": [ - "flood_prone", - "incline", - "lanes", - "lit", - "maxheight", - "maxspeed/advisory", - "maxweight_bridge", - "oneway/bicycle", - "smoothness", - "trolley_wire", - "width" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "service" - }, - "terms": [ - "road", - "street" - ], - "matchScore": 0.9, - "name": "Service Road" -} diff --git a/data/presets/presets/highway/service/alley.json b/data/presets/presets/highway/service/alley.json deleted file mode 100644 index ce84eeab65..0000000000 --- a/data/presets/presets/highway/service/alley.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-highway-service", - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "service": "alley" - }, - "reference": { - "key": "service", - "value": "alley" - }, - "name": "Alley" -} diff --git a/data/presets/presets/highway/service/drive-through.json b/data/presets/presets/highway/service/drive-through.json deleted file mode 100644 index 1bf4c0c921..0000000000 --- a/data/presets/presets/highway/service/drive-through.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-highway-service", - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "service": "drive-through" - }, - "reference": { - "key": "service", - "value": "drive-through" - }, - "name": "Drive-Through" -} diff --git a/data/presets/presets/highway/service/driveway.json b/data/presets/presets/highway/service/driveway.json deleted file mode 100644 index 26fc62fcf5..0000000000 --- a/data/presets/presets/highway/service/driveway.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-highway-service", - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "service": "driveway" - }, - "reference": { - "key": "service", - "value": "driveway" - }, - "name": "Driveway" -} diff --git a/data/presets/presets/highway/service/emergency_access.json b/data/presets/presets/highway/service/emergency_access.json deleted file mode 100644 index 1eed046c86..0000000000 --- a/data/presets/presets/highway/service/emergency_access.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-highway-service", - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "service": "emergency_access" - }, - "reference": { - "key": "service", - "value": "emergency_access" - }, - "name": "Emergency Access" -} diff --git a/data/presets/presets/highway/service/parking_aisle.json b/data/presets/presets/highway/service/parking_aisle.json deleted file mode 100644 index 2567f06a7c..0000000000 --- a/data/presets/presets/highway/service/parking_aisle.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-highway-service", - "geometry": [ - "line" - ], - "tags": { - "highway": "service", - "service": "parking_aisle" - }, - "reference": { - "key": "service", - "value": "parking_aisle" - }, - "name": "Parking Aisle" -} diff --git a/data/presets/presets/highway/services.json b/data/presets/presets/highway/services.json deleted file mode 100644 index 0893cda0a9..0000000000 --- a/data/presets/presets/highway/services.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "maki-car", - "fields": [ - "{highway/rest_area}" - ], - "moreFields": [ - "{highway/rest_area}" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "highway": "services" - }, - "terms": [ - "services", - "travel plaza", - "service station" - ], - "name": "Service Area" -} diff --git a/data/presets/presets/highway/speed_camera.json b/data/presets/presets/highway/speed_camera.json deleted file mode 100644 index f2d08621f4..0000000000 --- a/data/presets/presets/highway/speed_camera.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-security_camera", - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "direction", - "ref", - "maxspeed" - ], - "tags": { - "highway": "speed_camera" - }, - "terms": [], - "name": "Speed Camera" -} diff --git a/data/presets/presets/highway/steps.json b/data/presets/presets/highway/steps.json deleted file mode 100644 index 8bd24ef50e..0000000000 --- a/data/presets/presets/highway/steps.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "iD-highway-steps", - "fields": [ - "incline_steps", - "access_simple", - "handrail", - "step_count", - "tactile_paving", - "surface", - "width" - ], - "moreFields": [ - "covered", - "dog", - "indoor", - "level_semi", - "lit", - "name", - "ref", - "ramp", - "stroller", - "wheelchair" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "steps" - }, - "terms": [ - "stairs", - "staircase", - "stairway" - ], - "name": "Steps" -} diff --git a/data/presets/presets/highway/steps/conveying.json b/data/presets/presets/highway/steps/conveying.json deleted file mode 100644 index 81b1a2b6bd..0000000000 --- a/data/presets/presets/highway/steps/conveying.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-entrance", - "fields": [ - "incline_steps", - "conveying", - "access_simple", - "indoor", - "level_semi", - "width" - ], - "moreFields": [ - "{highway/steps}", - "handrail", - "step_count", - "surface" - ], - "geometry": [ - "line" - ], - "terms": [ - "moving staircase", - "moving stairway", - "people mover" - ], - "tags": { - "highway": "steps", - "conveying": "*" - }, - "name": "Escalator" -} diff --git a/data/presets/presets/highway/stop.json b/data/presets/presets/highway/stop.json deleted file mode 100644 index c8eaa61955..0000000000 --- a/data/presets/presets/highway/stop.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-stop", - "fields": [ - "stop", - "direction_vertex" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "stop" - }, - "terms": [ - "stop", - "halt", - "sign" - ], - "name": "Stop Sign" -} diff --git a/data/presets/presets/highway/street_lamp.json b/data/presets/presets/highway/street_lamp.json deleted file mode 100644 index e16bc453a0..0000000000 --- a/data/presets/presets/highway/street_lamp.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-street_lamp_arm", - "geometry": [ - "point", - "vertex" - ], - "tags": { - "highway": "street_lamp" - }, - "fields": [ - "lamp_type", - "lamp_mount", - "direction", - "height", - "ref" - ], - "terms": [ - "streetlight", - "street light", - "lamp", - "light", - "gaslight" - ], - "name": "Street Lamp" -} diff --git a/data/presets/presets/highway/tertiary.json b/data/presets/presets/highway/tertiary.json deleted file mode 100644 index f9c41fdfa2..0000000000 --- a/data/presets/presets/highway/tertiary.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "iD-highway-tertiary", - "fields": [ - "{highway/primary}" - ], - "moreFields": [ - "{highway/primary}" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "tertiary" - }, - "terms": [ - "road", - "street" - ], - "name": "Tertiary Road" -} diff --git a/data/presets/presets/highway/tertiary_link.json b/data/presets/presets/highway/tertiary_link.json deleted file mode 100644 index 443cdff78a..0000000000 --- a/data/presets/presets/highway/tertiary_link.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "iD-highway-tertiary-link", - "fields": [ - "{highway/primary_link}" - ], - "moreFields": [ - "{highway/primary_link}" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "tertiary_link" - }, - "terms": [ - "on ramp", - "off ramp", - "ramp", - "road", - "street" - ], - "name": "Tertiary Link" -} diff --git a/data/presets/presets/highway/toll_gantry.json b/data/presets/presets/highway/toll_gantry.json deleted file mode 100644 index 96d2c2c4a3..0000000000 --- a/data/presets/presets/highway/toll_gantry.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "notCountryCodes": [ - "de" - ], - "icon": "temaki-toll_gantry", - "fields": [ - "ref", - "operator", - "access", - "maxheight", - "opening_hours", - "opening_hours/covid19", - "payment_multi" - ], - "moreFields": [ - "website" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "toll_gantry" - }, - "terms": [ - "license plate camera toll", - "cashless toll", - "electronic toll", - "free-flow toll", - "toll gantry", - "transponder toll" - ], - "name": "Open Road Toll" -} diff --git a/data/presets/presets/highway/track.json b/data/presets/presets/highway/track.json deleted file mode 100644 index c4c8adc00e..0000000000 --- a/data/presets/presets/highway/track.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "icon": "fas-truck-monster", - "fields": [ - "name", - "tracktype", - "surface", - "width", - "structure", - "access", - "incline", - "smoothness" - ], - "moreFields": [ - "covered", - "flood_prone", - "horse_scale", - "maxweight_bridge", - "mtb/scale", - "mtb/scale/imba", - "mtb/scale/uphill", - "stroller", - "wheelchair" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "track" - }, - "terms": [ - "woods road", - "forest road", - "logging road", - "fire road", - "farm road", - "agricultural road", - "ranch road", - "carriage road", - "primitive", - "unmaintained", - "rut", - "offroad", - "4wd", - "4x4", - "four wheel drive", - "atv", - "quad", - "jeep", - "double track", - "two track" - ], - "name": "Unmaintained Track Road" -} diff --git a/data/presets/presets/highway/traffic_mirror.json b/data/presets/presets/highway/traffic_mirror.json deleted file mode 100644 index 45ab4a2768..0000000000 --- a/data/presets/presets/highway/traffic_mirror.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-circle-stroked", - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "direction" - ], - "tags": { - "highway": "traffic_mirror" - }, - "terms": [ - "blind spot", - "convex", - "corner", - "curved", - "roadside", - "round", - "safety", - "sphere", - "visibility" - ], - "name": "Traffic Mirror" -} diff --git a/data/presets/presets/highway/traffic_signals.json b/data/presets/presets/highway/traffic_signals.json deleted file mode 100644 index f4cb1eeedf..0000000000 --- a/data/presets/presets/highway/traffic_signals.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-traffic_signals", - "geometry": [ - "vertex" - ], - "tags": { - "highway": "traffic_signals" - }, - "fields": [ - "traffic_signals", - "traffic_signals/direction" - ], - "terms": [ - "light", - "stoplight", - "traffic light" - ], - "name": "Traffic Signals" -} diff --git a/data/presets/presets/highway/trailhead.json b/data/presets/presets/highway/trailhead.json deleted file mode 100644 index 854d0407a6..0000000000 --- a/data/presets/presets/highway/trailhead.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "fas-hiking", - "fields": [ - "name", - "operator", - "ele_node", - "address", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "gnis/feature_id", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "vertex" - ], - "tags": { - "highway": "trailhead" - }, - "terms": [ - "hiking", - "mile zero", - "mountain biking", - "mountaineering", - "trail endpoint", - "trail start", - "staging area", - "trekking" - ], - "name": "Trailhead" -} diff --git a/data/presets/presets/highway/trunk.json b/data/presets/presets/highway/trunk.json deleted file mode 100644 index 8de6043723..0000000000 --- a/data/presets/presets/highway/trunk.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "iD-highway-trunk", - "fields": [ - "name", - "ref_road_number", - "oneway", - "maxspeed", - "lanes", - "surface", - "structure", - "access" - ], - "moreFields": [ - "charge_toll", - "covered", - "incline", - "junction_line", - "lit", - "maxheight", - "maxweight_bridge", - "minspeed", - "not/name", - "smoothness", - "toll", - "width" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "trunk" - }, - "terms": [ - "road", - "street" - ], - "name": "Trunk Road" -} diff --git a/data/presets/presets/highway/trunk_link.json b/data/presets/presets/highway/trunk_link.json deleted file mode 100644 index 2d92817e34..0000000000 --- a/data/presets/presets/highway/trunk_link.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "iD-highway-trunk-link", - "fields": [ - "{highway/motorway_link}" - ], - "moreFields": [ - "{highway/motorway_link}" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "trunk_link" - }, - "terms": [ - "on ramp", - "off ramp", - "ramp", - "road", - "street" - ], - "name": "Trunk Link" -} diff --git a/data/presets/presets/highway/turning_circle.json b/data/presets/presets/highway/turning_circle.json deleted file mode 100644 index 07f2743b7f..0000000000 --- a/data/presets/presets/highway/turning_circle.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "maki-circle-stroked", - "geometry": [ - "vertex" - ], - "tags": { - "highway": "turning_circle" - }, - "terms": [ - "cul-de-sac" - ], - "name": "Turning Circle" -} diff --git a/data/presets/presets/highway/turning_loop.json b/data/presets/presets/highway/turning_loop.json deleted file mode 100644 index 6b1a23f9f8..0000000000 --- a/data/presets/presets/highway/turning_loop.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "maki-circle", - "geometry": [ - "vertex" - ], - "tags": { - "highway": "turning_loop" - }, - "terms": [ - "cul-de-sac" - ], - "name": "Turning Loop (Island)" -} diff --git a/data/presets/presets/highway/unclassified.json b/data/presets/presets/highway/unclassified.json deleted file mode 100644 index 7a59116b3d..0000000000 --- a/data/presets/presets/highway/unclassified.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "iD-highway-unclassified", - "fields": [ - "{highway/residential}" - ], - "moreFields": [ - "{highway/residential}" - ], - "geometry": [ - "line" - ], - "tags": { - "highway": "unclassified" - }, - "terms": [ - "road", - "street" - ], - "name": "Minor/Unclassified Road" -} diff --git a/data/presets/presets/historic.json b/data/presets/presets/historic.json deleted file mode 100644 index 26ae88cd57..0000000000 --- a/data/presets/presets/historic.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-ruins", - "fields": [ - "historic", - "inscription" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "historic": "*" - }, - "matchScore": 0.5, - "name": "Historic Site" -} diff --git a/data/presets/presets/historic/archaeological_site.json b/data/presets/presets/historic/archaeological_site.json deleted file mode 100644 index b352b64199..0000000000 --- a/data/presets/presets/historic/archaeological_site.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-ruins", - "fields": [ - "name", - "site_type", - "historic/civilization", - "inscription", - "access_simple" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "archaeological_site" - }, - "name": "Archaeological Site" -} diff --git a/data/presets/presets/historic/boundary_stone.json b/data/presets/presets/historic/boundary_stone.json deleted file mode 100644 index 5dcbcd3a3e..0000000000 --- a/data/presets/presets/historic/boundary_stone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-milestone", - "fields": [ - "name", - "inscription" - ], - "moreFields": [ - "{historic}", - "material" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "historic": "boundary_stone" - }, - "name": "Boundary Stone" -} diff --git a/data/presets/presets/historic/building.json b/data/presets/presets/historic/building.json deleted file mode 100644 index 482e5d5dd5..0000000000 --- a/data/presets/presets/historic/building.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-home", - "fields": [ - "{building}", - "start_date" - ], - "moreFields": [ - "{building}", - "access_simple" - ], - "geometry": [ - "area" - ], - "tags": { - "historic": "building" - }, - "addTags": { - "historic": "building", - "building": "*" - }, - "reference": { - "key": "historic", - "value": "building" - }, - "matchScore": 0.5, - "name": "Historic Building" -} diff --git a/data/presets/presets/historic/castle.json b/data/presets/presets/historic/castle.json deleted file mode 100644 index 44323b4816..0000000000 --- a/data/presets/presets/historic/castle.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-castle", - "fields": [ - "name", - "castle_type", - "building_area", - "historic/civilization", - "access_simple", - "start_date" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "historic": "castle" - }, - "name": "Castle" -} diff --git a/data/presets/presets/historic/castle/fortress.json b/data/presets/presets/historic/castle/fortress.json deleted file mode 100644 index 7dc98414ed..0000000000 --- a/data/presets/presets/historic/castle/fortress.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-castle", - "fields": [ - "name", - "building_area", - "access_simple", - "start_date" - ], - "geometry": [ - "point", - "area" - ], - "reference": { - "key": "castle_type", - "value": "fortress" - }, - "tags": { - "historic": "castle", - "castle_type": "fortress" - }, - "terms": [ - "citadel", - "military" - ], - "name": "Historic Fortress" -} diff --git a/data/presets/presets/historic/castle/palace.json b/data/presets/presets/historic/castle/palace.json deleted file mode 100644 index 6244055a00..0000000000 --- a/data/presets/presets/historic/castle/palace.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "fas-crown", - "fields": [ - "name", - "building_area", - "access_simple", - "start_date" - ], - "geometry": [ - "point", - "area" - ], - "reference": { - "key": "castle_type", - "value": "palace" - }, - "tags": { - "historic": "castle", - "castle_type": "palace" - }, - "terms": [ - "Royal Residence", - "royal", - "king", - "queen" - ], - "name": "Palace" -} diff --git a/data/presets/presets/historic/castle/stately.json b/data/presets/presets/historic/castle/stately.json deleted file mode 100644 index 08aee47c7b..0000000000 --- a/data/presets/presets/historic/castle/stately.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "fas-crown", - "fields": [ - "name", - "building_area", - "access_simple", - "start_date" - ], - "geometry": [ - "point", - "area" - ], - "reference": { - "key": "castle_type", - "value": "stately" - }, - "tags": { - "historic": "castle", - "castle_type": "stately" - }, - "terms": [ - "Historic Country House", - "Stately Home", - "nobility", - "gentry", - "representative" - ], - "name": "Château" -} diff --git a/data/presets/presets/historic/city_gate.json b/data/presets/presets/historic/city_gate.json deleted file mode 100644 index e3f9b6317f..0000000000 --- a/data/presets/presets/historic/city_gate.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-castle", - "fields": [ - "name", - "building_area", - "historic/civilization", - "start_date" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "historic": "city_gate" - }, - "terms": [ - "Town Gate" - ], - "name": "City Gate" -} diff --git a/data/presets/presets/historic/fort.json b/data/presets/presets/historic/fort.json deleted file mode 100644 index 85db30706f..0000000000 --- a/data/presets/presets/historic/fort.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-castle", - "fields": [ - "name", - "building_area", - "access_simple", - "start_date" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "historic": "fort" - }, - "terms": [ - "military" - ], - "name": "Historic Fort" -} diff --git a/data/presets/presets/historic/manor.json b/data/presets/presets/historic/manor.json deleted file mode 100644 index 6c07fc6e8c..0000000000 --- a/data/presets/presets/historic/manor.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "maki-castle", - "fields": [ - "name", - "building_area", - "access_simple", - "start_date" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "historic": "manor" - }, - "terms": [ - "Mansion", - "gentry", - "nobility", - "estate" - ], - "name": "Manor House" -} diff --git a/data/presets/presets/historic/memorial.json b/data/presets/presets/historic/memorial.json deleted file mode 100644 index eb7896893d..0000000000 --- a/data/presets/presets/historic/memorial.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-monument", - "fields": [ - "name", - "memorial", - "inscription", - "material" - ], - "moreFields": [ - "{historic}", - "website" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "dedicatory", - "epitaph", - "remember", - "remembrance", - "memory", - "monument", - "stolperstein" - ], - "tags": { - "historic": "memorial" - }, - "name": "Memorial" -} diff --git a/data/presets/presets/historic/memorial/plaque.json b/data/presets/presets/historic/memorial/plaque.json deleted file mode 100644 index f04f956aca..0000000000 --- a/data/presets/presets/historic/memorial/plaque.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-plaque", - "fields": [ - "{historic/memorial}", - "direction" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "dedicatory", - "epitaph", - "historical marker", - "remember", - "remembrance", - "memory" - ], - "tags": { - "historic": "memorial", - "memorial": "plaque" - }, - "reference": { - "key": "memorial", - "value": "plaque" - }, - "name": "Commemorative Plaque" -} diff --git a/data/presets/presets/historic/monument.json b/data/presets/presets/historic/monument.json deleted file mode 100644 index dae8f583ef..0000000000 --- a/data/presets/presets/historic/monument.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-monument", - "fields": [ - "name", - "inscription", - "access_simple" - ], - "moreFields": [ - "{historic}", - "material" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "monument" - }, - "name": "Monument" -} diff --git a/data/presets/presets/historic/pillory.json b/data/presets/presets/historic/pillory.json deleted file mode 100644 index 3e1c88e5d3..0000000000 --- a/data/presets/presets/historic/pillory.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-monument", - "fields": [ - "name", - "building_area", - "access_simple", - "start_date" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "historic": "pillory" - }, - "terms": [ - "attraction" - ], - "name": "Historic Pillory" -} diff --git a/data/presets/presets/historic/ruins.json b/data/presets/presets/historic/ruins.json deleted file mode 100644 index 33c0655589..0000000000 --- a/data/presets/presets/historic/ruins.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-ruins", - "fields": [ - "name", - "ruins", - "historic/civilization", - "inscription", - "access_simple" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "ruins" - }, - "name": "Ruins" -} \ No newline at end of file diff --git a/data/presets/presets/historic/tomb.json b/data/presets/presets/historic/tomb.json deleted file mode 100644 index 8f3e1e5ee9..0000000000 --- a/data/presets/presets/historic/tomb.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-cemetery", - "fields": [ - "name", - "tomb", - "building_area", - "inscription", - "access_simple" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "historic": "tomb" - }, - "name": "Tomb" -} diff --git a/data/presets/presets/historic/wayside_cross.json b/data/presets/presets/historic/wayside_cross.json deleted file mode 100644 index 563e50547b..0000000000 --- a/data/presets/presets/historic/wayside_cross.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "maki-religious-christian", - "fields": [ - "name", - "inscription", - "material" - ], - "moreFields": [ - "{historic}", - "start_date", - "religion", - "denomination" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "wayside_cross" - }, - "name": "Wayside Cross" -} diff --git a/data/presets/presets/historic/wayside_shrine.json b/data/presets/presets/historic/wayside_shrine.json deleted file mode 100644 index 4463d2569f..0000000000 --- a/data/presets/presets/historic/wayside_shrine.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-landmark", - "fields": [ - "name", - "religion", - "denomination", - "inscription", - "access_simple" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "historic": "wayside_shrine" - }, - "name": "Wayside Shrine" -} diff --git a/data/presets/presets/historic/wreck.json b/data/presets/presets/historic/wreck.json deleted file mode 100644 index 0650a602a0..0000000000 --- a/data/presets/presets/historic/wreck.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-ruins", - "fields": [ - "name", - "access_simple", - "seamark/wreck/category", - "historic/wreck/date_sunk", - "historic/wreck/visible_at_low_tide", - "historic/wreck/visible_at_high_tide" - ], - "moreFields": [ - "{historic}", - "seamark/type" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "historic": "wreck" - }, - "addTags": { - "historic": "wreck", - "seamark:type": "wreck" - }, - "terms": [ - "hull", - "mast", - "maritime", - "remains", - "ship", - "boat" - ], - "name": "Shipwreck" -} diff --git a/data/presets/presets/indoor/_corridor_line.json b/data/presets/presets/indoor/_corridor_line.json deleted file mode 100644 index 57452c1670..0000000000 --- a/data/presets/presets/indoor/_corridor_line.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "fields": [ - "level", - "name" - ], - "geometry": [ - "line" - ], - "tags": { - "indoor": "corridor" - }, - "searchable": false, - "matchScore": 1.1, - "name": "Indoor Corridor", - "replacement": "highway/corridor" -} diff --git a/data/presets/presets/indoor/area.json b/data/presets/presets/indoor/area.json deleted file mode 100644 index c678a14773..0000000000 --- a/data/presets/presets/indoor/area.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-room", - "fields": [ - "level", - "name", - "ref_room_number", - "height" - ], - "geometry": [ - "area" - ], - "tags": { - "indoor": "area" - }, - "terms": [ - "indoor space" - ], - "matchScore": 0.8, - "name": "Indoor Area" -} diff --git a/data/presets/presets/indoor/corridor.json b/data/presets/presets/indoor/corridor.json deleted file mode 100644 index 4d2217c27a..0000000000 --- a/data/presets/presets/indoor/corridor.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "level", - "name", - "ref", - "height" - ], - "geometry": [ - "area" - ], - "tags": { - "indoor": "corridor" - }, - "terms": [ - "concourse", - "foyer", - "hallway", - "passageway" - ], - "matchScore": 0.8, - "name": "Indoor Corridor" -} diff --git a/data/presets/presets/indoor/door.json b/data/presets/presets/indoor/door.json deleted file mode 100644 index c13d2c71b1..0000000000 --- a/data/presets/presets/indoor/door.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "maki-entrance-alt1", - "fields": [ - "level", - "ref", - "door_type", - "access_simple", - "width", - "height" - ], - "moreFields": [ - "wheelchair" - ], - "geometry": [ - "vertex" - ], - "tags": { - "indoor": "door" - }, - "addTags": { - "indoor": "door", - "door": "yes" - }, - "removeTags": { - "indoor": "door", - "door": "*" - }, - "terms": [ - "doorframe", - "doorway", - "portal", - "room access", - "threshold" - ], - "name": "Indoor Door" -} diff --git a/data/presets/presets/indoor/elevator.json b/data/presets/presets/indoor/elevator.json deleted file mode 100644 index c2c0a710f9..0000000000 --- a/data/presets/presets/indoor/elevator.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-elevator", - "fields": [ - "ref", - "level_semi" - ], - "geometry": [ - "area" - ], - "tags": { - "indoor": "room", - "elevator": "yes" - }, - "terms": [ - "elevator", - "lift" - ], - "matchScore": 0.8, - "name": "Indoor Elevator Shaft" -} diff --git a/data/presets/presets/indoor/room.json b/data/presets/presets/indoor/room.json deleted file mode 100644 index 0c1913fb09..0000000000 --- a/data/presets/presets/indoor/room.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-room", - "fields": [ - "level", - "name", - "ref_room_number", - "room", - "height" - ], - "geometry": [ - "area" - ], - "tags": { - "indoor": "room" - }, - "terms": [ - "antechamber", - "anteroom", - "atrium", - "cell", - "chamber", - "concourse", - "foyer", - "indoor room", - "lobby", - "vestibule" - ], - "matchScore": 0.8, - "name": "Room" -} diff --git a/data/presets/presets/indoor/stairs.json b/data/presets/presets/indoor/stairs.json deleted file mode 100644 index c3e2105546..0000000000 --- a/data/presets/presets/indoor/stairs.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "iD-highway-steps", - "fields": [ - "ref", - "level_semi", - "conveying_escalator" - ], - "geometry": [ - "area" - ], - "tags": { - "indoor": "room", - "stairs": "yes" - }, - "terms": [ - "stair", - "stairs", - "staircase", - "stairway", - "stairwell", - "steps" - ], - "matchScore": 0.8, - "name": "Indoor Stairwell" -} diff --git a/data/presets/presets/indoor/wall.json b/data/presets/presets/indoor/wall.json deleted file mode 100644 index f469128e04..0000000000 --- a/data/presets/presets/indoor/wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-wall", - "fields": [ - "level", - "height" - ], - "geometry": [ - "line" - ], - "tags": { - "indoor": "wall" - }, - "terms": [ - "indoor barrier", - "room divider", - "room partition" - ], - "name": "Indoor Wall" -} diff --git a/data/presets/presets/internet_access/wlan.json b/data/presets/presets/internet_access/wlan.json deleted file mode 100644 index 966329b3d8..0000000000 --- a/data/presets/presets/internet_access/wlan.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "fas-wifi", - "geometry": [ - "point", - "area" - ], - "fields": [ - "internet_access/ssid", - "internet_access/fee" - ], - "moreFields": [ - "level" - ], - "terms": [ - "wi-fi", - "wifi", - "hotspot" - ], - "tags": { - "internet_access": "wlan" - }, - "matchScore": 0.25, - "name": "Wi-Fi Hotspot" -} diff --git a/data/presets/presets/junction.json b/data/presets/presets/junction.json deleted file mode 100644 index 4f0cd3b027..0000000000 --- a/data/presets/presets/junction.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-junction", - "fields": [ - "name" - ], - "geometry": [ - "vertex", - "area" - ], - "tags": { - "junction": "yes" - }, - "name": "Junction" -} diff --git a/data/presets/presets/landuse/_basin.json b/data/presets/presets/landuse/_basin.json deleted file mode 100644 index dc96337866..0000000000 --- a/data/presets/presets/landuse/_basin.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "basin", - "intermittent_yes" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "basin" - }, - "name": "Basin", - "searchable": false -} diff --git a/data/presets/presets/landuse/_churchyard.json b/data/presets/presets/landuse/_churchyard.json deleted file mode 100644 index 9f3dcf5502..0000000000 --- a/data/presets/presets/landuse/_churchyard.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-religious-christian", - "fields": [ - "{landuse/religious}" - ], - "moreFields": [ - "{landuse/religious}" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "churchyard" - }, - "terms": [], - "searchable": false, - "name": "Churchyard" -} diff --git a/data/presets/presets/landuse/_farm.json b/data/presets/presets/landuse/_farm.json deleted file mode 100644 index f347b04ec1..0000000000 --- a/data/presets/presets/landuse/_farm.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-farm", - "fields": [ - "name", - "operator", - "crop" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "landuse": "farm" - }, - "name": "Farmland", - "searchable": false -} diff --git a/data/presets/presets/landuse/_pond.json b/data/presets/presets/landuse/_pond.json deleted file mode 100644 index cf31f37944..0000000000 --- a/data/presets/presets/landuse/_pond.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "intermittent" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "pond" - }, - "name": "Pond", - "searchable": false -} diff --git a/data/presets/presets/landuse/_reservoir.json b/data/presets/presets/landuse/_reservoir.json deleted file mode 100644 index c46c2adf85..0000000000 --- a/data/presets/presets/landuse/_reservoir.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "intermittent" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "reservoir" - }, - "name": "Reservoir", - "searchable": false -} diff --git a/data/presets/presets/landuse/allotments.json b/data/presets/presets/landuse/allotments.json deleted file mode 100644 index 130ca8839c..0000000000 --- a/data/presets/presets/landuse/allotments.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-garden-centre", - "geometry": [ - "area" - ], - "fields": [ - "name", - "operator", - "plots" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "tags": { - "landuse": "allotments" - }, - "terms": [ - "allotment", - "community garden", - "garden" - ], - "name": "Garden Allotments" -} diff --git a/data/presets/presets/landuse/aquaculture.json b/data/presets/presets/landuse/aquaculture.json deleted file mode 100644 index 7eebb88521..0000000000 --- a/data/presets/presets/landuse/aquaculture.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "maki-aquarium", - "fields": [ - "name", - "operator", - "produce" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "aquaculture" - }, - "terms": [ - "fish farm", - "crustacean", - "algae", - "aquafarming", - "shrimp farm", - "oyster farm", - "mariculture", - "algaculture" - ], - "name": "Aquaculture" -} diff --git a/data/presets/presets/landuse/brownfield.json b/data/presets/presets/landuse/brownfield.json deleted file mode 100644 index 893d36c685..0000000000 --- a/data/presets/presets/landuse/brownfield.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-bulldozer", - "geometry": [ - "area" - ], - "fields": [ - "name" - ], - "tags": { - "landuse": "brownfield" - }, - "terms": [], - "matchScore": 0.9, - "name": "Brownfield" -} diff --git a/data/presets/presets/landuse/cemetery.json b/data/presets/presets/landuse/cemetery.json deleted file mode 100644 index a7e1928958..0000000000 --- a/data/presets/presets/landuse/cemetery.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-cemetery", - "fields": [ - "name", - "religion", - "denomination" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "cemetery" - }, - "terms": [ - "burial ground", - "cemetary", - "cemetery", - "churchyard", - "columbarium", - "grave yard", - "graveyard", - "mausoleum", - "tomb" - ], - "name": "Cemetery" -} diff --git a/data/presets/presets/landuse/commercial.json b/data/presets/presets/landuse/commercial.json deleted file mode 100644 index 7d12a5ea60..0000000000 --- a/data/presets/presets/landuse/commercial.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-suitcase", - "fields": [ - "name" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "commercial" - }, - "terms": [], - "matchScore": 0.9, - "name": "Commercial Area" -} diff --git a/data/presets/presets/landuse/construction.json b/data/presets/presets/landuse/construction.json deleted file mode 100644 index 554998cf90..0000000000 --- a/data/presets/presets/landuse/construction.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-bulldozer", - "fields": [ - "name", - "construction", - "operator", - "opening_date", - "check_date", - "note" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "construction" - }, - "terms": [ - "building", - "bulldozer", - "construction site", - "construction zone", - "crane", - "demolition", - "development", - "infrastructure" - ], - "name": "Construction Area" -} diff --git a/data/presets/presets/landuse/farmland.json b/data/presets/presets/landuse/farmland.json deleted file mode 100644 index b4431b9b57..0000000000 --- a/data/presets/presets/landuse/farmland.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "fas-tractor", - "fields": [ - "name", - "operator", - "crop", - "produce" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "farmland" - }, - "terms": [ - "crop", - "grow", - "plant" - ], - "name": "Farmland" -} diff --git a/data/presets/presets/landuse/farmyard.json b/data/presets/presets/landuse/farmyard.json deleted file mode 100644 index 0e72cafb08..0000000000 --- a/data/presets/presets/landuse/farmyard.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-farm", - "fields": [ - "name", - "operator", - "crop" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "farmyard" - }, - "terms": [ - "crop", - "grow", - "plant" - ], - "name": "Farmyard" -} diff --git a/data/presets/presets/landuse/flowerbed.json b/data/presets/presets/landuse/flowerbed.json deleted file mode 100644 index 304b4433c3..0000000000 --- a/data/presets/presets/landuse/flowerbed.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-garden", - "fields": [ - "operator" - ], - "moreFields": [ - "address", - "name" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "flowerbed" - }, - "terms": [ - "floral garden", - "flower garden" - ], - "name": "Flowerbed" -} diff --git a/data/presets/presets/landuse/forest.json b/data/presets/presets/landuse/forest.json deleted file mode 100644 index f20df83166..0000000000 --- a/data/presets/presets/landuse/forest.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "maki-park-alt1", - "fields": [ - "name", - "leaf_type", - "leaf_cycle", - "produce" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "forest" - }, - "terms": [ - "boreal", - "cut", - "forest", - "forestry", - "forrest", - "lumber", - "silviculture", - "taiga", - "tree", - "trees", - "woodlands", - "woods" - ], - "name": "Managed Forest" -} diff --git a/data/presets/presets/landuse/garages.json b/data/presets/presets/landuse/garages.json deleted file mode 100644 index e1cd1cd0ad..0000000000 --- a/data/presets/presets/landuse/garages.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "fas-warehouse", - "geometry": [ - "area" - ], - "fields": [ - "name" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "tags": { - "landuse": "garages" - }, - "terms": [], - "name": "Garage Landuse" -} diff --git a/data/presets/presets/landuse/grass.json b/data/presets/presets/landuse/grass.json deleted file mode 100644 index bc18a3d03f..0000000000 --- a/data/presets/presets/landuse/grass.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-lawn", - "geometry": [ - "area" - ], - "tags": { - "landuse": "grass" - }, - "terms": [ - "field", - "green", - "lawn", - "managed grass", - "mown grass", - "turf" - ], - "name": "Grass" -} diff --git a/data/presets/presets/landuse/greenfield.json b/data/presets/presets/landuse/greenfield.json deleted file mode 100644 index 9560a2e111..0000000000 --- a/data/presets/presets/landuse/greenfield.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-bulldozer", - "geometry": [ - "area" - ], - "fields": [ - "name" - ], - "tags": { - "landuse": "greenfield" - }, - "terms": [], - "matchScore": 0.9, - "name": "Greenfield" -} diff --git a/data/presets/presets/landuse/greenhouse_horticulture.json b/data/presets/presets/landuse/greenhouse_horticulture.json deleted file mode 100644 index aae0b0fefd..0000000000 --- a/data/presets/presets/landuse/greenhouse_horticulture.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "maki-garden", - "fields": [ - "name", - "operator" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "terms": [ - "flower", - "greenhouse", - "horticulture", - "grow", - "vivero" - ], - "tags": { - "landuse": "greenhouse_horticulture" - }, - "matchScore": 0.9, - "name": "Greenhouse Horticulture" -} diff --git a/data/presets/presets/landuse/harbour.json b/data/presets/presets/landuse/harbour.json deleted file mode 100644 index 969c64b3ee..0000000000 --- a/data/presets/presets/landuse/harbour.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-harbor", - "fields": [ - "name", - "operator" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "terms": [ - "boat" - ], - "tags": { - "landuse": "harbour" - }, - "name": "Harbor" -} diff --git a/data/presets/presets/landuse/industrial.json b/data/presets/presets/landuse/industrial.json deleted file mode 100644 index 85cfdf8e86..0000000000 --- a/data/presets/presets/landuse/industrial.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "maki-industry", - "fields": [ - "name", - "industrial" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "industrial" - }, - "terms": [], - "matchScore": 0.9, - "name": "Industrial Area" -} diff --git a/data/presets/presets/landuse/industrial/scrap_yard.json b/data/presets/presets/landuse/industrial/scrap_yard.json deleted file mode 100644 index 1567c2c67a..0000000000 --- a/data/presets/presets/landuse/industrial/scrap_yard.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-junk_car", - "fields": [ - "name", - "operator", - "address", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "industrial": "scrap_yard" - }, - "addTags": { - "landuse": "industrial", - "industrial": "scrap_yard" - }, - "reference": { - "key": "industrial", - "value": "scrap_yard" - }, - "terms": [ - "car", - "junk", - "metal", - "salvage", - "scrap", - "u-pull-it", - "vehicle", - "wreck", - "yard" - ], - "name": "Scrap Yard" -} diff --git a/data/presets/presets/landuse/industrial/slaughterhouse.json b/data/presets/presets/landuse/industrial/slaughterhouse.json deleted file mode 100644 index 0452d75c5e..0000000000 --- a/data/presets/presets/landuse/industrial/slaughterhouse.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "maki-slaughterhouse", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "industrial": "slaughterhouse" - }, - "addTags": { - "landuse": "industrial", - "industrial": "slaughterhouse" - }, - "reference": { - "key": "industrial", - "value": "slaughterhouse" - }, - "terms": [ - "abattoir", - "beef", - "butchery", - "calf", - "chicken", - "cow", - "killing house", - "meat", - "pig", - "pork", - "poultry", - "shambles", - "stockyard" - ], - "name": "Slaughterhouse" -} diff --git a/data/presets/presets/landuse/landfill.json b/data/presets/presets/landuse/landfill.json deleted file mode 100644 index 1417527191..0000000000 --- a/data/presets/presets/landuse/landfill.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-bulldozer", - "geometry": [ - "area" - ], - "fields": [ - "name" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "tags": { - "landuse": "landfill" - }, - "terms": [ - "dump" - ], - "name": "Landfill" -} diff --git a/data/presets/presets/landuse/meadow.json b/data/presets/presets/landuse/meadow.json deleted file mode 100644 index 44464136ad..0000000000 --- a/data/presets/presets/landuse/meadow.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-garden", - "geometry": [ - "area" - ], - "fields": [ - "name" - ], - "tags": { - "landuse": "meadow" - }, - "terms": [ - "grazing", - "hay field", - "pasture" - ], - "name": "Meadow" -} diff --git a/data/presets/presets/landuse/military.json b/data/presets/presets/landuse/military.json deleted file mode 100644 index c0f8780129..0000000000 --- a/data/presets/presets/landuse/military.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-military", - "fields": [ - "name" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "military" - }, - "terms": [], - "matchScore": 0.9, - "name": "Military Area" -} diff --git a/data/presets/presets/landuse/military/airfield.json b/data/presets/presets/landuse/military/airfield.json deleted file mode 100644 index c289dad4f9..0000000000 --- a/data/presets/presets/landuse/military/airfield.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "icon": "temaki-fighter_jet", - "fields": [ - "name", - "iata", - "icao" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "military": "airfield" - }, - "addTags": { - "aeroway": "aerodrome", - "landuse": "military", - "military": "airfield" - }, - "reference": { - "key": "military", - "value": "airfield" - }, - "terms": [ - "aerodrome", - "aeroway", - "air force", - "airplane", - "airport", - "army", - "base", - "bomb", - "fight", - "force", - "guard", - "heli*", - "jet", - "marine", - "navy", - "plane", - "troop", - "war" - ], - "name": "Military Airfield" -} diff --git a/data/presets/presets/landuse/military/barracks.json b/data/presets/presets/landuse/military/barracks.json deleted file mode 100644 index a93813902e..0000000000 --- a/data/presets/presets/landuse/military/barracks.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-army_tent", - "fields": [ - "name", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "military": "barracks" - }, - "addTags": { - "landuse": "military", - "military": "barracks" - }, - "terms": [ - "air force", - "army", - "base", - "fight", - "force", - "guard", - "marine", - "navy", - "troop", - "war" - ], - "name": "Barracks" -} diff --git a/data/presets/presets/landuse/military/danger_area.json b/data/presets/presets/landuse/military/danger_area.json deleted file mode 100644 index 9386d5061a..0000000000 --- a/data/presets/presets/landuse/military/danger_area.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "maki-danger", - "fields": [ - "name" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "military": "danger_area" - }, - "addTags": { - "landuse": "military", - "military": "danger_area" - }, - "terms": [ - "air force", - "army", - "base", - "blast", - "bomb", - "explo*", - "force", - "guard", - "mine", - "marine", - "navy", - "troop", - "war" - ], - "name": "Danger Area" -} diff --git a/data/presets/presets/landuse/military/naval_base.json b/data/presets/presets/landuse/military/naval_base.json deleted file mode 100644 index a1e337fbf7..0000000000 --- a/data/presets/presets/landuse/military/naval_base.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-anchor_medal", - "fields": [ - "name" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "military": "naval_base" - }, - "addTags": { - "landuse": "military", - "military": "naval_base" - }, - "terms": [ - "base", - "fight", - "force", - "guard", - "marine", - "navy", - "ship", - "sub", - "troop", - "war" - ], - "name": "Naval Base" -} diff --git a/data/presets/presets/landuse/military/obstacle_course.json b/data/presets/presets/landuse/military/obstacle_course.json deleted file mode 100644 index cf982aaef1..0000000000 --- a/data/presets/presets/landuse/military/obstacle_course.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-tire_course", - "geometry": [ - "point", - "area" - ], - "tags": { - "military": "obstacle_course" - }, - "addTags": { - "landuse": "military", - "military": "obstacle_course" - }, - "terms": [ - "army", - "base", - "force", - "guard", - "marine", - "navy", - "troop", - "war" - ], - "name": "Military Obstacle Course" -} diff --git a/data/presets/presets/landuse/military/range.json b/data/presets/presets/landuse/military/range.json deleted file mode 100644 index d627d4ad57..0000000000 --- a/data/presets/presets/landuse/military/range.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "fas-bullseye", - "fields": [ - "name" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "military": "range" - }, - "addTags": { - "landuse": "military", - "military": "range" - }, - "terms": [ - "air force", - "army", - "base", - "fight", - "fire", - "force", - "guard", - "gun", - "marine", - "navy", - "rifle", - "shoot*", - "snip*", - "train", - "troop", - "war" - ], - "name": "Military Range" -} diff --git a/data/presets/presets/landuse/military/training_area.json b/data/presets/presets/landuse/military/training_area.json deleted file mode 100644 index 03049508f8..0000000000 --- a/data/presets/presets/landuse/military/training_area.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "temaki-military", - "fields": [ - "name" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "military": "training_area" - }, - "addTags": { - "landuse": "military", - "military": "training_area" - }, - "terms": [ - "air force", - "army", - "base", - "fight", - "fire", - "force", - "guard", - "gun", - "marine", - "navy", - "rifle", - "shoot*", - "snip*", - "train", - "troop", - "war" - ], - "name": "Military Training Area" -} diff --git a/data/presets/presets/landuse/orchard.json b/data/presets/presets/landuse/orchard.json deleted file mode 100644 index de6b2a9b53..0000000000 --- a/data/presets/presets/landuse/orchard.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-park", - "fields": [ - "name", - "operator", - "trees" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "species/wikidata", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "orchard" - }, - "terms": [ - "fruit" - ], - "name": "Orchard" -} diff --git a/data/presets/presets/landuse/plant_nursery.json b/data/presets/presets/landuse/plant_nursery.json deleted file mode 100644 index 1973418c2d..0000000000 --- a/data/presets/presets/landuse/plant_nursery.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "fas-seedling", - "fields": [ - "name", - "operator", - "plant" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "plant_nursery" - }, - "terms": [ - "flower", - "garden", - "grow", - "vivero" - ], - "name": "Plant Nursery" -} diff --git a/data/presets/presets/landuse/quarry.json b/data/presets/presets/landuse/quarry.json deleted file mode 100644 index f1d7ec0866..0000000000 --- a/data/presets/presets/landuse/quarry.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-pick_hammer", - "geometry": [ - "area", - "point" - ], - "fields": [ - "name", - "operator", - "resource" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "tags": { - "landuse": "quarry" - }, - "terms": [ - "aggregate quarry", - "open pit mine", - "sand mine", - "sand pit", - "sand quarry", - "sandpit" - ], - "name": "Quarry" -} diff --git a/data/presets/presets/landuse/railway.json b/data/presets/presets/landuse/railway.json deleted file mode 100644 index 92a3237aff..0000000000 --- a/data/presets/presets/landuse/railway.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-train", - "fields": [ - "operator" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "railway" - }, - "terms": [ - "rail", - "train", - "track" - ], - "name": "Railway Corridor" -} diff --git a/data/presets/presets/landuse/recreation_ground.json b/data/presets/presets/landuse/recreation_ground.json deleted file mode 100644 index f70675ac2a..0000000000 --- a/data/presets/presets/landuse/recreation_ground.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "area" - ], - "fields": [ - "name" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "tags": { - "landuse": "recreation_ground" - }, - "terms": [ - "playing fields" - ], - "name": "Recreation Ground" -} diff --git a/data/presets/presets/landuse/religious.json b/data/presets/presets/landuse/religious.json deleted file mode 100644 index 7e913efa80..0000000000 --- a/data/presets/presets/landuse/religious.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "maki-place-of-worship", - "geometry": [ - "area" - ], - "fields": [ - "name", - "religion", - "denomination" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "tags": { - "landuse": "religious" - }, - "terms": [ - "christian", - "churchyard", - "hindu", - "jewish", - "mosque", - "muslim", - "place of worship", - "shinto", - "sikh", - "taoist", - "temple", - "shrine", - "synagogue" - ], - "name": "Religious Area" -} diff --git a/data/presets/presets/landuse/residential.json b/data/presets/presets/landuse/residential.json deleted file mode 100644 index 7e1753b440..0000000000 --- a/data/presets/presets/landuse/residential.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-residential-community", - "fields": [ - "name", - "residential" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "residential" - }, - "terms": [], - "matchScore": 0.9, - "name": "Residential Area" -} diff --git a/data/presets/presets/landuse/residential/apartments.json b/data/presets/presets/landuse/residential/apartments.json deleted file mode 100644 index 037aaecf06..0000000000 --- a/data/presets/presets/landuse/residential/apartments.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "maki-residential-community", - "fields": [ - "name", - "operator", - "address" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "residential": "apartments" - }, - "addTags": { - "landuse": "residential", - "residential": "apartments" - }, - "reference": { - "key": "residential", - "value": "apartments" - }, - "terms": [ - "flat", - "residence", - "tenement" - ], - "name": "Apartment Complex" -} diff --git a/data/presets/presets/landuse/retail.json b/data/presets/presets/landuse/retail.json deleted file mode 100644 index 946e49956e..0000000000 --- a/data/presets/presets/landuse/retail.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-commercial", - "geometry": [ - "area" - ], - "fields": [ - "name" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "tags": { - "landuse": "retail" - }, - "matchScore": 0.9, - "name": "Retail Area" -} diff --git a/data/presets/presets/landuse/vineyard.json b/data/presets/presets/landuse/vineyard.json deleted file mode 100644 index 17063a2573..0000000000 --- a/data/presets/presets/landuse/vineyard.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-grapes", - "fields": [ - "name", - "operator", - "grape_variety" - ], - "moreFields": [ - "address", - "email", - "fax", - "phone", - "website" - ], - "geometry": [ - "area" - ], - "tags": { - "landuse": "vineyard" - }, - "addTags": { - "landuse": "vineyard", - "crop": "grape" - }, - "removeTags": { - "landuse": "vineyard", - "crop": "grape", - "grape_variety": "*" - }, - "terms": [ - "grape", - "wine" - ], - "name": "Vineyard" -} diff --git a/data/presets/presets/landuse/winter_sports.json b/data/presets/presets/landuse/winter_sports.json deleted file mode 100644 index 7092e8530a..0000000000 --- a/data/presets/presets/landuse/winter_sports.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "fas-skiing", - "geometry": [ - "area" - ], - "fields": [ - "name", - "operator" - ], - "moreFields": [ - "access_simple", - "address", - "opening_hours", - "opening_hours/covid19" - ], - "tags": { - "landuse": "winter_sports" - }, - "terms": [ - "piste area", - "ski area", - "ski hill", - "ski mountain", - "ski resort", - "snow board area", - "snowboard area" - ], - "name": "Winter Sports Area" -} diff --git a/data/presets/presets/leisure/adult_gaming_centre.json b/data/presets/presets/leisure/adult_gaming_centre.json deleted file mode 100644 index 2125d6cb06..0000000000 --- a/data/presets/presets/leisure/adult_gaming_centre.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-casino", - "fields": [ - "{amenity/casino}" - ], - "moreFields": [ - "{amenity/casino}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "gambling", - "slot machine" - ], - "tags": { - "leisure": "adult_gaming_centre" - }, - "name": "Adult Gaming Center" -} diff --git a/data/presets/presets/leisure/amusement_arcade.json b/data/presets/presets/leisure/amusement_arcade.json deleted file mode 100644 index 35ad1ef7a6..0000000000 --- a/data/presets/presets/leisure/amusement_arcade.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "maki-gaming", - "fields": [ - "name", - "operator", - "address", - "building_area" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "max_age", - "min_age", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "phone", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "pay-to-play games", - "video games", - "driving simulators", - "pinball machines" - ], - "tags": { - "leisure": "amusement_arcade" - }, - "name": "Amusement Arcade" -} diff --git a/data/presets/presets/leisure/bandstand.json b/data/presets/presets/leisure/bandstand.json deleted file mode 100644 index 566cc5954c..0000000000 --- a/data/presets/presets/leisure/bandstand.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-music", - "fields": [ - "name", - "building_area", - "operator" - ], - "moreFields": [ - "gnis/feature_id", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "bandstand" - }, - "name": "Bandstand" -} diff --git a/data/presets/presets/leisure/beach_resort.json b/data/presets/presets/leisure/beach_resort.json deleted file mode 100644 index c5a3576b44..0000000000 --- a/data/presets/presets/leisure/beach_resort.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "fas-umbrella-beach", - "fields": [ - "name", - "address", - "opening_hours", - "opening_hours/covid19", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "smoking", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "beach_resort" - }, - "name": "Beach Resort" -} diff --git a/data/presets/presets/leisure/bird_hide.json b/data/presets/presets/leisure/bird_hide.json deleted file mode 100644 index 28e71d0ca8..0000000000 --- a/data/presets/presets/leisure/bird_hide.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-binoculars", - "fields": [ - "name", - "building_area", - "address", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "bird_hide" - }, - "terms": [ - "machan", - "ornithology" - ], - "name": "Bird Hide" -} diff --git a/data/presets/presets/leisure/bleachers.json b/data/presets/presets/leisure/bleachers.json deleted file mode 100644 index d52b8d3b4c..0000000000 --- a/data/presets/presets/leisure/bleachers.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-bleachers", - "geometry": [ - "area" - ], - "tags": { - "leisure": "bleachers" - }, - "terms": [ - "crowd", - "bench", - "sports", - "stand", - "stands", - "seat", - "seating" - ], - "name": "Bleachers" -} diff --git a/data/presets/presets/leisure/bowling_alley.json b/data/presets/presets/leisure/bowling_alley.json deleted file mode 100644 index 97135a8956..0000000000 --- a/data/presets/presets/leisure/bowling_alley.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "temaki-bowling", - "fields": [ - "name", - "operator", - "address", - "building_area" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "min_age", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "phone", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bowling center" - ], - "tags": { - "leisure": "bowling_alley" - }, - "name": "Bowling Alley" -} diff --git a/data/presets/presets/leisure/common.json b/data/presets/presets/leisure/common.json deleted file mode 100644 index 1f1b9db06b..0000000000 --- a/data/presets/presets/leisure/common.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "name", - "access_simple" - ], - "moreFields": [ - "gnis/feature_id", - "website" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "open space" - ], - "tags": { - "leisure": "common" - }, - "name": "Common" -} diff --git a/data/presets/presets/leisure/dance.json b/data/presets/presets/leisure/dance.json deleted file mode 100644 index 8978b78a4f..0000000000 --- a/data/presets/presets/leisure/dance.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "fas-music", - "fields": [ - "name", - "operator", - "address", - "building_area", - "dance/style" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "ballroom", - "jive", - "swing", - "tango", - "waltz" - ], - "tags": { - "leisure": "dance" - }, - "name": "Dance Hall" -} diff --git a/data/presets/presets/leisure/dancing_school.json b/data/presets/presets/leisure/dancing_school.json deleted file mode 100644 index f3db0e96f8..0000000000 --- a/data/presets/presets/leisure/dancing_school.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "fas-music", - "fields": [ - "name", - "operator", - "address", - "building_area", - "dance/style" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "jive", - "swing", - "tango", - "waltz", - "dance teaching" - ], - "tags": { - "leisure": "dance", - "dance:teaching": "yes" - }, - "reference": { - "key": "leisure", - "value": "dance" - }, - "name": "Dance School" -} diff --git a/data/presets/presets/leisure/disc_golf_course.json b/data/presets/presets/leisure/disc_golf_course.json deleted file mode 100644 index a8fed651b2..0000000000 --- a/data/presets/presets/leisure/disc_golf_course.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "icon": "temaki-disc_golf_basket", - "fields": [ - "name", - "operator", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "address", - "dog", - "email", - "fax", - "gnis/feature_id", - "lit", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "disc_golf_course" - }, - "addTags": { - "leisure": "disc_golf_course", - "sport": "disc_golf" - }, - "terms": [ - "disk golf", - "frisbee golf", - "flying disc golf", - "frolf", - "ultimate" - ], - "name": "Disc Golf Course" -} diff --git a/data/presets/presets/leisure/dog_park.json b/data/presets/presets/leisure/dog_park.json deleted file mode 100644 index 04e62947ad..0000000000 --- a/data/presets/presets/leisure/dog_park.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-dog-park", - "fields": [ - "name", - "operator", - "operator/type", - "address", - "access_simple", - "website" - ], - "moreFields": [ - "dog", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "phone", - "ref" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "dog_park" - }, - "terms": [], - "name": "Dog Park" -} diff --git a/data/presets/presets/leisure/escape_game.json b/data/presets/presets/leisure/escape_game.json deleted file mode 100644 index d15415d0a2..0000000000 --- a/data/presets/presets/leisure/escape_game.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "fas-puzzle-piece", - "fields": [ - "name", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "website", - "fee", - "payment_multi_fee", - "charge_fee", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "level", - "phone", - "smoking", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "escape game", - "escape the room", - "puzzle room", - "quest room" - ], - "tags": { - "leisure": "escape_game" - }, - "name": "Escape Room" -} diff --git a/data/presets/presets/leisure/firepit.json b/data/presets/presets/leisure/firepit.json deleted file mode 100644 index 03d8cdc25c..0000000000 --- a/data/presets/presets/leisure/firepit.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-campfire", - "fields": [ - "access_simple", - "seasonal", - "width" - ], - "moreFields": [ - "ref" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "firepit" - }, - "terms": [ - "bonfire", - "campfire", - "fire circle", - "fire hole", - "fire place", - "fire ring", - "firepit", - "fireplace", - "firering" - ], - "name": "Fire Pit" -} diff --git a/data/presets/presets/leisure/fishing.json b/data/presets/presets/leisure/fishing.json deleted file mode 100644 index 2a1593e262..0000000000 --- a/data/presets/presets/leisure/fishing.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-fish", - "fields": [ - "name", - "access_simple", - "fishing" - ], - "geometry": [ - "vertex", - "point", - "area" - ], - "tags": { - "leisure": "fishing" - }, - "terms": [ - "angler" - ], - "name": "Fishing Spot" -} diff --git a/data/presets/presets/leisure/fitness_centre.json b/data/presets/presets/leisure/fitness_centre.json deleted file mode 100644 index aab8dae153..0000000000 --- a/data/presets/presets/leisure/fitness_centre.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "fas-dumbbell", - "fields": [ - "name", - "sport", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "phone", - "website" - ], - "moreFields": [ - "brand", - "charge_fee", - "email", - "fax", - "fee", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "payment_multi" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_centre" - }, - "terms": [ - "health", - "gym", - "leisure", - "pilates", - "studio" - ], - "name": "Gym / Fitness Center" -} diff --git a/data/presets/presets/leisure/fitness_centre/yoga.json b/data/presets/presets/leisure/fitness_centre/yoga.json deleted file mode 100644 index ab2cb8cc40..0000000000 --- a/data/presets/presets/leisure/fitness_centre/yoga.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "terms": [ - "asanas", - "meditation", - "modern yoga", - "studio" - ], - "tags": { - "leisure": "fitness_centre", - "sport": "yoga" - }, - "reference": { - "key": "sport", - "value": "yoga" - }, - "name": "Yoga Studio" -} diff --git a/data/presets/presets/leisure/fitness_station.json b/data/presets/presets/leisure/fitness_station.json deleted file mode 100644 index e78f5dd0cd..0000000000 --- a/data/presets/presets/leisure/fitness_station.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "fitness_station", - "ref", - "wheelchair", - "blind" - ], - "moreFields": [ - "access_simple", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station" - }, - "addTags": { - "leisure": "fitness_station", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "exercise", - "fitness", - "gym", - "trim trail" - ], - "name": "Outdoor Fitness Station" -} diff --git a/data/presets/presets/leisure/fitness_station/balance_beam.json b/data/presets/presets/leisure/fitness_station/balance_beam.json deleted file mode 100644 index dc0d02bdaf..0000000000 --- a/data/presets/presets/leisure/fitness_station/balance_beam.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "balance_beam" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "balance_beam", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "balance", - "exercise", - "fitness", - "gym", - "trim trail" - ], - "name": "Exercise Balance Beam" -} diff --git a/data/presets/presets/leisure/fitness_station/box.json b/data/presets/presets/leisure/fitness_station/box.json deleted file mode 100644 index 5ccd0536af..0000000000 --- a/data/presets/presets/leisure/fitness_station/box.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "box" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "box", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "box", - "exercise", - "fitness", - "gym", - "jump", - "trim trail" - ], - "name": "Exercise Box" -} diff --git a/data/presets/presets/leisure/fitness_station/horizontal_bar.json b/data/presets/presets/leisure/fitness_station/horizontal_bar.json deleted file mode 100644 index 323c8868bc..0000000000 --- a/data/presets/presets/leisure/fitness_station/horizontal_bar.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "horizontal_bar" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "horizontal_bar", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "bar", - "chinup", - "chin up", - "exercise", - "fitness", - "gym", - "pullup", - "pull up", - "trim trail" - ], - "name": "Exercise Horizontal Bar" -} diff --git a/data/presets/presets/leisure/fitness_station/horizontal_ladder.json b/data/presets/presets/leisure/fitness_station/horizontal_ladder.json deleted file mode 100644 index 77b1171ef9..0000000000 --- a/data/presets/presets/leisure/fitness_station/horizontal_ladder.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "horizontal_ladder" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "horizontal_ladder", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "bar", - "chinup", - "chin up", - "exercise", - "fitness", - "gym", - "ladder", - "monkey bars", - "pullup", - "pull up", - "trim trail" - ], - "name": "Exercise Monkey Bars" -} diff --git a/data/presets/presets/leisure/fitness_station/hyperextension.json b/data/presets/presets/leisure/fitness_station/hyperextension.json deleted file mode 100644 index 7c9f69d282..0000000000 --- a/data/presets/presets/leisure/fitness_station/hyperextension.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "hyperextension" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "hyperextension", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "back", - "exercise", - "extension", - "fitness", - "gym", - "roman chair", - "trim trail" - ], - "name": "Hyperextension Station" -} diff --git a/data/presets/presets/leisure/fitness_station/parallel_bars.json b/data/presets/presets/leisure/fitness_station/parallel_bars.json deleted file mode 100644 index 9bcaad97c3..0000000000 --- a/data/presets/presets/leisure/fitness_station/parallel_bars.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "parallel_bars" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "parallel_bars", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "bar", - "dip", - "exercise", - "fitness", - "gym", - "trim trail" - ], - "name": "Parallel Bars" -} diff --git a/data/presets/presets/leisure/fitness_station/push-up.json b/data/presets/presets/leisure/fitness_station/push-up.json deleted file mode 100644 index 74b055b087..0000000000 --- a/data/presets/presets/leisure/fitness_station/push-up.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "push-up" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "push-up", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "bar", - "exercise", - "fitness", - "gym", - "pushup", - "push up", - "trim trail" - ], - "name": "Push-Up Station" -} diff --git a/data/presets/presets/leisure/fitness_station/rings.json b/data/presets/presets/leisure/fitness_station/rings.json deleted file mode 100644 index f8b0251cc5..0000000000 --- a/data/presets/presets/leisure/fitness_station/rings.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "rings" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "rings", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "exercise", - "fitness", - "gym", - "muscle up", - "pullup", - "pull up", - "trim trail" - ], - "name": "Exercise Rings" -} diff --git a/data/presets/presets/leisure/fitness_station/sign.json b/data/presets/presets/leisure/fitness_station/sign.json deleted file mode 100644 index 828e8fb608..0000000000 --- a/data/presets/presets/leisure/fitness_station/sign.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "sign" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "sign", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "exercise", - "fitness", - "gym", - "trim trail" - ], - "name": "Exercise Instruction Sign" -} diff --git a/data/presets/presets/leisure/fitness_station/sit-up.json b/data/presets/presets/leisure/fitness_station/sit-up.json deleted file mode 100644 index c50d02202c..0000000000 --- a/data/presets/presets/leisure/fitness_station/sit-up.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "sit-up" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "sit-up", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "crunch", - "exercise", - "fitness", - "gym", - "situp", - "sit up", - "trim trail" - ], - "name": "Sit-Up Station" -} diff --git a/data/presets/presets/leisure/fitness_station/stairs.json b/data/presets/presets/leisure/fitness_station/stairs.json deleted file mode 100644 index 39158d7415..0000000000 --- a/data/presets/presets/leisure/fitness_station/stairs.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "fitness_station", - "fitness_station": "stairs" - }, - "addTags": { - "leisure": "fitness_station", - "fitness_station": "stairs", - "sport": "fitness" - }, - "reference": { - "key": "leisure", - "value": "fitness_station" - }, - "terms": [ - "exercise", - "fitness", - "gym", - "steps", - "trim trail" - ], - "name": "Exercise Stairs" -} diff --git a/data/presets/presets/leisure/garden.json b/data/presets/presets/leisure/garden.json deleted file mode 100644 index 79d19864a1..0000000000 --- a/data/presets/presets/leisure/garden.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "maki-garden", - "fields": [ - "name", - "garden/type", - "operator", - "operator/type", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "garden" - }, - "terms": [ - "flowers", - "fruits", - "herbs", - "plants", - "vegetables" - ], - "name": "Garden" -} diff --git a/data/presets/presets/leisure/garden/botanical.json b/data/presets/presets/leisure/garden/botanical.json deleted file mode 100644 index 21f2f343d4..0000000000 --- a/data/presets/presets/leisure/garden/botanical.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-garden", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "garden", - "garden:type": "botanical" - }, - "reference": { - "key": "garden:type", - "value": "botanical" - }, - "terms": [ - "botanic garden", - "plant collection", - "rare plants" - ], - "name": "Botanical Garden" -} diff --git a/data/presets/presets/leisure/garden/community.json b/data/presets/presets/leisure/garden/community.json deleted file mode 100644 index 9c9959fd78..0000000000 --- a/data/presets/presets/leisure/garden/community.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-garden", - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "garden", - "garden:type": "community" - }, - "reference": { - "key": "garden:type", - "value": "community" - }, - "terms": [ - "co-op garden", - "collective garden", - "communal garden" - ], - "name": "Community Garden" -} diff --git a/data/presets/presets/leisure/golf_course.json b/data/presets/presets/leisure/golf_course.json deleted file mode 100644 index 93905c053a..0000000000 --- a/data/presets/presets/leisure/golf_course.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "maki-golf", - "fields": [ - "name", - "operator", - "address", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "payment_multi", - "phone", - "website" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "links" - ], - "tags": { - "leisure": "golf_course" - }, - "name": "Golf Course" -} diff --git a/data/presets/presets/leisure/hackerspace.json b/data/presets/presets/leisure/hackerspace.json deleted file mode 100644 index 3e1844ed78..0000000000 --- a/data/presets/presets/leisure/hackerspace.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "fas-code", - "fields": [ - "name", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "website", - "fee", - "payment_multi_fee", - "charge_fee", - "internet_access", - "internet_access/fee", - "internet_access/ssid" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "gnis/feature_id", - "level", - "phone", - "smoking", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "makerspace", - "hackspace", - "hacklab" - ], - "tags": { - "leisure": "hackerspace" - }, - "name": "Hackerspace" -} diff --git a/data/presets/presets/leisure/horse_riding.json b/data/presets/presets/leisure/horse_riding.json deleted file mode 100644 index 88d3a303be..0000000000 --- a/data/presets/presets/leisure/horse_riding.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "maki-horse-riding", - "fields": [ - "name", - "access_simple", - "operator", - "address", - "building" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "equestrian", - "stable" - ], - "tags": { - "leisure": "horse_riding" - }, - "name": "Horseback Riding Facility" -} diff --git a/data/presets/presets/leisure/ice_rink.json b/data/presets/presets/leisure/ice_rink.json deleted file mode 100644 index 4aa46c938c..0000000000 --- a/data/presets/presets/leisure/ice_rink.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "fas-skating", - "fields": [ - "name", - "seasonal", - "sport_ice", - "operator", - "address", - "building" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "phone", - "website" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "hockey", - "skating", - "curling" - ], - "tags": { - "leisure": "ice_rink" - }, - "name": "Ice Rink" -} diff --git a/data/presets/presets/leisure/marina.json b/data/presets/presets/leisure/marina.json deleted file mode 100644 index 5804871a80..0000000000 --- a/data/presets/presets/leisure/marina.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "icon": "temaki-sailboat", - "fields": [ - "name", - "operator", - "capacity", - "fee", - "payment_multi_fee", - "charge_fee", - "sanitary_dump_station", - "power_supply" - ], - "moreFields": [ - "address", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "phone", - "seamark/type", - "vhf", - "website" - ], - "geometry": [ - "area", - "point", - "vertex" - ], - "terms": [ - "boats", - "docks", - "harbor", - "harbour", - "moorings", - "yachts" - ], - "tags": { - "leisure": "marina" - }, - "addTags": { - "leisure": "marina", - "seamark:type": "harbour", - "seamark:harbour:category": "marina" - }, - "name": "Marina" -} diff --git a/data/presets/presets/leisure/miniature_golf.json b/data/presets/presets/leisure/miniature_golf.json deleted file mode 100644 index 6af69a202c..0000000000 --- a/data/presets/presets/leisure/miniature_golf.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-golf_green", - "fields": [ - "name", - "operator", - "address", - "opening_hours", - "opening_hours/covid19", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "crazy golf", - "mini golf", - "putt-putt" - ], - "tags": { - "leisure": "miniature_golf" - }, - "name": "Miniature Golf" -} diff --git a/data/presets/presets/leisure/nature_reserve.json b/data/presets/presets/leisure/nature_reserve.json deleted file mode 100644 index 42a78ae5b2..0000000000 --- a/data/presets/presets/leisure/nature_reserve.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-park", - "geometry": [ - "area", - "point" - ], - "fields": [ - "name", - "operator", - "address", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "dog", - "email", - "fax", - "gnis/feature_id", - "phone", - "website" - ], - "tags": { - "leisure": "nature_reserve" - }, - "terms": [ - "protected", - "wildlife" - ], - "name": "Nature Reserve" -} diff --git a/data/presets/presets/leisure/outdoor_seating.json b/data/presets/presets/leisure/outdoor_seating.json deleted file mode 100644 index 5332f0c304..0000000000 --- a/data/presets/presets/leisure/outdoor_seating.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-picnic-site", - "geometry": [ - "point", - "area" - ], - "fields": [ - "name", - "operator", - "capacity", - "lit", - "seasonal", - "heating" - ], - "moreFields": [ - "level", - "wheelchair" - ], - "terms": [ - "al fresco", - "beer garden", - "dining", - "cafe", - "restaurant", - "pub", - "bar", - "patio" - ], - "tags": { - "leisure": "outdoor_seating" - }, - "name": "Outdoor Seating Area" -} diff --git a/data/presets/presets/leisure/park.json b/data/presets/presets/leisure/park.json deleted file mode 100644 index 3eb5661290..0000000000 --- a/data/presets/presets/leisure/park.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "icon": "temaki-tree_and_bench", - "fields": [ - "name", - "operator", - "address", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "dog", - "email", - "fax", - "gnis/feature_id", - "phone", - "smoking", - "website" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "esplanade", - "estate", - "forest", - "garden", - "grass", - "green", - "grounds", - "lawn", - "lot", - "meadow", - "parkland", - "place", - "playground", - "plaza", - "pleasure garden", - "recreation area", - "square", - "tract", - "village green", - "woodland" - ], - "tags": { - "leisure": "park" - }, - "name": "Park" -} diff --git a/data/presets/presets/leisure/picnic_table.json b/data/presets/presets/leisure/picnic_table.json deleted file mode 100644 index b11416b01c..0000000000 --- a/data/presets/presets/leisure/picnic_table.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-picnic-site", - "fields": [ - "material", - "lit", - "bench", - "colour" - ], - "moreFields": [ - "height", - "level", - "manufacturer", - "operator" - ], - "geometry": [ - "point" - ], - "tags": { - "leisure": "picnic_table" - }, - "terms": [ - "bench" - ], - "name": "Picnic Table" -} diff --git a/data/presets/presets/leisure/picnic_table/chess.json b/data/presets/presets/leisure/picnic_table/chess.json deleted file mode 100644 index d2c4802220..0000000000 --- a/data/presets/presets/leisure/picnic_table/chess.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "fas-chess-pawn", - "geometry": [ - "point" - ], - "tags": { - "leisure": "picnic_table", - "sport": "chess" - }, - "reference": { - "key": "sport", - "value": "chess" - }, - "terms": [ - "bench", - "chess board", - "checkerboard", - "checkers", - "chequerboard", - "game table" - ], - "name": "Chess Table" -} diff --git a/data/presets/presets/leisure/pitch.json b/data/presets/presets/leisure/pitch.json deleted file mode 100644 index 23306fc08d..0000000000 --- a/data/presets/presets/leisure/pitch.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "name", - "sport", - "access_simple", - "surface", - "lit" - ], - "moreFields": [ - "address", - "charge_fee", - "covered", - "fee", - "gnis/feature_id", - "indoor", - "payment_multi_fee" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch" - }, - "terms": [ - "field" - ], - "name": "Sport Pitch" -} diff --git a/data/presets/presets/leisure/pitch/american_football.json b/data/presets/presets/leisure/pitch/american_football.json deleted file mode 100644 index 7ad8a4333d..0000000000 --- a/data/presets/presets/leisure/pitch/american_football.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-american-football", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "american_football" - }, - "reference": { - "key": "sport", - "value": "american_football" - }, - "terms": [ - "football", - "gridiron" - ], - "name": "American Football Field" -} diff --git a/data/presets/presets/leisure/pitch/australian_football.json b/data/presets/presets/leisure/pitch/australian_football.json deleted file mode 100644 index da6b4207fb..0000000000 --- a/data/presets/presets/leisure/pitch/australian_football.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-american-football", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "australian_football" - }, - "reference": { - "key": "sport", - "value": "australian_football" - }, - "terms": [ - "Aussie", - "AFL", - "football" - ], - "name": "Australian Football Field" -} diff --git a/data/presets/presets/leisure/pitch/badminton.json b/data/presets/presets/leisure/pitch/badminton.json deleted file mode 100644 index cd8e87f198..0000000000 --- a/data/presets/presets/leisure/pitch/badminton.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-tennis", - "fields": [ - "{leisure/pitch}", - "access_simple" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "badminton" - }, - "reference": { - "key": "sport", - "value": "badminton" - }, - "terms": [], - "name": "Badminton Court" -} diff --git a/data/presets/presets/leisure/pitch/baseball.json b/data/presets/presets/leisure/pitch/baseball.json deleted file mode 100644 index 08db1081c0..0000000000 --- a/data/presets/presets/leisure/pitch/baseball.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-baseball", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "baseball" - }, - "reference": { - "key": "sport", - "value": "baseball" - }, - "terms": [], - "name": "Baseball Field" -} diff --git a/data/presets/presets/leisure/pitch/basketball.json b/data/presets/presets/leisure/pitch/basketball.json deleted file mode 100644 index 7e2712699a..0000000000 --- a/data/presets/presets/leisure/pitch/basketball.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-basketball", - "fields": [ - "name", - "surface", - "hoops", - "lit", - "access_simple" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "basketball" - }, - "reference": { - "key": "sport", - "value": "basketball" - }, - "terms": [], - "name": "Basketball Court" -} diff --git a/data/presets/presets/leisure/pitch/beachvolleyball.json b/data/presets/presets/leisure/pitch/beachvolleyball.json deleted file mode 100644 index b224286849..0000000000 --- a/data/presets/presets/leisure/pitch/beachvolleyball.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-volleyball", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "beachvolleyball" - }, - "addTags": { - "leisure": "pitch", - "sport": "beachvolleyball", - "surface": "sand" - }, - "reference": { - "key": "sport", - "value": "beachvolleyball" - }, - "terms": [ - "volleyball" - ], - "name": "Beach Volleyball Court" -} diff --git a/data/presets/presets/leisure/pitch/boules.json b/data/presets/presets/leisure/pitch/boules.json deleted file mode 100644 index 164922db66..0000000000 --- a/data/presets/presets/leisure/pitch/boules.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "name", - "boules", - "{leisure/pitch}" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "boules" - }, - "reference": { - "key": "sport", - "value": "boules" - }, - "terms": [ - "bocce", - "lyonnaise", - "pétanque" - ], - "name": "Boules/Bocce Court" -} diff --git a/data/presets/presets/leisure/pitch/bowls.json b/data/presets/presets/leisure/pitch/bowls.json deleted file mode 100644 index 1f9d1dea51..0000000000 --- a/data/presets/presets/leisure/pitch/bowls.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "bowls" - }, - "reference": { - "key": "sport", - "value": "bowls" - }, - "terms": [], - "name": "Bowling Green" -} diff --git a/data/presets/presets/leisure/pitch/chess.json b/data/presets/presets/leisure/pitch/chess.json deleted file mode 100644 index b8456b73d2..0000000000 --- a/data/presets/presets/leisure/pitch/chess.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-chess-bishop", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "chess" - }, - "reference": { - "key": "sport", - "value": "chess" - }, - "terms": [ - "chessboard", - "checkerboard", - "checkers", - "chequerboard", - "garden chess", - "large chess", - "oversize chess" - ], - "name": "Giant Chess Board" -} diff --git a/data/presets/presets/leisure/pitch/cricket.json b/data/presets/presets/leisure/pitch/cricket.json deleted file mode 100644 index a56e805aac..0000000000 --- a/data/presets/presets/leisure/pitch/cricket.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-cricket", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "cricket" - }, - "reference": { - "key": "sport", - "value": "cricket" - }, - "terms": [], - "name": "Cricket Field" -} diff --git a/data/presets/presets/leisure/pitch/equestrian.json b/data/presets/presets/leisure/pitch/equestrian.json deleted file mode 100644 index fe0b79273f..0000000000 --- a/data/presets/presets/leisure/pitch/equestrian.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-horse-riding", - "fields": [ - "{leisure/pitch}", - "building" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "equestrian" - }, - "reference": { - "key": "sport", - "value": "equestrian" - }, - "terms": [ - "dressage", - "equestrian", - "horse", - "horseback", - "riding" - ], - "name": "Riding Arena" -} diff --git a/data/presets/presets/leisure/pitch/field_hockey.json b/data/presets/presets/leisure/pitch/field_hockey.json deleted file mode 100644 index 9d0d8be625..0000000000 --- a/data/presets/presets/leisure/pitch/field_hockey.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-field_hockey", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "field_hockey" - }, - "reference": { - "key": "sport", - "value": "field_hockey" - }, - "terms": [ - "landhockey" - ], - "name": "Field Hockey Pitch" -} diff --git a/data/presets/presets/leisure/pitch/horseshoes.json b/data/presets/presets/leisure/pitch/horseshoes.json deleted file mode 100644 index 7538d692b0..0000000000 --- a/data/presets/presets/leisure/pitch/horseshoes.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-horseshoes", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "horseshoes" - }, - "reference": { - "key": "sport", - "value": "horseshoes" - }, - "terms": [ - "horse shoes" - ], - "name": "Horseshoes Pit" -} diff --git a/data/presets/presets/leisure/pitch/netball.json b/data/presets/presets/leisure/pitch/netball.json deleted file mode 100644 index 784637eb88..0000000000 --- a/data/presets/presets/leisure/pitch/netball.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-volleyball", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "netball" - }, - "reference": { - "key": "sport", - "value": "netball" - }, - "terms": [], - "name": "Netball Court" -} diff --git a/data/presets/presets/leisure/pitch/rugby_league.json b/data/presets/presets/leisure/pitch/rugby_league.json deleted file mode 100644 index 232613518e..0000000000 --- a/data/presets/presets/leisure/pitch/rugby_league.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-american-football", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "rugby_league" - }, - "reference": { - "key": "sport", - "value": "rugby_league" - }, - "terms": [], - "name": "Rugby League Field" -} diff --git a/data/presets/presets/leisure/pitch/rugby_union.json b/data/presets/presets/leisure/pitch/rugby_union.json deleted file mode 100644 index beada2bfb5..0000000000 --- a/data/presets/presets/leisure/pitch/rugby_union.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-american-football", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "rugby_union" - }, - "reference": { - "key": "sport", - "value": "rugby_union" - }, - "terms": [], - "name": "Rugby Union Field" -} diff --git a/data/presets/presets/leisure/pitch/shuffleboard.json b/data/presets/presets/leisure/pitch/shuffleboard.json deleted file mode 100644 index b4aa4c9464..0000000000 --- a/data/presets/presets/leisure/pitch/shuffleboard.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-shuffleboard", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "shuffleboard" - }, - "reference": { - "key": "sport", - "value": "shuffleboard" - }, - "terms": [ - "deck shuffleboard", - "floor shuffleboard" - ], - "name": "Shuffleboard Court" -} diff --git a/data/presets/presets/leisure/pitch/skateboard.json b/data/presets/presets/leisure/pitch/skateboard.json deleted file mode 100644 index 7d217fbbe4..0000000000 --- a/data/presets/presets/leisure/pitch/skateboard.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-skateboard", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "skateboard" - }, - "reference": { - "key": "sport", - "value": "skateboard" - }, - "terms": [], - "name": "Skate Park" -} diff --git a/data/presets/presets/leisure/pitch/soccer.json b/data/presets/presets/leisure/pitch/soccer.json deleted file mode 100644 index 0d16bbc457..0000000000 --- a/data/presets/presets/leisure/pitch/soccer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-soccer", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "soccer" - }, - "reference": { - "key": "sport", - "value": "soccer" - }, - "terms": [ - "football" - ], - "name": "Soccer Field" -} diff --git a/data/presets/presets/leisure/pitch/softball.json b/data/presets/presets/leisure/pitch/softball.json deleted file mode 100644 index 258b59db83..0000000000 --- a/data/presets/presets/leisure/pitch/softball.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-baseball", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "softball" - }, - "reference": { - "key": "sport", - "value": "softball" - }, - "terms": [ - "softball", - "diamond" - ], - "name": "Softball Field" -} diff --git a/data/presets/presets/leisure/pitch/table_tennis.json b/data/presets/presets/leisure/pitch/table_tennis.json deleted file mode 100644 index 992336b108..0000000000 --- a/data/presets/presets/leisure/pitch/table_tennis.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-table-tennis", - "fields": [ - "name", - "lit", - "access_simple" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "table_tennis" - }, - "reference": { - "key": "sport", - "value": "table_tennis" - }, - "terms": [ - "table tennis", - "ping pong" - ], - "name": "Ping Pong Table" -} diff --git a/data/presets/presets/leisure/pitch/tennis.json b/data/presets/presets/leisure/pitch/tennis.json deleted file mode 100644 index c04bfe5921..0000000000 --- a/data/presets/presets/leisure/pitch/tennis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-tennis", - "fields": [ - "{leisure/pitch}", - "access_simple" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "tennis" - }, - "reference": { - "key": "sport", - "value": "tennis" - }, - "terms": [], - "name": "Tennis Court" -} diff --git a/data/presets/presets/leisure/pitch/volleyball.json b/data/presets/presets/leisure/pitch/volleyball.json deleted file mode 100644 index 75c8bb7243..0000000000 --- a/data/presets/presets/leisure/pitch/volleyball.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-volleyball", - "geometry": [ - "area", - "point" - ], - "tags": { - "leisure": "pitch", - "sport": "volleyball" - }, - "reference": { - "key": "sport", - "value": "volleyball" - }, - "terms": [], - "name": "Volleyball Court" -} diff --git a/data/presets/presets/leisure/playground.json b/data/presets/presets/leisure/playground.json deleted file mode 100644 index 2a6ebe62ec..0000000000 --- a/data/presets/presets/leisure/playground.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-playground", - "fields": [ - "name", - "operator", - "playground/theme", - "surface", - "access_simple", - "min_age", - "max_age" - ], - "moreFields": [ - "blind", - "dog", - "gnis/feature_id", - "wheelchair" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "jungle gym", - "play area" - ], - "tags": { - "leisure": "playground" - }, - "name": "Playground" -} diff --git a/data/presets/presets/leisure/resort.json b/data/presets/presets/leisure/resort.json deleted file mode 100644 index d64384a7da..0000000000 --- a/data/presets/presets/leisure/resort.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "maki-lodging", - "fields": [ - "name", - "operator", - "resort", - "address", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "access_simple", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "payment_multi", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "resort" - }, - "terms": [ - "recreation center", - "sanatorium", - "ski and snowboard resort", - "vacation resort", - "winter sports resort" - ], - "name": "Resort" -} diff --git a/data/presets/presets/leisure/sauna.json b/data/presets/presets/leisure/sauna.json deleted file mode 100644 index b990b8876f..0000000000 --- a/data/presets/presets/leisure/sauna.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "fas-thermometer-three-quarters", - "fields": [ - "name", - "operator", - "address", - "opening_hours", - "opening_hours/covid19", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "sauna" - }, - "name": "Sauna" -} diff --git a/data/presets/presets/leisure/slipway.json b/data/presets/presets/leisure/slipway.json deleted file mode 100644 index 5dc189e2fa..0000000000 --- a/data/presets/presets/leisure/slipway.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "maki-slipway", - "fields": [ - "name", - "surface", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "lanes" - ], - "moreFields": [ - "lit", - "opening_hours", - "opening_hours/covid19", - "seamark/type", - "width" - ], - "geometry": [ - "line" - ], - "terms": [ - "boat launch", - "boat ramp", - "boat landing" - ], - "tags": { - "leisure": "slipway" - }, - "addTags": { - "leisure": "slipway", - "highway": "service", - "service": "slipway" - }, - "matchScore": 1.1, - "name": "Slipway" -} diff --git a/data/presets/presets/leisure/slipway_point.json b/data/presets/presets/leisure/slipway_point.json deleted file mode 100644 index 80b119e941..0000000000 --- a/data/presets/presets/leisure/slipway_point.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-slipway", - "fields": [ - "{leisure/slipway}" - ], - "moreFields": [ - "{leisure/slipway}" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "boat launch", - "boat ramp", - "boat landing" - ], - "tags": { - "leisure": "slipway" - }, - "name": "Slipway" -} diff --git a/data/presets/presets/leisure/sports_centre.json b/data/presets/presets/leisure/sports_centre.json deleted file mode 100644 index 1ec59e0657..0000000000 --- a/data/presets/presets/leisure/sports_centre.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "name", - "sport", - "building", - "address", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "level", - "opening_hours", - "opening_hours/covid19", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "sports_centre" - }, - "terms": [], - "name": "Sports Center / Complex" -} diff --git a/data/presets/presets/leisure/sports_centre/climbing.json b/data/presets/presets/leisure/sports_centre/climbing.json deleted file mode 100644 index 2bbc6db739..0000000000 --- a/data/presets/presets/leisure/sports_centre/climbing.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-abseiling", - "geometry": [ - "point", - "area" - ], - "terms": [ - "abseiling", - "artificial climbing wall", - "belaying", - "bouldering", - "rock climbing facility", - "indoor rock wall", - "rappeling", - "rock gym", - "ropes" - ], - "tags": { - "leisure": "sports_centre", - "sport": "climbing" - }, - "reference": { - "key": "sport", - "value": "climbing" - }, - "name": "Climbing Gym" -} diff --git a/data/presets/presets/leisure/sports_centre/swimming.json b/data/presets/presets/leisure/sports_centre/swimming.json deleted file mode 100644 index 119b4cfdca..0000000000 --- a/data/presets/presets/leisure/sports_centre/swimming.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-swimmer", - "geometry": [ - "area", - "point" - ], - "terms": [ - "dive", - "water" - ], - "tags": { - "leisure": "sports_centre", - "sport": "swimming" - }, - "reference": { - "key": "sport", - "value": "swimming" - }, - "name": "Swimming Pool Facility" -} diff --git a/data/presets/presets/leisure/sports_hall.json b/data/presets/presets/leisure/sports_hall.json deleted file mode 100644 index 092dd379fa..0000000000 --- a/data/presets/presets/leisure/sports_hall.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "name", - "operator", - "sport", - "address", - "building_area", - "access_simple" - ], - "moreFields": [ - "air_conditioning", - "level", - "opening_hours", - "opening_hours/covid19", - "fee", - "payment_multi_fee", - "charge_fee", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "athletic courts", - "gym", - "sports hall", - "sports venue" - ], - "tags": { - "leisure": "sports_hall" - }, - "name": "Gymnasium" -} diff --git a/data/presets/presets/leisure/stadium.json b/data/presets/presets/leisure/stadium.json deleted file mode 100644 index 739134b02c..0000000000 --- a/data/presets/presets/leisure/stadium.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "name", - "operator", - "sport", - "address" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "stadium" - }, - "name": "Stadium" -} diff --git a/data/presets/presets/leisure/swimming_area.json b/data/presets/presets/leisure/swimming_area.json deleted file mode 100644 index 4c0dc4a7aa..0000000000 --- a/data/presets/presets/leisure/swimming_area.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "fas-swimmer", - "fields": [ - "name", - "access_simple", - "supervised", - "fee", - "payment_multi_fee", - "charge_fee", - "lit" - ], - "moreFields": [ - "opening_hours", - "opening_hours/covid19", - "operator" - ], - "geometry": [ - "area" - ], - "terms": [ - "dive", - "water", - "aquatics" - ], - "tags": { - "leisure": "swimming_area" - }, - "name": "Natural Swimming Area" -} diff --git a/data/presets/presets/leisure/swimming_pool.json b/data/presets/presets/leisure/swimming_pool.json deleted file mode 100644 index f7dc552ab9..0000000000 --- a/data/presets/presets/leisure/swimming_pool.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "fas-swimming-pool", - "fields": [ - "name", - "access_simple", - "lit", - "location_pool", - "length", - "swimming_pool" - ], - "moreFields": [ - "address", - "level", - "gnis/feature_id", - "opening_hours", - "opening_hours/covid19", - "operator" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "dive", - "water", - "aquatics" - ], - "tags": { - "leisure": "swimming_pool" - }, - "name": "Swimming Pool" -} diff --git a/data/presets/presets/leisure/track.json b/data/presets/presets/leisure/track.json deleted file mode 100644 index b0c6a4b809..0000000000 --- a/data/presets/presets/leisure/track.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "temaki-racetrack_oval", - "fields": [ - "surface", - "sport_racing_nonmotor", - "lit", - "width", - "lanes" - ], - "moreFields": [ - "access", - "covered", - "gnis/feature_id", - "indoor", - "level" - ], - "geometry": [ - "line", - "point", - "area" - ], - "tags": { - "leisure": "track" - }, - "terms": [ - "cycle", - "dog", - "greyhound", - "horse", - "race*", - "track" - ], - "name": "Racetrack (Non-Motorsport)" -} diff --git a/data/presets/presets/leisure/track/cycling.json b/data/presets/presets/leisure/track/cycling.json deleted file mode 100644 index df7af1ddb9..0000000000 --- a/data/presets/presets/leisure/track/cycling.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "fas-biking", - "fields": [ - "name", - "surface", - "sport_racing_nonmotor", - "lit", - "width", - "lanes" - ], - "geometry": [ - "point", - "line", - "area" - ], - "tags": { - "leisure": "track", - "sport": "cycling" - }, - "reference": { - "key": "sport", - "value": "cycling" - }, - "terms": [ - "bicycle track", - "bicycling track", - "cycle racetrack", - "velodrome" - ], - "name": "Cycling Track" -} diff --git a/data/presets/presets/leisure/track/horse_racing.json b/data/presets/presets/leisure/track/horse_racing.json deleted file mode 100644 index f2569725ee..0000000000 --- a/data/presets/presets/leisure/track/horse_racing.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "maki-horse-riding", - "fields": [ - "name", - "surface", - "sport_racing_nonmotor", - "lit", - "width", - "lanes" - ], - "geometry": [ - "point", - "line", - "area" - ], - "tags": { - "leisure": "track", - "sport": "horse_racing" - }, - "reference": { - "key": "sport", - "value": "horse_racing" - }, - "terms": [ - "equestrian race track", - "horse race betting", - "horseracing", - "horsetrack", - "horse racetrack" - ], - "name": "Horse Racing Track" -} diff --git a/data/presets/presets/leisure/track/running.json b/data/presets/presets/leisure/track/running.json deleted file mode 100644 index 3b63a4d784..0000000000 --- a/data/presets/presets/leisure/track/running.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "maki-pitch", - "fields": [ - "name", - "surface", - "sport_racing_nonmotor", - "lit", - "width", - "lanes" - ], - "geometry": [ - "point", - "line", - "area" - ], - "tags": { - "leisure": "track", - "sport": "running" - }, - "reference": { - "key": "sport", - "value": "running" - }, - "terms": [ - "athletics track", - "decathlon", - "foot race", - "long distance running", - "marathon", - "middle distance running", - "racetrack", - "running", - "sprint", - "track", - "walking" - ], - "name": "Running Track" -} diff --git a/data/presets/presets/leisure/trampoline_park.json b/data/presets/presets/leisure/trampoline_park.json deleted file mode 100644 index ce070dd4b0..0000000000 --- a/data/presets/presets/leisure/trampoline_park.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "fas-chevron-circle-up", - "fields": [ - "name", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "phone", - "website" - ], - "moreFields": [ - "brand", - "charge_fee", - "email", - "fax", - "fee", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "operator", - "payment_multi" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "leisure": "trampoline_park" - }, - "terms": [ - "bounce", - "jump", - "spring" - ], - "name": "Trampoline Park" -} diff --git a/data/presets/presets/leisure/water_park.json b/data/presets/presets/leisure/water_park.json deleted file mode 100644 index 8d3a879a45..0000000000 --- a/data/presets/presets/leisure/water_park.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "fas-swimmer", - "fields": [ - "{tourism/theme_park}", - "sport" - ], - "moreFields": [ - "{tourism/theme_park}" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "swim", - "pool", - "dive" - ], - "tags": { - "leisure": "water_park" - }, - "name": "Water Park" -} diff --git a/data/presets/presets/line.json b/data/presets/presets/line.json deleted file mode 100644 index 3b55d57f2e..0000000000 --- a/data/presets/presets/line.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "name" - ], - "geometry": [ - "line" - ], - "tags": {}, - "terms": [ - "polyline" - ], - "name": "Line", - "matchScore": 0.1 -} diff --git a/data/presets/presets/man_made/adit.json b/data/presets/presets/man_made/adit.json deleted file mode 100644 index be17156b4c..0000000000 --- a/data/presets/presets/man_made/adit.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-adit_profile", - "geometry": [ - "point", - "area" - ], - "fields": [ - "name", - "operator", - "resource", - "direction" - ], - "moreFields": [ - "gnis/feature_id" - ], - "terms": [ - "cave", - "horizontal mine entrance", - "tunnel", - "underground" - ], - "tags": { - "man_made": "adit" - }, - "name": "Adit" -} diff --git a/data/presets/presets/man_made/antenna.json b/data/presets/presets/man_made/antenna.json deleted file mode 100644 index 1e507df9f2..0000000000 --- a/data/presets/presets/man_made/antenna.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-antenna", - "fields": [ - "communication_multi", - "operator", - "manufacturer", - "height" - ], - "geometry": [ - "point" - ], - "terms": [ - "broadcast", - "cell phone", - "cell", - "communication", - "mobile phone", - "radio", - "television", - "transmission", - "tv" - ], - "tags": { - "man_made": "antenna" - }, - "name": "Antenna" -} diff --git a/data/presets/presets/man_made/beacon.json b/data/presets/presets/man_made/beacon.json deleted file mode 100644 index 92ea12e68e..0000000000 --- a/data/presets/presets/man_made/beacon.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-communications-tower", - "fields": [ - "name", - "height" - ], - "moreFields": [ - "seamark/type" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "man_made": "beacon" - }, - "name": "Beacon", - "matchScore": 0.5 -} diff --git a/data/presets/presets/man_made/beehive.json b/data/presets/presets/man_made/beehive.json deleted file mode 100644 index 668a904b1f..0000000000 --- a/data/presets/presets/man_made/beehive.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "fas-archive", - "geometry": [ - "point", - "area" - ], - "fields": [ - "ref", - "operator", - "seasonal", - "height", - "colour" - ], - "moreFields": [ - "manufacturer" - ], - "terms": [ - "apiary", - "beekeeper", - "farm", - "honey", - "pollination" - ], - "tags": { - "man_made": "beehive" - }, - "name": "Beehive" -} diff --git a/data/presets/presets/man_made/breakwater.json b/data/presets/presets/man_made/breakwater.json deleted file mode 100644 index 1ab7d2c22a..0000000000 --- a/data/presets/presets/man_made/breakwater.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "material", - "seamark/type" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "man_made": "breakwater" - }, - "name": "Breakwater" -} diff --git a/data/presets/presets/man_made/bridge.json b/data/presets/presets/man_made/bridge.json deleted file mode 100644 index 6481e9f514..0000000000 --- a/data/presets/presets/man_made/bridge.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "maki-bridge", - "fields": [ - "name", - "bridge_combo", - "layer", - "maxweight" - ], - "moreFields": [ - "gnis/feature_id", - "manufacturer", - "material", - "seamark/type" - ], - "geometry": [ - "area" - ], - "tags": { - "man_made": "bridge" - }, - "addTags": { - "man_made": "bridge", - "layer": "1" - }, - "removeTags": { - "man_made": "bridge", - "layer": "*" - }, - "reference": { - "key": "man_made", - "value": "bridge" - }, - "name": "Bridge Area", - "matchScore": 0.85 -} diff --git a/data/presets/presets/man_made/bunker_silo.json b/data/presets/presets/man_made/bunker_silo.json deleted file mode 100644 index 20835c2f50..0000000000 --- a/data/presets/presets/man_made/bunker_silo.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-bunker_silo", - "fields": [ - "content" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "Silage", - "Storage" - ], - "tags": { - "man_made": "bunker_silo" - }, - "name": "Bunker Silo" -} diff --git a/data/presets/presets/man_made/cairn.json b/data/presets/presets/man_made/cairn.json deleted file mode 100644 index d09c9326f9..0000000000 --- a/data/presets/presets/man_made/cairn.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-cairn", - "fields": [ - "height", - "ele", - "ele_node", - "check_date" - ], - "moreFields": [ - "colour", - "material", - "name", - "operator", - "ref" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "rock pile", - "stone stack", - "stone pile", - "càrn" - ], - "tags": { - "man_made": "cairn" - }, - "name": "Cairn" -} diff --git a/data/presets/presets/man_made/chimney.json b/data/presets/presets/man_made/chimney.json deleted file mode 100644 index 87b4b94071..0000000000 --- a/data/presets/presets/man_made/chimney.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-chimney", - "fields": [ - "operator", - "material", - "height" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "chimney" - }, - "name": "Chimney" -} diff --git a/data/presets/presets/man_made/clearcut.json b/data/presets/presets/man_made/clearcut.json deleted file mode 100644 index da69ea6923..0000000000 --- a/data/presets/presets/man_made/clearcut.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-logging", - "geometry": [ - "area" - ], - "tags": { - "man_made": "clearcut" - }, - "terms": [ - "cut", - "forest", - "lumber", - "tree", - "wood" - ], - "name": "Clearcut Forest" -} diff --git a/data/presets/presets/man_made/courtyard.json b/data/presets/presets/man_made/courtyard.json deleted file mode 100644 index 26ed23a61d..0000000000 --- a/data/presets/presets/man_made/courtyard.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-square-stroked", - "fields": [ - "name" - ], - "moreFields": [], - "geometry": [ - "area" - ], - "tags": { - "man_made": "courtyard" - }, - "terms": [ - "court", - "enclosed open air", - "quadrangle", - "yard" - ], - "name": "Courtyard" -} diff --git a/data/presets/presets/man_made/crane.json b/data/presets/presets/man_made/crane.json deleted file mode 100644 index 389a84141b..0000000000 --- a/data/presets/presets/man_made/crane.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-crane", - "fields": [ - "operator", - "manufacturer", - "height", - "crane/type" - ], - "geometry": [ - "point", - "line", - "vertex", - "area" - ], - "tags": { - "man_made": "crane" - }, - "name": "Crane" -} diff --git a/data/presets/presets/man_made/cross.json b/data/presets/presets/man_made/cross.json deleted file mode 100644 index ebf9d66582..0000000000 --- a/data/presets/presets/man_made/cross.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-religious-christian", - "fields": [ - "name", - "material", - "height", - "ele_node", - "inscription", - "direction" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "man_made": "cross" - }, - "name": "Cross" -} diff --git a/data/presets/presets/man_made/cutline.json b/data/presets/presets/man_made/cutline.json deleted file mode 100644 index 6a4e0a70ab..0000000000 --- a/data/presets/presets/man_made/cutline.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "icon": "maki-logging", - "geometry": [ - "line" - ], - "tags": { - "man_made": "cutline" - }, - "name": "Cut line" -} diff --git a/data/presets/presets/man_made/dovecote.json b/data/presets/presets/man_made/dovecote.json deleted file mode 100644 index e21424cff5..0000000000 --- a/data/presets/presets/man_made/dovecote.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "fas-dove", - "fields": [ - "operator", - "building_area", - "height", - "capacity" - ], - "moreFields": [ - "layer", - "location" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "birds", - "doocot", - "dovecot", - "doves", - "pigeonholes", - "pigeons" - ], - "tags": { - "man_made": "dovecote" - }, - "name": "Dovecote" -} diff --git a/data/presets/presets/man_made/dyke.json b/data/presets/presets/man_made/dyke.json deleted file mode 100644 index dedbc3997a..0000000000 --- a/data/presets/presets/man_made/dyke.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "geometry": [ - "line" - ], - "tags": { - "man_made": "dyke" - }, - "terms": [ - "Dike", - "Dyke", - "Floodbank", - "Stopbank" - ], - "name": "Levee" -} diff --git a/data/presets/presets/man_made/embankment.json b/data/presets/presets/man_made/embankment.json deleted file mode 100644 index c4a7bd91bb..0000000000 --- a/data/presets/presets/man_made/embankment.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "geometry": [ - "line" - ], - "tags": { - "man_made": "embankment" - }, - "name": "Embankment" -} diff --git a/data/presets/presets/man_made/flagpole.json b/data/presets/presets/man_made/flagpole.json deleted file mode 100644 index 6877ca69cc..0000000000 --- a/data/presets/presets/man_made/flagpole.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-embassy", - "fields": [ - "operator", - "flag/type", - "country_flag", - "lit", - "height" - ], - "moreFields": [ - "manufacturer", - "material" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "man_made": "flagpole" - }, - "name": "Flagpole" -} diff --git a/data/presets/presets/man_made/gasometer.json b/data/presets/presets/man_made/gasometer.json deleted file mode 100644 index aca591e2e0..0000000000 --- a/data/presets/presets/man_made/gasometer.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-storage_tank", - "fields": [ - "content", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "gas holder" - ], - "tags": { - "man_made": "gasometer" - }, - "name": "Gasometer" -} diff --git a/data/presets/presets/man_made/goods_conveyor.json b/data/presets/presets/man_made/goods_conveyor.json deleted file mode 100644 index b2ca2ebccb..0000000000 --- a/data/presets/presets/man_made/goods_conveyor.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "temaki-conveyor", - "fields": [ - "name", - "ref", - "operator", - "oneway_yes", - "resource", - "width" - ], - "moreFields": [ - "colour", - "covered", - "indoor", - "lit", - "manufacturer", - "material" - ], - "geometry": [ - "line" - ], - "terms": [ - "belt conveyor", - "chain conveyor", - "conveyor belt", - "roller conveyor" - ], - "tags": { - "man_made": "goods_conveyor" - }, - "name": "Goods Conveyor" -} diff --git a/data/presets/presets/man_made/groyne.json b/data/presets/presets/man_made/groyne.json deleted file mode 100644 index 60b2b63626..0000000000 --- a/data/presets/presets/man_made/groyne.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fields": [ - "material", - "seamark/type" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "man_made": "groyne" - }, - "name": "Groin" -} diff --git a/data/presets/presets/man_made/lighthouse.json b/data/presets/presets/man_made/lighthouse.json deleted file mode 100644 index bc77953f77..0000000000 --- a/data/presets/presets/man_made/lighthouse.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-lighthouse", - "fields": [ - "name", - "operator", - "building_area", - "height" - ], - "moreFields": [ - "address", - "email", - "fax", - "gnis/feature_id", - "phone", - "seamark/type", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "lighthouse" - }, - "name": "Lighthouse" -} diff --git a/data/presets/presets/man_made/manhole.json b/data/presets/presets/man_made/manhole.json deleted file mode 100644 index e61a3fd8e6..0000000000 --- a/data/presets/presets/man_made/manhole.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-manhole", - "fields": [ - "manhole", - "operator", - "label", - "ref" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "manhole": "*" - }, - "addTags": { - "man_made": "manhole", - "manhole": "*" - }, - "terms": [ - "cover", - "hole", - "sewer", - "sewage", - "telecom" - ], - "name": "Manhole" -} diff --git a/data/presets/presets/man_made/manhole/drain.json b/data/presets/presets/man_made/manhole/drain.json deleted file mode 100644 index 55dcdb18d8..0000000000 --- a/data/presets/presets/man_made/manhole/drain.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-manhole", - "fields": [ - "operator", - "ref" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "manhole": "drain" - }, - "addTags": { - "man_made": "manhole", - "manhole": "drain" - }, - "terms": [ - "cover", - "drain", - "hole", - "rain", - "sewer", - "sewage", - "storm" - ], - "name": "Storm Drain" -} diff --git a/data/presets/presets/man_made/manhole/gas.json b/data/presets/presets/man_made/manhole/gas.json deleted file mode 100644 index fdeaa21819..0000000000 --- a/data/presets/presets/man_made/manhole/gas.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-gas_manhole", - "fields": [ - "operator", - "ref" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "manhole": "gas" - }, - "addTags": { - "man_made": "manhole", - "manhole": "gas" - }, - "terms": [ - "cover", - "gas", - "heat", - "hole", - "utility" - ], - "name": "Gas Utility Manhole" -} diff --git a/data/presets/presets/man_made/manhole/power.json b/data/presets/presets/man_made/manhole/power.json deleted file mode 100644 index 610b30a56c..0000000000 --- a/data/presets/presets/man_made/manhole/power.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-power_manhole", - "fields": [ - "operator", - "ref" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "manhole": "power" - }, - "addTags": { - "man_made": "manhole", - "manhole": "power" - }, - "terms": [ - "cover", - "hole", - "electric", - "hole", - "power", - "utility" - ], - "name": "Power Utility Manhole" -} diff --git a/data/presets/presets/man_made/manhole/sewer.json b/data/presets/presets/man_made/manhole/sewer.json deleted file mode 100644 index 3a1058f5bd..0000000000 --- a/data/presets/presets/man_made/manhole/sewer.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-waste_manhole", - "fields": [ - "operator", - "ref" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "manhole": "sewer" - }, - "addTags": { - "man_made": "manhole", - "manhole": "sewer" - }, - "terms": [ - "cover", - "drain", - "hole", - "sewer", - "sewage", - "utility" - ], - "name": "Sewer Utility Manhole" -} diff --git a/data/presets/presets/man_made/manhole/telecom.json b/data/presets/presets/man_made/manhole/telecom.json deleted file mode 100644 index e6f59b62cf..0000000000 --- a/data/presets/presets/man_made/manhole/telecom.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-cable_manhole", - "fields": [ - "operator", - "ref" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "manhole": "telecom" - }, - "addTags": { - "man_made": "manhole", - "manhole": "telecom" - }, - "terms": [ - "bt", - "cable", - "cover", - "phone", - "hole", - "telecom", - "telephone", - "utility" - ], - "name": "Telecom Utility Manhole" -} diff --git a/data/presets/presets/man_made/manhole/water.json b/data/presets/presets/man_made/manhole/water.json deleted file mode 100644 index 6b46aef380..0000000000 --- a/data/presets/presets/man_made/manhole/water.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-waste_manhole", - "fields": [ - "operator", - "ref" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "manhole": "water" - }, - "addTags": { - "man_made": "manhole", - "manhole": "water" - }, - "terms": [ - "cover", - "drinking", - "hole", - "utility", - "water" - ], - "name": "Water Utility Manhole" -} diff --git a/data/presets/presets/man_made/mast.json b/data/presets/presets/man_made/mast.json deleted file mode 100644 index 03fd9bbaeb..0000000000 --- a/data/presets/presets/man_made/mast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-mast", - "fields": [ - "tower/type", - "tower/construction", - "height" - ], - "moreFields": [ - "communication_multi", - "gnis/feature_id", - "manufacturer", - "material" - ], - "geometry": [ - "point" - ], - "terms": [ - "antenna", - "broadcast tower", - "cell phone tower", - "cell tower", - "communication mast", - "communication tower", - "guyed tower", - "mobile phone tower", - "radio mast", - "radio tower", - "television tower", - "transmission mast", - "transmission tower", - "tv tower" - ], - "tags": { - "man_made": "mast" - }, - "name": "Mast" -} diff --git a/data/presets/presets/man_made/mast/communication.json b/data/presets/presets/man_made/mast/communication.json deleted file mode 100644 index 56f4055c94..0000000000 --- a/data/presets/presets/man_made/mast/communication.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "temaki-mast_communication", - "fields": [ - "{man_made/mast}", - "communication_multi" - ], - "moreFields": [ - "{man_made/mast}", - "mimics" - ], - "geometry": [ - "point" - ], - "terms": [ - "antenna", - "broadcast tower", - "cell phone tower", - "cell tower", - "communication mast", - "communication tower", - "guyed tower", - "mobile phone tower", - "radio mast", - "radio tower", - "television tower", - "transmission mast", - "transmission tower", - "tv tower" - ], - "tags": { - "man_made": "mast", - "tower:type": "communication" - }, - "reference": { - "key": "tower:type", - "value": "communication" - }, - "name": "Communication Mast" -} diff --git a/data/presets/presets/man_made/mast/communication/mobile_phone.json b/data/presets/presets/man_made/mast/communication/mobile_phone.json deleted file mode 100644 index 91d0adf46e..0000000000 --- a/data/presets/presets/man_made/mast/communication/mobile_phone.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-mast_communication", - "geometry": [ - "point" - ], - "terms": [ - "antenna", - "cell mast", - "cell phone mast", - "cell phone tower", - "cell tower", - "communication mast", - "communication tower", - "guyed tower", - "mobile phone tower", - "transmission mast", - "transmission tower" - ], - "tags": { - "man_made": "mast", - "tower:type": "communication", - "communication:mobile_phone": "yes" - }, - "reference": { - "key": "communication:mobile_phone", - "value": "yes" - }, - "name": "Mobile Phone Mast" -} diff --git a/data/presets/presets/man_made/mast/communication/radio.json b/data/presets/presets/man_made/mast/communication/radio.json deleted file mode 100644 index e214c5bc44..0000000000 --- a/data/presets/presets/man_made/mast/communication/radio.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-mast_communication", - "geometry": [ - "point" - ], - "terms": [ - "antenna", - "broadcast tower", - "communication mast", - "communication tower", - "guyed tower", - "radio mast", - "radio tower", - "transmission mast", - "transmission tower" - ], - "tags": { - "man_made": "mast", - "tower:type": "communication", - "communication:radio": "yes" - }, - "reference": { - "key": "communication:radio", - "value": "yes" - }, - "name": "Radio Broadcast Mast" -} diff --git a/data/presets/presets/man_made/mast/communication/television.json b/data/presets/presets/man_made/mast/communication/television.json deleted file mode 100644 index 0762b4df09..0000000000 --- a/data/presets/presets/man_made/mast/communication/television.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-mast_communication", - "geometry": [ - "point" - ], - "terms": [ - "antenna", - "broadcast tower", - "communication mast", - "communication tower", - "guyed tower", - "television mast", - "television tower", - "transmission mast", - "transmission tower", - "tv mast", - "tv tower" - ], - "tags": { - "man_made": "mast", - "tower:type": "communication", - "communication:television": "yes" - }, - "reference": { - "key": "communication:television", - "value": "yes" - }, - "name": "Television Broadcast Mast" -} diff --git a/data/presets/presets/man_made/mineshaft.json b/data/presets/presets/man_made/mineshaft.json deleted file mode 100644 index 526d161b05..0000000000 --- a/data/presets/presets/man_made/mineshaft.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-mineshaft_cage", - "geometry": [ - "point", - "area" - ], - "fields": [ - "name", - "operator", - "resource" - ], - "moreFields": [ - "gnis/feature_id" - ], - "terms": [ - "cave", - "mine shaft", - "tunnel", - "underground", - "vertical mine entrance" - ], - "tags": { - "man_made": "mineshaft" - }, - "name": "Mineshaft" -} diff --git a/data/presets/presets/man_made/monitoring_station.json b/data/presets/presets/man_made/monitoring_station.json deleted file mode 100644 index e05a690929..0000000000 --- a/data/presets/presets/man_made/monitoring_station.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-antenna", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "monitoring_multi", - "operator", - "manufacturer" - ], - "terms": [ - "weather", - "earthquake", - "seismology", - "air", - "gps" - ], - "tags": { - "man_made": "monitoring_station" - }, - "name": "Monitoring Station" -} diff --git a/data/presets/presets/man_made/obelisk.json b/data/presets/presets/man_made/obelisk.json deleted file mode 100644 index 7531d472aa..0000000000 --- a/data/presets/presets/man_made/obelisk.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-monument", - "fields": [ - "name", - "inscription", - "height", - "material", - "colour" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "man_made": "obelisk" - }, - "name": "Obelisk" -} diff --git a/data/presets/presets/man_made/observatory.json b/data/presets/presets/man_made/observatory.json deleted file mode 100644 index 6f8e323af2..0000000000 --- a/data/presets/presets/man_made/observatory.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-telescope", - "fields": [ - "name", - "operator", - "address", - "access_simple", - "building_area" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "astronomical", - "meteorological" - ], - "tags": { - "man_made": "observatory" - }, - "name": "Observatory" -} diff --git a/data/presets/presets/man_made/petroleum_well.json b/data/presets/presets/man_made/petroleum_well.json deleted file mode 100644 index 4e3545da83..0000000000 --- a/data/presets/presets/man_made/petroleum_well.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-oil_well", - "fields": [ - "name", - "ref", - "operator", - "substance" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point" - ], - "terms": [ - "drilling rig", - "oil derrick", - "oil drill", - "oil horse", - "oil rig", - "oil pump", - "petroleum well", - "pumpjack" - ], - "tags": { - "man_made": "petroleum_well" - }, - "name": "Oil Well" -} diff --git a/data/presets/presets/man_made/pier.json b/data/presets/presets/man_made/pier.json deleted file mode 100644 index 1686f0f600..0000000000 --- a/data/presets/presets/man_made/pier.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "temaki-pier_fixed", - "fields": [ - "name", - "surface", - "floating", - "width", - "access", - "lit" - ], - "moreFields": [ - "{highway/footway}", - "access", - "fishing", - "gnis/feature_id", - "incline" - ], - "geometry": [ - "line", - "area" - ], - "terms": [ - "berth", - "dock", - "jetty", - "landing", - "promenade", - "wharf" - ], - "tags": { - "man_made": "pier" - }, - "name": "Pier" -} diff --git a/data/presets/presets/man_made/pier/floating.json b/data/presets/presets/man_made/pier/floating.json deleted file mode 100644 index 33d6f08755..0000000000 --- a/data/presets/presets/man_made/pier/floating.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-pier_floating", - "geometry": [ - "line", - "area" - ], - "terms": [ - "berth", - "dock", - "jetty", - "landing", - "promenade", - "wharf" - ], - "tags": { - "man_made": "pier", - "floating": "yes" - }, - "name": "Floating Pier" -} diff --git a/data/presets/presets/man_made/pipeline.json b/data/presets/presets/man_made/pipeline.json deleted file mode 100644 index 153a57b2a5..0000000000 --- a/data/presets/presets/man_made/pipeline.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "iD-pipeline-line", - "fields": [ - "operator", - "location", - "substance", - "layer", - "diameter" - ], - "geometry": [ - "line" - ], - "terms": [ - "oil", - "natural gas", - "water", - "sewer", - "sewage" - ], - "tags": { - "man_made": "pipeline" - }, - "name": "Pipeline" -} diff --git a/data/presets/presets/man_made/pipeline/underground.json b/data/presets/presets/man_made/pipeline/underground.json deleted file mode 100644 index 8b60c68b61..0000000000 --- a/data/presets/presets/man_made/pipeline/underground.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "iD-pipeline-line", - "geometry": [ - "line" - ], - "terms": [ - "oil", - "natural gas", - "water", - "sewer", - "sewage" - ], - "tags": { - "man_made": "pipeline", - "location": "underground" - }, - "addTags": { - "man_made": "pipeline", - "location": "underground", - "layer": "-1" - }, - "name": "Underground Pipeline" -} diff --git a/data/presets/presets/man_made/pipeline/valve.json b/data/presets/presets/man_made/pipeline/valve.json deleted file mode 100644 index 742dc05291..0000000000 --- a/data/presets/presets/man_made/pipeline/valve.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-wheel", - "geometry": [ - "vertex" - ], - "fields": [ - "ref", - "operator", - "valve", - "location", - "diameter" - ], - "moreFields": [ - "colour", - "manufacturer", - "material" - ], - "terms": [ - "oil", - "natural gas", - "water", - "sewer", - "sewage" - ], - "tags": { - "pipeline": "valve" - }, - "name": "Pipeline Valve" -} diff --git a/data/presets/presets/man_made/pumping_station.json b/data/presets/presets/man_made/pumping_station.json deleted file mode 100644 index 0b77ff9cec..0000000000 --- a/data/presets/presets/man_made/pumping_station.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-powered_pump", - "geometry": [ - "point", - "area" - ], - "moreFields": [ - "gnis/feature_id" - ], - "tags": { - "man_made": "pumping_station" - }, - "name": "Pumping Station" -} diff --git a/data/presets/presets/man_made/reservoir_covered.json b/data/presets/presets/man_made/reservoir_covered.json deleted file mode 100644 index 3335d9f076..0000000000 --- a/data/presets/presets/man_made/reservoir_covered.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "operator", - "capacity_volume", - "access_simple", - "location", - "layer" - ], - "moreFields": [ - "ref" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "man_made": "reservoir_covered" - }, - "terms": [ - "underground reservoir", - "water tank" - ], - "name": "Covered Reservoir" -} diff --git a/data/presets/presets/man_made/silo.json b/data/presets/presets/man_made/silo.json deleted file mode 100644 index 8a319a994b..0000000000 --- a/data/presets/presets/man_made/silo.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-silo", - "fields": [ - "crop", - "building_area" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "grain", - "corn", - "wheat" - ], - "tags": { - "man_made": "silo" - }, - "name": "Silo" -} diff --git a/data/presets/presets/man_made/storage_tank.json b/data/presets/presets/man_made/storage_tank.json deleted file mode 100644 index 2458e64121..0000000000 --- a/data/presets/presets/man_made/storage_tank.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-storage_tank", - "fields": [ - "content", - "operator", - "material", - "building_area", - "height", - "capacity_volume" - ], - "moreFields": [ - "layer", - "location", - "manufacturer" - ], - "geometry": [ - "area", - "point" - ], - "terms": [ - "water", - "oil", - "gas", - "petrol" - ], - "tags": { - "man_made": "storage_tank" - }, - "name": "Storage Tank" -} diff --git a/data/presets/presets/man_made/storage_tank/water.json b/data/presets/presets/man_made/storage_tank/water.json deleted file mode 100644 index 3ce6068c27..0000000000 --- a/data/presets/presets/man_made/storage_tank/water.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-storage_tank", - "geometry": [ - "point", - "area" - ], - "terms": [ - "cistern", - "water tower" - ], - "tags": { - "man_made": "storage_tank", - "content": "water" - }, - "name": "Water Tank" -} diff --git a/data/presets/presets/man_made/street_cabinet.json b/data/presets/presets/man_made/street_cabinet.json deleted file mode 100644 index 98a7352637..0000000000 --- a/data/presets/presets/man_made/street_cabinet.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "fas-door-closed", - "geometry": [ - "point", - "area" - ], - "fields": [ - "ref", - "operator", - "street_cabinet", - "utility_semi", - "height", - "colour" - ], - "terms": [ - "cable tv", - "monitoring box", - "technical box", - "telecommunications", - "traffic signal controls" - ], - "tags": { - "man_made": "street_cabinet" - }, - "name": "Street Cabinet" -} diff --git a/data/presets/presets/man_made/surveillance.json b/data/presets/presets/man_made/surveillance.json deleted file mode 100644 index 832a61017c..0000000000 --- a/data/presets/presets/man_made/surveillance.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-security_camera", - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "surveillance", - "surveillance/type", - "surveillance/zone", - "direction" - ], - "terms": [ - "anpr", - "alpr", - "camera", - "car plate recognition", - "cctv", - "guard", - "license plate recognition", - "monitoring", - "number plate recognition", - "security", - "video", - "webcam" - ], - "tags": { - "man_made": "surveillance" - }, - "name": "Surveillance" -} diff --git a/data/presets/presets/man_made/surveillance/camera.json b/data/presets/presets/man_made/surveillance/camera.json deleted file mode 100644 index 4699141434..0000000000 --- a/data/presets/presets/man_made/surveillance/camera.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "temaki-security_camera", - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "surveillance", - "surveillance/type", - "camera/type", - "camera/mount", - "camera/direction", - "surveillance/zone", - "contact/webcam" - ], - "moreFields": [ - "manufacturer" - ], - "terms": [ - "anpr", - "alpr", - "camera", - "car plate recognition", - "cctv", - "guard", - "license plate recognition", - "monitoring", - "number plate recognition", - "security", - "video", - "webcam" - ], - "tags": { - "man_made": "surveillance", - "surveillance:type": "camera" - }, - "name": "Surveillance Camera" -} diff --git a/data/presets/presets/man_made/survey_point.json b/data/presets/presets/man_made/survey_point.json deleted file mode 100644 index eba59bc354..0000000000 --- a/data/presets/presets/man_made/survey_point.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-benchmark_disk", - "fields": [ - "ref", - "ele_node", - "inscription" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "trig point", - "triangulation pillar", - "trigonometrical station" - ], - "tags": { - "man_made": "survey_point" - }, - "name": "Survey Point" -} diff --git a/data/presets/presets/man_made/torii.json b/data/presets/presets/man_made/torii.json deleted file mode 100644 index fdffce36e4..0000000000 --- a/data/presets/presets/man_made/torii.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-shinto", - "fields": [ - "height", - "material", - "colour", - "lit" - ], - "moreFields": [ - "name", - "operator", - "ref" - ], - "geometry": [ - "point", - "vertex", - "line" - ], - "terms": [ - "Japanese gate", - "Shinto shrine" - ], - "tags": { - "man_made": "torii" - }, - "name": "Torii" -} diff --git a/data/presets/presets/man_made/tower.json b/data/presets/presets/man_made/tower.json deleted file mode 100644 index 1b15b2ddbb..0000000000 --- a/data/presets/presets/man_made/tower.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-tower", - "fields": [ - "tower/type", - "tower/construction", - "height", - "building_area" - ], - "moreFields": [ - "architect", - "gnis/feature_id" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "tower" - }, - "name": "Tower" -} diff --git a/data/presets/presets/man_made/tower/bell_tower.json b/data/presets/presets/man_made/tower/bell_tower.json deleted file mode 100644 index 1a2a497556..0000000000 --- a/data/presets/presets/man_made/tower/bell_tower.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "fas-bell", - "moreFields": [ - "{man_made/tower}", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "belfry", - "bell gable", - "campanile", - "church tower", - "klockstapel" - ], - "tags": { - "man_made": "tower", - "tower:type": "bell_tower" - }, - "reference": { - "key": "tower:type", - "value": "bell_tower" - }, - "name": "Bell Tower" -} diff --git a/data/presets/presets/man_made/tower/communication.json b/data/presets/presets/man_made/tower/communication.json deleted file mode 100644 index f3e91dfd8d..0000000000 --- a/data/presets/presets/man_made/tower/communication.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "temaki-tower_communication", - "fields": [ - "{man_made/tower}", - "communication_multi", - "mimics" - ], - "moreFields": [ - "{man_made/tower}", - "mimics" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "antenna", - "broadcast tower", - "cell phone tower", - "cell tower", - "communication mast", - "communication tower", - "guyed tower", - "mobile phone tower", - "radio mast", - "radio tower", - "television tower", - "transmission mast", - "transmission tower", - "tv tower" - ], - "tags": { - "man_made": "tower", - "tower:type": "communication" - }, - "reference": { - "key": "tower:type", - "value": "communication" - }, - "name": "Communication Tower" -} diff --git a/data/presets/presets/man_made/tower/cooling.json b/data/presets/presets/man_made/tower/cooling.json deleted file mode 100644 index 43ba77109c..0000000000 --- a/data/presets/presets/man_made/tower/cooling.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-cooling_tower", - "fields": [ - "ref", - "operator", - "material", - "building_area", - "height" - ], - "moreFields": [ - "layer" - ], - "geometry": [ - "area" - ], - "terms": [ - "power plant" - ], - "tags": { - "man_made": "tower", - "tower:type": "cooling" - }, - "reference": { - "key": "tower:type", - "value": "cooling" - }, - "name": "Cooling Tower" -} diff --git a/data/presets/presets/man_made/tower/defensive.json b/data/presets/presets/man_made/tower/defensive.json deleted file mode 100644 index 9b3ffbaa57..0000000000 --- a/data/presets/presets/man_made/tower/defensive.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-castle", - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "tower", - "tower:type": "defensive" - }, - "reference": { - "key": "tower:type", - "value": "defensive" - }, - "terms": [ - "Defensive Tower", - "Castle Tower" - ], - "name": "Fortified Tower" -} diff --git a/data/presets/presets/man_made/tower/minaret.json b/data/presets/presets/man_made/tower/minaret.json deleted file mode 100644 index addff51fd3..0000000000 --- a/data/presets/presets/man_made/tower/minaret.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-domed_tower", - "geometry": [ - "point", - "area" - ], - "terms": [ - "Islam", - "mosque", - "Muezzin", - "Muslim" - ], - "tags": { - "man_made": "tower", - "tower:type": "minaret" - }, - "reference": { - "key": "tower:type", - "value": "minaret" - }, - "name": "Minaret" -} diff --git a/data/presets/presets/man_made/tower/observation.json b/data/presets/presets/man_made/tower/observation.json deleted file mode 100644 index e59982001f..0000000000 --- a/data/presets/presets/man_made/tower/observation.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-tower", - "moreFields": [ - "{man_made/tower}", - "opening_hours", - "opening_hours/covid19" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "lookout tower", - "fire tower" - ], - "tags": { - "man_made": "tower", - "tower:type": "observation" - }, - "reference": { - "key": "tower:type", - "value": "observation" - }, - "name": "Observation Tower" -} diff --git a/data/presets/presets/man_made/tunnel.json b/data/presets/presets/man_made/tunnel.json deleted file mode 100644 index 33cdb7f51a..0000000000 --- a/data/presets/presets/man_made/tunnel.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-tunnel", - "fields": [ - "name", - "tunnel_combo", - "layer", - "width", - "length", - "height" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "area" - ], - "tags": { - "man_made": "tunnel" - }, - "addTags": { - "man_made": "tunnel", - "layer": "-1" - }, - "removeTags": { - "man_made": "tunnel", - "layer": "*" - }, - "reference": { - "key": "man_made", - "value": "tunnel" - }, - "terms": [ - "bore", - "dig", - "shaft", - "underground passage", - "underpass" - ], - "name": "Tunnel Area" -} diff --git a/data/presets/presets/man_made/utility_pole.json b/data/presets/presets/man_made/utility_pole.json deleted file mode 100644 index 72f2650f80..0000000000 --- a/data/presets/presets/man_made/utility_pole.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-utility_pole", - "fields": [ - "ref", - "operator", - "utility_semi", - "height", - "material" - ], - "moreFields": [ - "colour", - "manufacturer" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "man_made": "utility_pole" - }, - "name": "Utility Pole" -} diff --git a/data/presets/presets/man_made/wastewater_plant.json b/data/presets/presets/man_made/wastewater_plant.json deleted file mode 100644 index 28df393c50..0000000000 --- a/data/presets/presets/man_made/wastewater_plant.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-waste", - "fields": [ - "name", - "operator", - "address" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "sewage*", - "water treatment plant", - "reclamation plant" - ], - "tags": { - "man_made": "wastewater_plant" - }, - "name": "Wastewater Plant" -} diff --git a/data/presets/presets/man_made/water_tap.json b/data/presets/presets/man_made/water_tap.json deleted file mode 100644 index 8298b1904f..0000000000 --- a/data/presets/presets/man_made/water_tap.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-water_tap", - "fields": [ - "ref", - "operator", - "drinking_water", - "access_simple" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "man_made": "water_tap" - }, - "terms": [ - "drinking water", - "water faucet", - "water point", - "water source", - "water spigot" - ], - "name": "Water Tap" -} diff --git a/data/presets/presets/man_made/water_tower.json b/data/presets/presets/man_made/water_tower.json deleted file mode 100644 index e98abfdb2c..0000000000 --- a/data/presets/presets/man_made/water_tower.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-water_tower", - "fields": [ - "operator", - "height" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "man_made": "water_tower" - }, - "name": "Water Tower" -} diff --git a/data/presets/presets/man_made/water_well.json b/data/presets/presets/man_made/water_well.json deleted file mode 100644 index 1e11355be4..0000000000 --- a/data/presets/presets/man_made/water_well.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-well_pump_manual", - "fields": [ - "ref", - "operator", - "drinking_water", - "pump", - "access_simple" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "water_well" - }, - "terms": [ - "aquifer", - "drinking water", - "water pump", - "water point", - "water source" - ], - "name": "Water Well" -} diff --git a/data/presets/presets/man_made/water_works.json b/data/presets/presets/man_made/water_works.json deleted file mode 100644 index ffcf937aca..0000000000 --- a/data/presets/presets/man_made/water_works.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-powered_pump", - "fields": [ - "name", - "operator", - "address" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "man_made": "water_works" - }, - "name": "Water Works" -} diff --git a/data/presets/presets/man_made/watermill.json b/data/presets/presets/man_made/watermill.json deleted file mode 100644 index 8ae9246fa2..0000000000 --- a/data/presets/presets/man_made/watermill.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-watermill", - "fields": [ - "building_area" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "water", - "wheel", - "mill" - ], - "tags": { - "man_made": "watermill" - }, - "name": "Watermill" -} diff --git a/data/presets/presets/man_made/windmill.json b/data/presets/presets/man_made/windmill.json deleted file mode 100644 index fa5efca5df..0000000000 --- a/data/presets/presets/man_made/windmill.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-windmill", - "fields": [ - "building_area" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "wind", - "wheel", - "mill" - ], - "tags": { - "man_made": "windmill" - }, - "name": "Windmill" -} diff --git a/data/presets/presets/man_made/windpump.json b/data/presets/presets/man_made/windpump.json deleted file mode 100644 index dd32b4acc2..0000000000 --- a/data/presets/presets/man_made/windpump.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-windpump", - "fields": [ - "ref", - "operator", - "height", - "material", - "manufacturer", - "lit" - ], - "geometry": [ - "point" - ], - "terms": [ - "aerorotor", - "water pump", - "windmill", - "wind pump" - ], - "tags": { - "man_made": "windpump" - }, - "name": "Windpump" -} diff --git a/data/presets/presets/man_made/works.json b/data/presets/presets/man_made/works.json deleted file mode 100644 index aaf98a6c10..0000000000 --- a/data/presets/presets/man_made/works.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "maki-industry", - "fields": [ - "name", - "operator", - "address", - "building_area", - "product" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "assembly", - "build", - "brewery", - "car", - "plant", - "plastic", - "processing", - "manufacture", - "refinery" - ], - "tags": { - "man_made": "works" - }, - "name": "Factory" -} diff --git a/data/presets/presets/marker.json b/data/presets/presets/marker.json deleted file mode 100644 index 2f96d78b1b..0000000000 --- a/data/presets/presets/marker.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "temaki-silo", - "fields": [ - "ref", - "operator", - "marker", - "utility", - "inscription", - "colour" - ], - "moreFields": [ - "height", - "location", - "manufacturer", - "material" - ], - "geometry": [ - "point" - ], - "terms": [ - "identifier", - "marking", - "plate", - "pole", - "post", - "sign" - ], - "tags": { - "marker": "*" - }, - "name": "Marker" -} diff --git a/data/presets/presets/marker/utility.json b/data/presets/presets/marker/utility.json deleted file mode 100644 index 04c44f699d..0000000000 --- a/data/presets/presets/marker/utility.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-silo", - "fields": [ - "ref", - "operator", - "marker", - "utility", - "{marker}" - ], - "geometry": [ - "point" - ], - "terms": [ - "gas line marker", - "identifier", - "marking", - "oil marker", - "pipline marker", - "plate", - "pole", - "post", - "sign" - ], - "tags": { - "marker": "*", - "utility": "*" - }, - "name": "Utility Marker" -} diff --git a/data/presets/presets/marker/utility/power.json b/data/presets/presets/marker/utility/power.json deleted file mode 100644 index 2100ca8755..0000000000 --- a/data/presets/presets/marker/utility/power.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-silo", - "fields": [ - "ref", - "operator", - "marker", - "{marker}" - ], - "geometry": [ - "point" - ], - "terms": [ - "electric line", - "identifier", - "marking", - "plate", - "pole", - "post", - "power cable", - "power line", - "sign" - ], - "tags": { - "marker": "*", - "utility": "power" - }, - "name": "Power Marker" -} diff --git a/data/presets/presets/military/bunker.json b/data/presets/presets/military/bunker.json deleted file mode 100644 index c3179d547c..0000000000 --- a/data/presets/presets/military/bunker.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-bunker", - "fields": [ - "name", - "bunker_type", - "building_area" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "military": "bunker" - }, - "addTags": { - "building": "bunker", - "military": "bunker" - }, - "terms": [ - "air force", - "army", - "base", - "fight", - "force", - "guard", - "marine", - "navy", - "troop", - "war" - ], - "name": "Military Bunker" -} diff --git a/data/presets/presets/military/checkpoint.json b/data/presets/presets/military/checkpoint.json deleted file mode 100644 index 0678562f5f..0000000000 --- a/data/presets/presets/military/checkpoint.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-military_checkpoint", - "fields": [ - "name" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "military": "checkpoint" - }, - "terms": [ - "air force", - "army", - "base", - "force", - "guard", - "marine", - "navy", - "troop", - "war" - ], - "name": "Military Checkpoint" -} diff --git a/data/presets/presets/military/nuclear_explosion_site.json b/data/presets/presets/military/nuclear_explosion_site.json deleted file mode 100644 index 38d357c745..0000000000 --- a/data/presets/presets/military/nuclear_explosion_site.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-danger", - "fields": [ - "name" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "military": "nuclear_explosion_site" - }, - "terms": [ - "atom", - "blast", - "bomb", - "detonat*", - "nuke", - "site", - "test" - ], - "name": "Nuclear Explosion Site" -} diff --git a/data/presets/presets/military/office.json b/data/presets/presets/military/office.json deleted file mode 100644 index 1221bc5411..0000000000 --- a/data/presets/presets/military/office.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-military", - "fields": [ - "name", - "building_area" - ], - "moreFields": [ - "gnis/feature_id", - "level" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "military": "office" - }, - "terms": [ - "air force", - "army", - "base", - "enlist", - "fight", - "force", - "guard", - "marine", - "navy", - "recruit", - "troop", - "war" - ], - "name": "Military Office" -} diff --git a/data/presets/presets/military/trench.json b/data/presets/presets/military/trench.json deleted file mode 100644 index 2a493d8f7f..0000000000 --- a/data/presets/presets/military/trench.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-trench", - "fields": [ - "name", - "trench" - ], - "geometry": [ - "point", - "line" - ], - "tags": { - "military": "trench" - }, - "terms": [ - "dugout", - "firestep", - "fox hole", - "infantry trench", - "war trench" - ], - "name": "Military Trench" -} diff --git a/data/presets/presets/natural/bare_rock.json b/data/presets/presets/natural/bare_rock.json deleted file mode 100644 index df275e667e..0000000000 --- a/data/presets/presets/natural/bare_rock.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "geometry": [ - "area" - ], - "tags": { - "natural": "bare_rock" - }, - "terms": [ - "rock" - ], - "name": "Bare Rock" -} diff --git a/data/presets/presets/natural/bay.json b/data/presets/presets/natural/bay.json deleted file mode 100644 index 8f04cdb59a..0000000000 --- a/data/presets/presets/natural/bay.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-beach", - "geometry": [ - "point", - "line", - "area" - ], - "fields": [ - "name" - ], - "tags": { - "natural": "bay" - }, - "terms": [], - "name": "Bay" -} diff --git a/data/presets/presets/natural/beach.json b/data/presets/presets/natural/beach.json deleted file mode 100644 index 0df61b34d8..0000000000 --- a/data/presets/presets/natural/beach.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-beach", - "fields": [ - "surface" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "natural": "beach" - }, - "terms": [ - "shore" - ], - "name": "Beach" -} diff --git a/data/presets/presets/natural/cape.json b/data/presets/presets/natural/cape.json deleted file mode 100644 index 2130ed5b38..0000000000 --- a/data/presets/presets/natural/cape.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-beach", - "fields": [ - "name", - "ele_node", - "description" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "natural": "cape" - }, - "terms": [ - "bay", - "coastline", - "erosion", - "headland", - "promontory" - ], - "name": "Cape" -} diff --git a/data/presets/presets/natural/cave_entrance.json b/data/presets/presets/natural/cave_entrance.json deleted file mode 100644 index 314cec9075..0000000000 --- a/data/presets/presets/natural/cave_entrance.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-triangle", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "name", - "ele_node", - "access_simple", - "direction", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "tags": { - "natural": "cave_entrance" - }, - "terms": [ - "cavern", - "hollow", - "grotto", - "shelter", - "cavity" - ], - "name": "Cave Entrance" -} diff --git a/data/presets/presets/natural/cliff.json b/data/presets/presets/natural/cliff.json deleted file mode 100644 index ff78035c8e..0000000000 --- a/data/presets/presets/natural/cliff.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-cliff_falling_rocks", - "fields": [ - "name", - "height" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "natural": "cliff" - }, - "terms": [ - "crag", - "escarpment", - "rock face", - "scarp" - ], - "name": "Cliff" -} diff --git a/data/presets/presets/natural/coastline.json b/data/presets/presets/natural/coastline.json deleted file mode 100644 index 9f725f7e0c..0000000000 --- a/data/presets/presets/natural/coastline.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "temaki-beach", - "geometry": [ - "line" - ], - "tags": { - "natural": "coastline" - }, - "terms": [ - "shore" - ], - "name": "Coastline" -} diff --git a/data/presets/presets/natural/fell.json b/data/presets/presets/natural/fell.json deleted file mode 100644 index 2e2cab96fd..0000000000 --- a/data/presets/presets/natural/fell.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "geometry": [ - "area" - ], - "tags": { - "natural": "fell" - }, - "terms": [], - "name": "Fell" -} diff --git a/data/presets/presets/natural/geyser.json b/data/presets/presets/natural/geyser.json deleted file mode 100644 index 98641a3bed..0000000000 --- a/data/presets/presets/natural/geyser.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "geyser/height", - "ele_node" - ], - "geometry": [ - "point" - ], - "tags": { - "natural": "geyser" - }, - "terms": [ - "erupting spring", - "geiser", - "gieser", - "guyser", - "hot water", - "hydrogeology", - "hydrothermal explosion", - "steam" - ], - "name": "Geyser" -} diff --git a/data/presets/presets/natural/glacier.json b/data/presets/presets/natural/glacier.json deleted file mode 100644 index 859a027cf1..0000000000 --- a/data/presets/presets/natural/glacier.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-snow", - "geometry": [ - "area" - ], - "tags": { - "natural": "glacier" - }, - "terms": [ - "ice", - "snow" - ], - "name": "Glacier" -} diff --git a/data/presets/presets/natural/grassland.json b/data/presets/presets/natural/grassland.json deleted file mode 100644 index 384f4a23f6..0000000000 --- a/data/presets/presets/natural/grassland.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-grass", - "geometry": [ - "area" - ], - "tags": { - "natural": "grassland" - }, - "terms": [ - "field", - "prairie", - "savanna" - ], - "name": "Grassland" -} diff --git a/data/presets/presets/natural/heath.json b/data/presets/presets/natural/heath.json deleted file mode 100644 index 723b1891b5..0000000000 --- a/data/presets/presets/natural/heath.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-shrub_low", - "geometry": [ - "area" - ], - "tags": { - "natural": "heath" - }, - "terms": [], - "name": "Heath" -} diff --git a/data/presets/presets/natural/hot_spring.json b/data/presets/presets/natural/hot_spring.json deleted file mode 100644 index c1baf2f425..0000000000 --- a/data/presets/presets/natural/hot_spring.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "intermittent" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point" - ], - "tags": { - "natural": "hot_spring" - }, - "terms": [ - "geothermal spring", - "thermal pool" - ], - "name": "Hot Spring" -} diff --git a/data/presets/presets/natural/mud.json b/data/presets/presets/natural/mud.json deleted file mode 100644 index b3fb8b7abb..0000000000 --- a/data/presets/presets/natural/mud.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "geometry": [ - "area" - ], - "tags": { - "natural": "mud" - }, - "terms": [ - "wetland" - ], - "name": "Mud" -} diff --git a/data/presets/presets/natural/peak.json b/data/presets/presets/natural/peak.json deleted file mode 100644 index 2fa6688d3b..0000000000 --- a/data/presets/presets/natural/peak.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-mountain", - "fields": [ - "name", - "ele_node" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "natural": "peak" - }, - "terms": [ - "acme", - "aiguille", - "alp", - "climax", - "crest", - "crown", - "hill", - "mount", - "mountain", - "pinnacle", - "summit", - "tip", - "top" - ], - "name": "Peak" -} diff --git a/data/presets/presets/natural/reef.json b/data/presets/presets/natural/reef.json deleted file mode 100644 index edaa396291..0000000000 --- a/data/presets/presets/natural/reef.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-beach", - "geometry": [ - "area", - "point" - ], - "tags": { - "natural": "reef" - }, - "terms": [ - "barrier", - "coral", - "ocean", - "sand", - "shoal" - ], - "name": "Reef" -} diff --git a/data/presets/presets/natural/ridge.json b/data/presets/presets/natural/ridge.json deleted file mode 100644 index d1b532f419..0000000000 --- a/data/presets/presets/natural/ridge.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "temaki-mountain_range", - "geometry": [ - "line" - ], - "tags": { - "natural": "ridge" - }, - "terms": [ - "crest" - ], - "name": "Ridge" -} diff --git a/data/presets/presets/natural/rock.json b/data/presets/presets/natural/rock.json deleted file mode 100644 index 38ea34d92d..0000000000 --- a/data/presets/presets/natural/rock.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-boulder2", - "fields": [ - "name" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "natural": "rock" - }, - "terms": [ - "boulder", - "stone", - "rock" - ], - "name": "Attached Rock / Boulder" -} diff --git a/data/presets/presets/natural/saddle.json b/data/presets/presets/natural/saddle.json deleted file mode 100644 index 573db6ef82..0000000000 --- a/data/presets/presets/natural/saddle.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-saddle", - "fields": [ - "ele_node" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "natural": "saddle" - }, - "terms": [ - "pass", - "mountain pass", - "top" - ], - "name": "Saddle" -} diff --git a/data/presets/presets/natural/sand.json b/data/presets/presets/natural/sand.json deleted file mode 100644 index eecaf9c638..0000000000 --- a/data/presets/presets/natural/sand.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "geometry": [ - "area" - ], - "tags": { - "natural": "sand" - }, - "terms": [ - "desert" - ], - "name": "Sand" -} diff --git a/data/presets/presets/natural/scree.json b/data/presets/presets/natural/scree.json deleted file mode 100644 index 0cf1789623..0000000000 --- a/data/presets/presets/natural/scree.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "geometry": [ - "area" - ], - "tags": { - "natural": "scree" - }, - "terms": [ - "loose rocks" - ], - "name": "Scree" -} diff --git a/data/presets/presets/natural/scrub.json b/data/presets/presets/natural/scrub.json deleted file mode 100644 index 4b4420b80f..0000000000 --- a/data/presets/presets/natural/scrub.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-shrub", - "geometry": [ - "area" - ], - "tags": { - "natural": "scrub" - }, - "terms": [ - "bush", - "shrubs" - ], - "name": "Scrub" -} diff --git a/data/presets/presets/natural/shingle.json b/data/presets/presets/natural/shingle.json deleted file mode 100644 index 9815560cd3..0000000000 --- a/data/presets/presets/natural/shingle.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "geometry": [ - "area" - ], - "tags": { - "natural": "shingle" - }, - "terms": [ - "beach", - "gravel", - "pebbles", - "riverbed", - "rounded rock fragments" - ], - "name": "Shingle" -} diff --git a/data/presets/presets/natural/shrub.json b/data/presets/presets/natural/shrub.json deleted file mode 100644 index 0482929573..0000000000 --- a/data/presets/presets/natural/shrub.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-shrub", - "fields": [ - "height" - ], - "moreFields": [ - "species/wikidata" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "natural": "shrub" - }, - "terms": [ - "bush", - "scrub" - ], - "name": "Shrub" -} diff --git a/data/presets/presets/natural/spring.json b/data/presets/presets/natural/spring.json deleted file mode 100644 index 22d9478a3f..0000000000 --- a/data/presets/presets/natural/spring.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "drinking_water", - "intermittent" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "natural": "spring" - }, - "terms": [ - "aquifer", - "hydro", - "seep", - "water source" - ], - "name": "Spring" -} diff --git a/data/presets/presets/natural/stone.json b/data/presets/presets/natural/stone.json deleted file mode 100644 index 423ab638b9..0000000000 --- a/data/presets/presets/natural/stone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-boulder1", - "fields": [ - "name" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "natural": "stone" - }, - "terms": [ - "boulder", - "stone", - "rock" - ], - "name": "Unattached Stone / Boulder" -} diff --git a/data/presets/presets/natural/tree.json b/data/presets/presets/natural/tree.json deleted file mode 100644 index b857b9e660..0000000000 --- a/data/presets/presets/natural/tree.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "maki-park", - "fields": [ - "leaf_type_singular", - "leaf_cycle_singular", - "denotation", - "height", - "diameter" - ], - "moreFields": [ - "circumference", - "species/wikidata" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "natural": "tree" - }, - "terms": [], - "name": "Tree" -} diff --git a/data/presets/presets/natural/tree_row.json b/data/presets/presets/natural/tree_row.json deleted file mode 100644 index 716229d57f..0000000000 --- a/data/presets/presets/natural/tree_row.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-tree_row", - "fields": [ - "leaf_type", - "leaf_cycle", - "denotation" - ], - "geometry": [ - "line" - ], - "tags": { - "natural": "tree_row" - }, - "terms": [], - "name": "Tree Row" -} diff --git a/data/presets/presets/natural/valley.json b/data/presets/presets/natural/valley.json deleted file mode 100644 index e427b4a090..0000000000 --- a/data/presets/presets/natural/valley.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-valley", - "fields": [ - "name", - "ele_node", - "description" - ], - "geometry": [ - "vertex", - "point", - "line" - ], - "tags": { - "natural": "valley" - }, - "terms": [ - "canyon", - "dale", - "dell", - "dene", - "depression", - "glen", - "gorge", - "gully", - "gulley", - "gultch", - "hollow", - "ravine", - "rift", - "vale" - ], - "name": "Valley" -} diff --git a/data/presets/presets/natural/volcano.json b/data/presets/presets/natural/volcano.json deleted file mode 100644 index ca8aa50746..0000000000 --- a/data/presets/presets/natural/volcano.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-volcano", - "fields": [ - "name", - "ele_node", - "volcano/status", - "volcano/type" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "natural": "volcano" - }, - "terms": [ - "mountain", - "crater" - ], - "name": "Volcano" -} diff --git a/data/presets/presets/natural/water.json b/data/presets/presets/natural/water.json deleted file mode 100644 index eaf72995a0..0000000000 --- a/data/presets/presets/natural/water.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "water", - "intermittent" - ], - "moreFields": [ - "fishing", - "gnis/feature_id", - "salt", - "tidal" - ], - "geometry": [ - "area" - ], - "tags": { - "natural": "water" - }, - "name": "Water" -} diff --git a/data/presets/presets/natural/water/basin.json b/data/presets/presets/natural/water/basin.json deleted file mode 100644 index f7775db649..0000000000 --- a/data/presets/presets/natural/water/basin.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "name", - "basin", - "intermittent_yes" - ], - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "basin" - }, - "reference": { - "key": "water", - "value": "basin" - }, - "terms": [ - "detention", - "drain", - "overflow", - "rain", - "retention" - ], - "name": "Basin" -} diff --git a/data/presets/presets/natural/water/canal.json b/data/presets/presets/natural/water/canal.json deleted file mode 100644 index 749c3d45a9..0000000000 --- a/data/presets/presets/natural/water/canal.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "iD-waterway-canal", - "fields": [ - "{natural/water}", - "salt" - ], - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "canal" - }, - "reference": { - "key": "water", - "value": "canal" - }, - "name": "Canal Area" -} diff --git a/data/presets/presets/natural/water/lake.json b/data/presets/presets/natural/water/lake.json deleted file mode 100644 index b5db73305f..0000000000 --- a/data/presets/presets/natural/water/lake.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "{natural/water}", - "salt", - "tidal" - ], - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "lake" - }, - "reference": { - "key": "water", - "value": "lake" - }, - "terms": [ - "lakelet", - "loch", - "mere" - ], - "name": "Lake" -} diff --git a/data/presets/presets/natural/water/moat.json b/data/presets/presets/natural/water/moat.json deleted file mode 100644 index 306c640c6b..0000000000 --- a/data/presets/presets/natural/water/moat.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "{natural/water}", - "salt" - ], - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "moat" - }, - "name": "Moat" -} diff --git a/data/presets/presets/natural/water/pond.json b/data/presets/presets/natural/water/pond.json deleted file mode 100644 index 69f9dcbb94..0000000000 --- a/data/presets/presets/natural/water/pond.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-water", - "fields": [ - "{natural/water}", - "salt" - ], - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "pond" - }, - "reference": { - "key": "water", - "value": "pond" - }, - "terms": [ - "lakelet", - "millpond", - "tarn", - "pool", - "mere" - ], - "name": "Pond" -} diff --git a/data/presets/presets/natural/water/reservoir.json b/data/presets/presets/natural/water/reservoir.json deleted file mode 100644 index 72eca92627..0000000000 --- a/data/presets/presets/natural/water/reservoir.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-water", - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "reservoir" - }, - "reference": { - "key": "water", - "value": "reservoir" - }, - "name": "Reservoir" -} diff --git a/data/presets/presets/natural/water/river.json b/data/presets/presets/natural/water/river.json deleted file mode 100644 index 10f242919c..0000000000 --- a/data/presets/presets/natural/water/river.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "iD-waterway-river", - "fields": [ - "{natural/water}", - "tidal" - ], - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "river" - }, - "reference": { - "key": "water", - "value": "river" - }, - "terms": [ - "beck", - "branch", - "brook", - "course", - "creek", - "estuary", - "rill", - "riverbank", - "rivulet", - "run", - "runnel", - "stream", - "tributary", - "watercourse" - ], - "name": "River Area" -} diff --git a/data/presets/presets/natural/water/stream.json b/data/presets/presets/natural/water/stream.json deleted file mode 100644 index 9a9e8b0e80..0000000000 --- a/data/presets/presets/natural/water/stream.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "icon": "iD-waterway-stream", - "fields": [ - "{natural/water}" - ], - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "stream" - }, - "reference": { - "key": "water", - "value": "stream" - }, - "terms": [ - "beck", - "branch", - "brook", - "burn", - "course", - "creek", - "current", - "drift", - "flood", - "flow", - "freshet", - "race", - "rill", - "rindle", - "rivulet", - "run", - "runnel", - "rush", - "spate", - "spritz", - "surge", - "tide", - "torrent", - "tributary", - "watercourse" - ], - "name": "Stream Area" -} diff --git a/data/presets/presets/natural/water/wastewater.json b/data/presets/presets/natural/water/wastewater.json deleted file mode 100644 index be3b647dc1..0000000000 --- a/data/presets/presets/natural/water/wastewater.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-waste", - "geometry": [ - "area" - ], - "tags": { - "natural": "water", - "water": "wastewater" - }, - "reference": { - "key": "water", - "value": "wastewater" - }, - "terms": [ - "excrement", - "shit", - "sewage", - "wastewater", - "Settling Basin", - "Clarifier Basin" - ], - "name": "Wastewater Basin" -} diff --git a/data/presets/presets/natural/wetland.json b/data/presets/presets/natural/wetland.json deleted file mode 100644 index 2de1fadc08..0000000000 --- a/data/presets/presets/natural/wetland.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-wetland", - "fields": [ - "wetland", - "salt", - "tidal" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "natural": "wetland" - }, - "terms": [ - "bog", - "fen", - "marsh", - "mire", - "moor", - "muskeg", - "peatland", - "quagmire", - "reedbed", - "saltmarsh", - "swamp", - "tidalflat", - "wet meadow" - ], - "name": "Wetland" -} diff --git a/data/presets/presets/natural/wood.json b/data/presets/presets/natural/wood.json deleted file mode 100644 index 6ad9e4d06f..0000000000 --- a/data/presets/presets/natural/wood.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-park-alt1", - "fields": [ - "name", - "leaf_type", - "leaf_cycle" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "natural": "wood" - }, - "terms": [ - "boreal", - "forest", - "forrest", - "taiga", - "tree", - "trees", - "woodlands", - "woods" - ], - "name": "Natural Wood" -} diff --git a/data/presets/presets/network/type/node_network.json b/data/presets/presets/network/type/node_network.json deleted file mode 100644 index 5006d063e7..0000000000 --- a/data/presets/presets/network/type/node_network.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "fields": [ - "name", - "rwn_ref", - "expected_rwn_route_relations", - "rcn_ref", - "expected_rcn_route_relations" - ], - "geometry": [ - "vertex" - ], - "tags": { - "network:type": "node_network" - }, - "terms": [ - "node network", - "rcn", - "rwn" - ], - "countryCodes": [ - "be", "de", "lu", "nl" - ], - "matchScore": 0.2, - "name": "Recreational Network Node" -} diff --git a/data/presets/presets/noexit/yes.json b/data/presets/presets/noexit/yes.json deleted file mode 100644 index c236121518..0000000000 --- a/data/presets/presets/noexit/yes.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-barrier", - "geometry": [ - "vertex" - ], - "terms": [ - "no exit", - "road end", - "dead end" - ], - "tags": { - "noexit": "yes" - }, - "reference": { - "key": "noexit", - "value": "*" - }, - "name": "No Exit" -} diff --git a/data/presets/presets/office.json b/data/presets/presets/office.json deleted file mode 100644 index 21786a8ffc..0000000000 --- a/data/presets/presets/office.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "maki-suitcase", - "fields": [ - "name", - "office", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "phone", - "website" - ], - "moreFields": [ - "air_conditioning", - "baby_feeding", - "building/levels_building", - "ele", - "email", - "fax", - "gnis/feature_id", - "height_building", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "not/name", - "operator", - "ref/vatin", - "smoking", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "office": "*" - }, - "terms": [], - "name": "Office" -} diff --git a/data/presets/presets/office/_administrative.json b/data/presets/presets/office/_administrative.json deleted file mode 100644 index 79ef79c158..0000000000 --- a/data/presets/presets/office/_administrative.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "administrative" - }, - "searchable": false, - "name": "Administrative Office" -} diff --git a/data/presets/presets/office/_physician.json b/data/presets/presets/office/_physician.json deleted file mode 100644 index 31b0263190..0000000000 --- a/data/presets/presets/office/_physician.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "physician" - }, - "searchable": false, - "name": "Physician" -} diff --git a/data/presets/presets/office/_travel_agent.json b/data/presets/presets/office/_travel_agent.json deleted file mode 100644 index 7747f150cd..0000000000 --- a/data/presets/presets/office/_travel_agent.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "travel_agent" - }, - "reference": { - "key": "shop", - "value": "travel_agency" - }, - "name": "Travel Agency", - "searchable": false -} diff --git a/data/presets/presets/office/accountant.json b/data/presets/presets/office/accountant.json deleted file mode 100644 index 388ccae62f..0000000000 --- a/data/presets/presets/office/accountant.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "temaki-accounting", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "accountant" - }, - "terms": [], - "name": "Accountant Office" -} diff --git a/data/presets/presets/office/adoption_agency.json b/data/presets/presets/office/adoption_agency.json deleted file mode 100644 index de2dc96e89..0000000000 --- a/data/presets/presets/office/adoption_agency.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "adoption_agency" - }, - "terms": [], - "name": "Adoption Agency" -} diff --git a/data/presets/presets/office/advertising_agency.json b/data/presets/presets/office/advertising_agency.json deleted file mode 100644 index 5534933f82..0000000000 --- a/data/presets/presets/office/advertising_agency.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "advertising_agency" - }, - "terms": [ - "ad", - "ad agency", - "advert agency", - "advertising", - "marketing" - ], - "name": "Advertising Agency" -} diff --git a/data/presets/presets/office/architect.json b/data/presets/presets/office/architect.json deleted file mode 100644 index 760a3f1ca8..0000000000 --- a/data/presets/presets/office/architect.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "fas-drafting-compass", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "architect" - }, - "terms": [], - "name": "Architect Office" -} diff --git a/data/presets/presets/office/association.json b/data/presets/presets/office/association.json deleted file mode 100644 index 594f7358f6..0000000000 --- a/data/presets/presets/office/association.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "association" - }, - "terms": [ - "association", - "non-profit", - "nonprofit", - "organization", - "society" - ], - "name": "Nonprofit Organization Office" -} diff --git a/data/presets/presets/office/bail_bond_agent.json b/data/presets/presets/office/bail_bond_agent.json deleted file mode 100644 index 28aa1819ea..0000000000 --- a/data/presets/presets/office/bail_bond_agent.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "countryCodes": [ - "us", "ph" - ], - "icon": "maki-bank", - "moreFields": [ - "{office}", - "currency_multi", - "payment_multi" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "bail_bond_agent" - }, - "terms": [ - "bail bond dealer", - "bail bond man", - "bail bondsman", - "bail bondsperson" - ], - "name": "Bail Bond Agent" -} diff --git a/data/presets/presets/office/charity.json b/data/presets/presets/office/charity.json deleted file mode 100644 index 7723bc9725..0000000000 --- a/data/presets/presets/office/charity.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "charity" - }, - "terms": [ - "charitable organization" - ], - "name": "Charity Office" -} diff --git a/data/presets/presets/office/company.json b/data/presets/presets/office/company.json deleted file mode 100644 index 766fcb09de..0000000000 --- a/data/presets/presets/office/company.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "company" - }, - "terms": [], - "name": "Corporate Office" -} diff --git a/data/presets/presets/office/consulting.json b/data/presets/presets/office/consulting.json deleted file mode 100644 index 4b33090f78..0000000000 --- a/data/presets/presets/office/consulting.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-suitcase", - "fields": [ - "name", - "consulting", - "{office}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "consulting" - }, - "terms": [ - "consulting firm office" - ], - "name": "Consultancy Office" -} diff --git a/data/presets/presets/office/coworking.json b/data/presets/presets/office/coworking.json deleted file mode 100644 index dc0edd649b..0000000000 --- a/data/presets/presets/office/coworking.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "maki-suitcase", - "fields": [ - "{office}", - "internet_access" - ], - "moreFields": [ - "internet_access/fee", - "internet_access/ssid" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "coworking", - "office" - ], - "tags": { - "office": "coworking" - }, - "reference": { - "key": "amenity", - "value": "coworking_space" - }, - "name": "Coworking Space" -} diff --git a/data/presets/presets/office/diplomatic.json b/data/presets/presets/office/diplomatic.json deleted file mode 100644 index d755e7b32d..0000000000 --- a/data/presets/presets/office/diplomatic.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-embassy", - "fields": [ - "name", - "diplomatic", - "country", - "target", - "diplomatic/services", - "{office}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "diplomatic" - }, - "terms": [], - "name": "Diplomatic Office" -} diff --git a/data/presets/presets/office/diplomatic/consulate.json b/data/presets/presets/office/diplomatic/consulate.json deleted file mode 100644 index 4f885c29b9..0000000000 --- a/data/presets/presets/office/diplomatic/consulate.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-embassy", - "fields": [ - "name", - "consulate", - "{office/diplomatic}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "diplomatic", - "diplomatic": "consulate" - }, - "reference": { - "key": "diplomatic", - "value": "consulate" - }, - "terms": [], - "name": "Consulate" -} diff --git a/data/presets/presets/office/diplomatic/embassy.json b/data/presets/presets/office/diplomatic/embassy.json deleted file mode 100644 index 207d52b346..0000000000 --- a/data/presets/presets/office/diplomatic/embassy.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-embassy", - "fields": [ - "name", - "embassy", - "{office/diplomatic}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "diplomatic", - "diplomatic": "embassy" - }, - "reference": { - "key": "diplomatic", - "value": "embassy" - }, - "terms": [], - "name": "Embassy" -} diff --git a/data/presets/presets/office/diplomatic/liaison.json b/data/presets/presets/office/diplomatic/liaison.json deleted file mode 100644 index e5c7c0e161..0000000000 --- a/data/presets/presets/office/diplomatic/liaison.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-embassy", - "fields": [ - "name", - "liaison", - "{office/diplomatic}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "diplomatic", - "diplomatic": "liaison" - }, - "reference": { - "key": "diplomatic", - "value": "liaison" - }, - "terms": [], - "name": "Liaison Office" -} diff --git a/data/presets/presets/office/educational_institution.json b/data/presets/presets/office/educational_institution.json deleted file mode 100644 index a80350d575..0000000000 --- a/data/presets/presets/office/educational_institution.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "maki-school", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "educational_institution" - }, - "terms": [], - "name": "Educational Institution" -} diff --git a/data/presets/presets/office/employment_agency.json b/data/presets/presets/office/employment_agency.json deleted file mode 100644 index 07ac9a9f5b..0000000000 --- a/data/presets/presets/office/employment_agency.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "employment_agency" - }, - "terms": [ - "job" - ], - "name": "Employment Agency" -} diff --git a/data/presets/presets/office/energy_supplier.json b/data/presets/presets/office/energy_supplier.json deleted file mode 100644 index 3999e25d36..0000000000 --- a/data/presets/presets/office/energy_supplier.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-briefcase_bolt", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "energy_supplier" - }, - "terms": [ - "electricity", - "energy company", - "energy utility", - "gas utility" - ], - "name": "Energy Supplier Office" -} diff --git a/data/presets/presets/office/estate_agent.json b/data/presets/presets/office/estate_agent.json deleted file mode 100644 index 43f26f39a8..0000000000 --- a/data/presets/presets/office/estate_agent.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-real_estate_agency", - "moreFields": [ - "brand", - "{office}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "estate_agent" - }, - "terms": [ - "real estate" - ], - "name": "Real Estate Office" -} diff --git a/data/presets/presets/office/financial.json b/data/presets/presets/office/financial.json deleted file mode 100644 index fb25ce6845..0000000000 --- a/data/presets/presets/office/financial.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "financial" - }, - "terms": [], - "name": "Financial Office" -} diff --git a/data/presets/presets/office/financial_advisor.json b/data/presets/presets/office/financial_advisor.json deleted file mode 100644 index 463c11964a..0000000000 --- a/data/presets/presets/office/financial_advisor.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "financial_advisor" - }, - "terms": [ - "401k", - "inheritance", - "savings", - "stocks", - "retirement", - "wealth management" - ], - "name": "Financial Advisor" -} diff --git a/data/presets/presets/office/forestry.json b/data/presets/presets/office/forestry.json deleted file mode 100644 index 0c93c7a211..0000000000 --- a/data/presets/presets/office/forestry.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "forestry" - }, - "terms": [ - "forest", - "ranger" - ], - "name": "Forestry Office" -} diff --git a/data/presets/presets/office/foundation.json b/data/presets/presets/office/foundation.json deleted file mode 100644 index 9e53a53363..0000000000 --- a/data/presets/presets/office/foundation.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "foundation" - }, - "terms": [], - "name": "Foundation Office" -} diff --git a/data/presets/presets/office/government.json b/data/presets/presets/office/government.json deleted file mode 100644 index 2a138778f8..0000000000 --- a/data/presets/presets/office/government.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-town_hall", - "fields": [ - "name", - "government", - "{office}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "government" - }, - "terms": [], - "name": "Government Office" -} diff --git a/data/presets/presets/office/government/prosecutor.json b/data/presets/presets/office/government/prosecutor.json deleted file mode 100644 index 07775ad510..0000000000 --- a/data/presets/presets/office/government/prosecutor.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-suitcase", - "fields": [ - "{office}", - "operator" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "attorney general", - "district attorney", - "prosecution" - ], - "tags": { - "office": "government", - "government": "prosecutor" - }, - "reference": { - "key": "government", - "value": "prosecutor" - }, - "name": "Public Prosecutor's Office" -} diff --git a/data/presets/presets/office/government/register_office.json b/data/presets/presets/office/government/register_office.json deleted file mode 100644 index 45d50421d6..0000000000 --- a/data/presets/presets/office/government/register_office.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-town_hall", - "fields": [ - "{office}", - "operator" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "clerk", - "marriage", - "death", - "birth", - "certificate" - ], - "tags": { - "office": "government", - "government": "register_office" - }, - "reference": { - "key": "government", - "value": "register_office" - }, - "name": "Register Office" -} diff --git a/data/presets/presets/office/government/tax.json b/data/presets/presets/office/government/tax.json deleted file mode 100644 index 88205401eb..0000000000 --- a/data/presets/presets/office/government/tax.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-town_hall", - "fields": [ - "{office}", - "operator" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "fiscal authorities", - "revenue office", - "tax office" - ], - "tags": { - "office": "government", - "government": "tax" - }, - "reference": { - "key": "government", - "value": "tax" - }, - "name": "Tax and Revenue Office" -} diff --git a/data/presets/presets/office/guide.json b/data/presets/presets/office/guide.json deleted file mode 100644 index e6e73ad673..0000000000 --- a/data/presets/presets/office/guide.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "guide" - }, - "terms": [ - "dive guide", - "mountain guide", - "tour guide" - ], - "name": "Tour Guide Office" -} diff --git a/data/presets/presets/office/insurance.json b/data/presets/presets/office/insurance.json deleted file mode 100644 index 10acf5c555..0000000000 --- a/data/presets/presets/office/insurance.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-briefcase_shield", - "moreFields": [ - "brand", - "{office}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "insurance" - }, - "terms": [], - "name": "Insurance Office" -} diff --git a/data/presets/presets/office/it.json b/data/presets/presets/office/it.json deleted file mode 100644 index f30bda9a16..0000000000 --- a/data/presets/presets/office/it.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "it" - }, - "terms": [ - "computer", - "information", - "software", - "technology" - ], - "name": "Information Technology Office" -} diff --git a/data/presets/presets/office/lawyer.json b/data/presets/presets/office/lawyer.json deleted file mode 100644 index 636fb23edb..0000000000 --- a/data/presets/presets/office/lawyer.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "fas-balance-scale", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "lawyer" - }, - "terms": [ - "advocate", - "attorney", - "barrister", - "counsellor", - "counselor", - "defender", - "lawyer", - "legal", - "prosecutor" - ], - "name": "Law Office" -} diff --git a/data/presets/presets/office/lawyer/_notary.json b/data/presets/presets/office/lawyer/_notary.json deleted file mode 100644 index e9dd0be1d3..0000000000 --- a/data/presets/presets/office/lawyer/_notary.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "lawyer", - "lawyer": "notary" - }, - "reference": { - "key": "office", - "value": "notary" - }, - "searchable": false, - "name": "Notary Office" -} diff --git a/data/presets/presets/office/moving_company.json b/data/presets/presets/office/moving_company.json deleted file mode 100644 index 9a4ac8e75b..0000000000 --- a/data/presets/presets/office/moving_company.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-people-carry", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "moving_company" - }, - "terms": [ - "relocation" - ], - "name": "Moving Company Office" -} diff --git a/data/presets/presets/office/newspaper.json b/data/presets/presets/office/newspaper.json deleted file mode 100644 index 08f13ff4f6..0000000000 --- a/data/presets/presets/office/newspaper.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "fas-newspaper", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "newspaper" - }, - "terms": [], - "name": "Newspaper Office" -} diff --git a/data/presets/presets/office/ngo.json b/data/presets/presets/office/ngo.json deleted file mode 100644 index f5bab99bd1..0000000000 --- a/data/presets/presets/office/ngo.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "ngo" - }, - "terms": [ - "ngo", - "non government", - "non-government", - "organization", - "organisation" - ], - "name": "NGO Office" -} diff --git a/data/presets/presets/office/notary.json b/data/presets/presets/office/notary.json deleted file mode 100644 index 225331b90e..0000000000 --- a/data/presets/presets/office/notary.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "fas-stamp", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "notary" - }, - "terms": [ - "clerk", - "deeds", - "estate", - "signature", - "wills" - ], - "name": "Notary Office" -} diff --git a/data/presets/presets/office/political_party.json b/data/presets/presets/office/political_party.json deleted file mode 100644 index b429c4a569..0000000000 --- a/data/presets/presets/office/political_party.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "maki-town-hall", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "political_party" - }, - "terms": [], - "name": "Political Party Office" -} diff --git a/data/presets/presets/office/private_investigator.json b/data/presets/presets/office/private_investigator.json deleted file mode 100644 index f16b507bc0..0000000000 --- a/data/presets/presets/office/private_investigator.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "fas-user-secret", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "private_investigator" - }, - "terms": [ - "PI", - "private eye", - "private detective" - ], - "name": "Private Investigator Office" -} diff --git a/data/presets/presets/office/quango.json b/data/presets/presets/office/quango.json deleted file mode 100644 index 6af3918e24..0000000000 --- a/data/presets/presets/office/quango.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "quango" - }, - "terms": [ - "ngo", - "non government", - "non-government", - "organization", - "organisation", - "quasi autonomous", - "quasi-autonomous" - ], - "name": "Quasi-NGO Office" -} diff --git a/data/presets/presets/office/religion.json b/data/presets/presets/office/religion.json deleted file mode 100644 index 47d2e31bc9..0000000000 --- a/data/presets/presets/office/religion.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-suitcase", - "fields": [ - "{office}", - "religion", - "denomination" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "religion" - }, - "terms": [], - "name": "Religious Office" -} diff --git a/data/presets/presets/office/research.json b/data/presets/presets/office/research.json deleted file mode 100644 index 612a351ad9..0000000000 --- a/data/presets/presets/office/research.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "fas-flask", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "research" - }, - "terms": [ - "R and D", - "research and development", - "research lab", - "r&d", - "rnd" - ], - "name": "Research Office" -} diff --git a/data/presets/presets/office/surveyor.json b/data/presets/presets/office/surveyor.json deleted file mode 100644 index 1ed9118501..0000000000 --- a/data/presets/presets/office/surveyor.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "fas-vest", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "surveyor" - }, - "terms": [], - "name": "Surveyor Office" -} diff --git a/data/presets/presets/office/tax_advisor.json b/data/presets/presets/office/tax_advisor.json deleted file mode 100644 index fd408c6931..0000000000 --- a/data/presets/presets/office/tax_advisor.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "tax_advisor" - }, - "terms": [ - "tax", - "tax consultant" - ], - "name": "Tax Advisor Office" -} diff --git a/data/presets/presets/office/telecommunication.json b/data/presets/presets/office/telecommunication.json deleted file mode 100644 index 24653f0980..0000000000 --- a/data/presets/presets/office/telecommunication.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-telephone", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "telecommunication" - }, - "terms": [ - "communication", - "internet service provider", - "isp", - "network", - "telephone", - "voice" - ], - "name": "Telecom Office" -} diff --git a/data/presets/presets/office/therapist.json b/data/presets/presets/office/therapist.json deleted file mode 100644 index 7bbde11ba2..0000000000 --- a/data/presets/presets/office/therapist.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "therapist" - }, - "terms": [ - "therapy" - ], - "name": "Therapist Office" -} diff --git a/data/presets/presets/office/water_utility.json b/data/presets/presets/office/water_utility.json deleted file mode 100644 index 23e29ba0f3..0000000000 --- a/data/presets/presets/office/water_utility.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-suitcase", - "fields": [ - "{office}", - "operator" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "office": "water_utility" - }, - "terms": [ - "water board", - "utility" - ], - "name": "Water Utility Office" -} diff --git a/data/presets/presets/piste/downhill.json b/data/presets/presets/piste/downhill.json deleted file mode 100644 index 10c132d8c1..0000000000 --- a/data/presets/presets/piste/downhill.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "fas-skiing", - "fields": [ - "name", - "piste/type", - "piste/difficulty_downhill", - "piste/grooming_downhill", - "oneway", - "lit" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "piste:type": "downhill" - }, - "terms": [ - "alpine skiing", - "piste", - "ski hill", - "skiing", - "snowboarding" - ], - "name": "Downhill Ski Run" -} diff --git a/data/presets/presets/piste/downhill/halfpipe.json b/data/presets/presets/piste/downhill/halfpipe.json deleted file mode 100644 index 04605cdd9a..0000000000 --- a/data/presets/presets/piste/downhill/halfpipe.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-snowboarding", - "geometry": [ - "line", - "area" - ], - "tags": { - "piste:type": "downhill", - "man_made": "piste:halfpipe" - }, - "reference": { - "key": "man_made", - "value": "piste:halfpipe" - }, - "terms": [ - "ski", - "alpine", - "halfpipe", - "half pipe", - "snowboard", - "downhill", - "piste" - ], - "name": "Snowsports Half-Pipe" -} diff --git a/data/presets/presets/piste/hike.json b/data/presets/presets/piste/hike.json deleted file mode 100644 index 2ea39ef833..0000000000 --- a/data/presets/presets/piste/hike.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-snow_shoeing", - "fields": [ - "name", - "piste/type", - "piste/difficulty", - "piste/grooming_hike", - "oneway", - "lit" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "piste:type": "hike" - }, - "terms": [ - "hike", - "nordic walking", - "piste", - "show shoeing", - "snowshoe", - "snowshoeing" - ], - "name": "Snowshoeing / Winter Hiking Trail" -} diff --git a/data/presets/presets/piste/ice_skate.json b/data/presets/presets/piste/ice_skate.json deleted file mode 100644 index 604acd973b..0000000000 --- a/data/presets/presets/piste/ice_skate.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-skating", - "fields": [ - "name", - "piste/type", - "sport_ice", - "oneway", - "lit" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "piste:type": "ice_skate" - }, - "terms": [ - "ice rink", - "ice track", - "iceskating", - "piste", - "skates" - ], - "name": "Ice Skating Trail" -} diff --git a/data/presets/presets/piste/nordic.json b/data/presets/presets/piste/nordic.json deleted file mode 100644 index c7ed8b52f8..0000000000 --- a/data/presets/presets/piste/nordic.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "fas-skiing-nordic", - "fields": [ - "name", - "piste/type", - "piste/difficulty_nordic", - "piste/grooming_nordic", - "oneway", - "lit" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "piste:type": "nordic" - }, - "terms": [ - "crosscountry", - "nordic skiing", - "piste", - "skate skiing", - "skiing", - "xc" - ], - "name": "Cross-Country Ski Trail" -} diff --git a/data/presets/presets/piste/piste.json b/data/presets/presets/piste/piste.json deleted file mode 100644 index 799577b5aa..0000000000 --- a/data/presets/presets/piste/piste.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "fas-skiing", - "fields": [ - "name", - "piste/type", - "piste/difficulty", - "piste/grooming", - "oneway", - "lit" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "piste:type": "*" - }, - "terms": [ - "ski", - "nordic", - "crosscountry", - "downhill", - "alpine", - "snowboard", - "skitour", - "ski touring", - "sled", - "luge", - "sleigh", - "sledge", - "ski-joring", - "husky", - "horse", - "winter hiking", - "snowshoe", - "snowshoeing", - "ice", - "skating" - ], - "name": "Snowsports Trail / Piste" -} diff --git a/data/presets/presets/piste/skitour.json b/data/presets/presets/piste/skitour.json deleted file mode 100644 index b8d5bb278a..0000000000 --- a/data/presets/presets/piste/skitour.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "fas-skiing-nordic", - "fields": [ - "name", - "piste/type", - "piste/difficulty_skitour", - "piste/grooming", - "oneway", - "lit" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "piste:type": "skitour" - }, - "terms": [ - "ski", - "skitour", - "crosscountry", - "ski touring", - "piste" - ], - "name": "Ski Touring Trail" -} diff --git a/data/presets/presets/piste/sled.json b/data/presets/presets/piste/sled.json deleted file mode 100644 index 6fb0af0b46..0000000000 --- a/data/presets/presets/piste/sled.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-sledding", - "fields": [ - "name", - "piste/type", - "piste/difficulty", - "piste/grooming", - "oneway", - "lit" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "piste:type": "sled" - }, - "terms": [ - "bobsled", - "luge", - "piste", - "skeleton", - "sledge", - "sleigh", - "toboggan" - ], - "name": "Sled Run" -} diff --git a/data/presets/presets/piste/sleigh.json b/data/presets/presets/piste/sleigh.json deleted file mode 100644 index 077b2295ca..0000000000 --- a/data/presets/presets/piste/sleigh.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "fas-sleigh", - "fields": [ - "name", - "piste/type", - "piste/difficulty", - "piste/grooming", - "oneway", - "lit" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "piste:type": "sleigh" - }, - "terms": [ - "dogsledding", - "husky", - "horse", - "piste", - "sled", - "sledge", - "ski-joring", - "skijoring" - ], - "name": "Sleigh Trail" -} diff --git a/data/presets/presets/place/_farm.json b/data/presets/presets/place/_farm.json deleted file mode 100644 index 8814d70597..0000000000 --- a/data/presets/presets/place/_farm.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "maki-farm", - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "farm" - }, - "name": "Farm", - "searchable": false -} diff --git a/data/presets/presets/place/city.json b/data/presets/presets/place/city.json deleted file mode 100644 index af23848da3..0000000000 --- a/data/presets/presets/place/city.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-city", - "fields": [ - "name", - "population" - ], - "moreFields": [ - "{place}", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "city" - }, - "name": "City" -} diff --git a/data/presets/presets/place/city_block.json b/data/presets/presets/place/city_block.json deleted file mode 100644 index 25c337b41b..0000000000 --- a/data/presets/presets/place/city_block.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-triangle-stroked", - "moreFields": [ - "{place}", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "city_block" - }, - "name": "City Block" -} diff --git a/data/presets/presets/place/hamlet.json b/data/presets/presets/place/hamlet.json deleted file mode 100644 index 1b79db15b9..0000000000 --- a/data/presets/presets/place/hamlet.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-triangle-stroked", - "fields": [ - "name", - "population" - ], - "moreFields": [ - "{place}", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "hamlet" - }, - "name": "Hamlet" -} diff --git a/data/presets/presets/place/island.json b/data/presets/presets/place/island.json deleted file mode 100644 index f212bc79a3..0000000000 --- a/data/presets/presets/place/island.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-island_trees_building", - "geometry": [ - "point", - "area" - ], - "terms": [ - "archipelago", - "atoll", - "bar", - "cay", - "isle", - "islet", - "key", - "reef" - ], - "tags": { - "place": "island" - }, - "name": "Island" -} diff --git a/data/presets/presets/place/islet.json b/data/presets/presets/place/islet.json deleted file mode 100644 index 729efdb357..0000000000 --- a/data/presets/presets/place/islet.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-islet_tree", - "geometry": [ - "point", - "area" - ], - "terms": [ - "archipelago", - "atoll", - "bar", - "cay", - "isle", - "islet", - "key", - "reef" - ], - "tags": { - "place": "islet" - }, - "name": "Islet" -} diff --git a/data/presets/presets/place/isolated_dwelling.json b/data/presets/presets/place/isolated_dwelling.json deleted file mode 100644 index d94f37259c..0000000000 --- a/data/presets/presets/place/isolated_dwelling.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-home", - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "isolated_dwelling" - }, - "name": "Isolated Dwelling" -} diff --git a/data/presets/presets/place/locality.json b/data/presets/presets/place/locality.json deleted file mode 100644 index 65263eb101..0000000000 --- a/data/presets/presets/place/locality.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-triangle-stroked", - "moreFields": [ - "{place}", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "locality" - }, - "name": "Locality" -} diff --git a/data/presets/presets/place/neighbourhood.json b/data/presets/presets/place/neighbourhood.json deleted file mode 100644 index d86b54ce59..0000000000 --- a/data/presets/presets/place/neighbourhood.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-triangle-stroked", - "fields": [ - "name", - "population" - ], - "moreFields": [ - "gnis/feature_id", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "neighbourhood" - }, - "terms": [ - "neighbourhood" - ], - "name": "Neighborhood" -} diff --git a/data/presets/presets/place/plot.json b/data/presets/presets/place/plot.json deleted file mode 100644 index 32c4e271f5..0000000000 --- a/data/presets/presets/place/plot.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-triangle-stroked", - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "plot" - }, - "terms": [ - "tract", - "land", - "lot", - "parcel" - ], - "name": "Plot" -} diff --git a/data/presets/presets/place/quarter.json b/data/presets/presets/place/quarter.json deleted file mode 100644 index db795a08fc..0000000000 --- a/data/presets/presets/place/quarter.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-triangle-stroked", - "fields": [ - "name", - "population" - ], - "moreFields": [ - "{place}", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "quarter" - }, - "terms": [ - "boro", - "borough", - "quarter" - ], - "name": "Sub-Borough / Quarter" -} diff --git a/data/presets/presets/place/square.json b/data/presets/presets/place/square.json deleted file mode 100644 index 05c5c74ff7..0000000000 --- a/data/presets/presets/place/square.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "moreFields": [ - "{place}", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "square" - }, - "name": "Square" -} diff --git a/data/presets/presets/place/suburb.json b/data/presets/presets/place/suburb.json deleted file mode 100644 index 58dfd963a0..0000000000 --- a/data/presets/presets/place/suburb.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-triangle-stroked", - "fields": [ - "name", - "population" - ], - "moreFields": [ - "{place}", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "suburb" - }, - "terms": [ - "boro", - "borough", - "quarter" - ], - "name": "Borough / Suburb" -} diff --git a/data/presets/presets/place/town.json b/data/presets/presets/place/town.json deleted file mode 100644 index af682821a2..0000000000 --- a/data/presets/presets/place/town.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-town", - "fields": [ - "name", - "population" - ], - "moreFields": [ - "{place}", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "town" - }, - "name": "Town" -} diff --git a/data/presets/presets/place/village.json b/data/presets/presets/place/village.json deleted file mode 100644 index d2a8f3eff8..0000000000 --- a/data/presets/presets/place/village.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-village", - "fields": [ - "name", - "population" - ], - "moreFields": [ - "{place}", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "place": "village" - }, - "name": "Village" -} diff --git a/data/presets/presets/playground/balance_beam.json b/data/presets/presets/playground/balance_beam.json deleted file mode 100644 index 7e7364e7d1..0000000000 --- a/data/presets/presets/playground/balance_beam.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-playground", - "geometry": [ - "point", - "line" - ], - "tags": { - "playground": "balancebeam" - }, - "name": "Play Balance Beam" -} diff --git a/data/presets/presets/playground/basket_spinner.json b/data/presets/presets/playground/basket_spinner.json deleted file mode 100644 index 57890c5ff7..0000000000 --- a/data/presets/presets/playground/basket_spinner.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "maki-playground", - "geometry": [ - "point" - ], - "terms": [ - "basket rotator" - ], - "tags": { - "playground": "basketrotator" - }, - "name": "Basket Spinner" -} diff --git a/data/presets/presets/playground/basket_swing.json b/data/presets/presets/playground/basket_swing.json deleted file mode 100644 index dedd6ca6e8..0000000000 --- a/data/presets/presets/playground/basket_swing.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "icon": "maki-playground", - "geometry": [ - "point" - ], - "tags": { - "playground": "basketswing" - }, - "name": "Basket Swing" -} diff --git a/data/presets/presets/playground/climbing_frame.json b/data/presets/presets/playground/climbing_frame.json deleted file mode 100644 index 57922a29ea..0000000000 --- a/data/presets/presets/playground/climbing_frame.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-playground", - "geometry": [ - "point", - "area" - ], - "tags": { - "playground": "climbingframe" - }, - "terms": [ - "jungle gym", - "monkey bars" - ], - "name": "Play Climbing Frame" -} diff --git a/data/presets/presets/playground/cushion.json b/data/presets/presets/playground/cushion.json deleted file mode 100644 index 06227a54a5..0000000000 --- a/data/presets/presets/playground/cushion.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-playground", - "geometry": [ - "point", - "area" - ], - "tags": { - "playground": "cushion" - }, - "name": "Bouncy Cushion" -} diff --git a/data/presets/presets/playground/horizontal_bar.json b/data/presets/presets/playground/horizontal_bar.json deleted file mode 100644 index bf0bb5a1ef..0000000000 --- a/data/presets/presets/playground/horizontal_bar.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-pitch", - "geometry": [ - "point" - ], - "terms": [ - "chin-up bar", - "high bar", - "pull-up bar" - ], - "tags": { - "playground": "horizontal_bar" - }, - "name": "Play Horizontal Bar" -} diff --git a/data/presets/presets/playground/rocker.json b/data/presets/presets/playground/rocker.json deleted file mode 100644 index 7b4d029bac..0000000000 --- a/data/presets/presets/playground/rocker.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-playground", - "geometry": [ - "point" - ], - "tags": { - "playground": "springy" - }, - "terms": [ - "spring rocker", - "springy rocker" - ], - "name": "Spring Rider" -} diff --git a/data/presets/presets/playground/roundabout.json b/data/presets/presets/playground/roundabout.json deleted file mode 100644 index ed03dc0262..0000000000 --- a/data/presets/presets/playground/roundabout.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-stadium", - "fields": [ - "{playground}", - "bench" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "playground": "roundabout" - }, - "terms": [ - "merry-go-round" - ], - "name": "Play Roundabout" -} diff --git a/data/presets/presets/playground/sandpit.json b/data/presets/presets/playground/sandpit.json deleted file mode 100644 index f391c9d4e7..0000000000 --- a/data/presets/presets/playground/sandpit.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-playground", - "geometry": [ - "point", - "area" - ], - "tags": { - "playground": "sandpit" - }, - "terms": [ - "sandbox", - "sandpit" - ], - "name": "Play Sandbox" -} diff --git a/data/presets/presets/playground/seesaw.json b/data/presets/presets/playground/seesaw.json deleted file mode 100644 index 2573496fac..0000000000 --- a/data/presets/presets/playground/seesaw.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "icon": "maki-playground", - "geometry": [ - "point" - ], - "tags": { - "playground": "seesaw" - }, - "name": "Seesaw" -} diff --git a/data/presets/presets/playground/slide.json b/data/presets/presets/playground/slide.json deleted file mode 100644 index 2998fd20f5..0000000000 --- a/data/presets/presets/playground/slide.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-slide", - "geometry": [ - "point", - "line" - ], - "tags": { - "playground": "slide" - }, - "name": "Slide" -} diff --git a/data/presets/presets/playground/structure.json b/data/presets/presets/playground/structure.json deleted file mode 100644 index 102c0405f9..0000000000 --- a/data/presets/presets/playground/structure.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-play_structure", - "geometry": [ - "point", - "area" - ], - "tags": { - "playground": "structure" - }, - "terms": [ - "jungle gym" - ], - "name": "Play Structure" -} diff --git a/data/presets/presets/playground/swing.json b/data/presets/presets/playground/swing.json deleted file mode 100644 index 22b6676e3c..0000000000 --- a/data/presets/presets/playground/swing.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-playground", - "fields": [ - "capacity", - "baby_seat", - "wheelchair", - "blind" - ], - "geometry": [ - "point" - ], - "tags": { - "playground": "swing" - }, - "name": "Swing" -} diff --git a/data/presets/presets/playground/zipwire.json b/data/presets/presets/playground/zipwire.json deleted file mode 100644 index d86bba1bb7..0000000000 --- a/data/presets/presets/playground/zipwire.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-playground", - "geometry": [ - "point", - "line" - ], - "tags": { - "playground": "zipwire" - }, - "terms": [ - "zipline", - "zip wire", - "zipwire" - ], - "name": "Play Zip Line" -} diff --git a/data/presets/presets/point.json b/data/presets/presets/point.json deleted file mode 100644 index 4369115f06..0000000000 --- a/data/presets/presets/point.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "fields": [ - "name" - ], - "geometry": [ - "vertex", - "point" - ], - "tags": {}, - "terms": [ - "node", - "other", - "vertex", - "vertices" - ], - "name": "Point", - "matchScore": 0.1 -} diff --git a/data/presets/presets/polling_station.json b/data/presets/presets/polling_station.json deleted file mode 100644 index 8070894fd6..0000000000 --- a/data/presets/presets/polling_station.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "icon": "fas-vote-yea", - "fields": [ - "name", - "ref", - "operator", - "address", - "opening_hours", - "opening_hours/covid19", - "building_area", - "phone", - "website" - ], - "moreFields": [ - "air_conditioning", - "email", - "fax", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "ballot box", - "ballot drop", - "democracy", - "elections", - "polling place", - "vote", - "voting booth", - "voting machine" - ], - "tags": { - "polling_station": "*" - }, - "matchScore": 0.75, - "name": "Temporary Polling Place" -} diff --git a/data/presets/presets/power/_cable.json b/data/presets/presets/power/_cable.json deleted file mode 100644 index 57266248db..0000000000 --- a/data/presets/presets/power/_cable.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-cable", - "fields": [ - "name", - "ref", - "operator", - "voltage", - "location", - "layer" - ], - "geometry": [ - "line" - ], - "tags": { - "power": "cable" - }, - "searchable": false, - "name": "Power Cable" -} diff --git a/data/presets/presets/power/cable/underground.json b/data/presets/presets/power/cable/underground.json deleted file mode 100644 index 047f30cef2..0000000000 --- a/data/presets/presets/power/cable/underground.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-cable", - "geometry": [ - "line" - ], - "tags": { - "power": "cable", - "location": "underground" - }, - "addTags": { - "power": "cable", - "location": "underground", - "layer": "-1" - }, - "name": "Underground Power Cable" -} diff --git a/data/presets/presets/power/generator.json b/data/presets/presets/power/generator.json deleted file mode 100644 index 7e293d9820..0000000000 --- a/data/presets/presets/power/generator.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-power", - "fields": [ - "ref", - "operator", - "generator/source", - "generator/method", - "generator/type", - "generator/output/electricity" - ], - "moreFields": [ - "colour", - "height", - "level", - "manufacturer", - "material" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "hydro", - "solar", - "turbine", - "wind" - ], - "tags": { - "power": "generator" - }, - "name": "Power Generator" -} diff --git a/data/presets/presets/power/generator/method/photovoltaic.json b/data/presets/presets/power/generator/method/photovoltaic.json deleted file mode 100644 index 3130f552f3..0000000000 --- a/data/presets/presets/power/generator/method/photovoltaic.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "fas-solar-panel", - "fields": [ - "ref", - "operator", - "generator/output/electricity" - ], - "moreFields": [ - "{power/generator}" - ], - "geometry": [ - "area", - "point", - "vertex" - ], - "tags": { - "power": "generator", - "generator:method": "photovoltaic" - }, - "addTags": { - "power": "generator", - "generator:source": "solar", - "generator:method": "photovoltaic", - "generator:type": "solar_photovoltaic_panel", - "generator:output:electricity": "*" - }, - "reference": { - "key": "generator:method", - "value": "photovoltaic" - }, - "terms": [ - "photovoltaic module", - "PV module", - "sunlight" - ], - "name": "Solar Panel" -} diff --git a/data/presets/presets/power/generator/source/hydro.json b/data/presets/presets/power/generator/source/hydro.json deleted file mode 100644 index 399da5339a..0000000000 --- a/data/presets/presets/power/generator/source/hydro.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-power", - "fields": [ - "ref", - "operator", - "generator/method", - "generator/type", - "generator/output/electricity" - ], - "moreFields": [ - "{power/generator}" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "power": "generator", - "generator:source": "hydro" - }, - "addTags": { - "power": "generator", - "generator:source": "hydro", - "generator:output:electricity": "yes" - }, - "reference": { - "key": "generator:source", - "value": "hydro" - }, - "terms": [ - "dam", - "generator", - "francis turbine", - "hydroelectricity", - "kaplan turbine", - "pelton turbine" - ], - "name": "Water Turbine" -} diff --git a/data/presets/presets/power/generator/source/nuclear.json b/data/presets/presets/power/generator/source/nuclear.json deleted file mode 100644 index f682573528..0000000000 --- a/data/presets/presets/power/generator/source/nuclear.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-radiation", - "fields": [ - "ref", - "operator", - "generator/method", - "generator/type", - "generator/output/electricity" - ], - "moreFields": [ - "{power/generator}" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "power": "generator", - "generator:source": "nuclear", - "generator:method": "fission" - }, - "reference": { - "key": "generator:source", - "value": "nuclear" - }, - "terms": [ - "fission", - "generator", - "nuclear", - "nuke", - "reactor" - ], - "name": "Nuclear Reactor" -} diff --git a/data/presets/presets/power/generator/source/wind.json b/data/presets/presets/power/generator/source/wind.json deleted file mode 100644 index 19fe5fc112..0000000000 --- a/data/presets/presets/power/generator/source/wind.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-wind_turbine", - "fields": [ - "ref", - "operator", - "generator/type", - "generator/output/electricity" - ], - "moreFields": [ - "{power/generator}" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "power": "generator", - "generator:source": "wind", - "generator:method": "wind_turbine" - }, - "reference": { - "key": "generator:source", - "value": "wind" - }, - "terms": [ - "generator", - "turbine", - "windmill", - "wind" - ], - "name": "Wind Turbine" -} diff --git a/data/presets/presets/power/line.json b/data/presets/presets/power/line.json deleted file mode 100644 index 82fb01aa75..0000000000 --- a/data/presets/presets/power/line.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-power_tower", - "fields": [ - "name", - "operator", - "voltage", - "ref", - "layer" - ], - "geometry": [ - "line" - ], - "terms": [ - "electric power transmission line", - "high voltage line", - "high tension line" - ], - "tags": { - "power": "line" - }, - "name": "Power Line" -} diff --git a/data/presets/presets/power/minor_line.json b/data/presets/presets/power/minor_line.json deleted file mode 100644 index f96dacbfe4..0000000000 --- a/data/presets/presets/power/minor_line.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "iD-power-line", - "fields": [ - "name", - "operator", - "voltage", - "ref", - "layer" - ], - "geometry": [ - "line" - ], - "tags": { - "power": "minor_line" - }, - "name": "Minor Power Line" -} diff --git a/data/presets/presets/power/plant.json b/data/presets/presets/power/plant.json deleted file mode 100644 index 8557426c0f..0000000000 --- a/data/presets/presets/power/plant.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "maki-industry", - "fields": [ - "name", - "operator", - "address", - "plant/source", - "plant/method", - "plant/output/electricity", - "start_date" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "area" - ], - "tags": { - "power": "plant" - }, - "addTags": { - "power": "plant", - "landuse": "industrial" - }, - "terms": [ - "coal", - "gas", - "generat*", - "hydro", - "nuclear", - "power", - "station" - ], - "name": "Power Station Grounds" -} diff --git a/data/presets/presets/power/plant/source/coal.json b/data/presets/presets/power/plant/source/coal.json deleted file mode 100644 index bbfd55edea..0000000000 --- a/data/presets/presets/power/plant/source/coal.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "maki-industry", - "fields": [ - "name", - "operator", - "address", - "plant/output/electricity", - "start_date" - ], - "moreFields": [ - "{power/plant}" - ], - "geometry": [ - "area" - ], - "tags": { - "power": "plant", - "plant:source": "coal" - }, - "addTags": { - "power": "plant", - "landuse": "industrial", - "plant:source": "coal", - "plant:method": "combustion", - "plant:output:electricity": "*" - }, - "reference": { - "key": "plant:source", - "value": "coal" - }, - "terms": [ - "carbon", - "combustion", - "fossil fuel", - "coalfired", - "power station" - ], - "name": "Coal-Fired Power Plant" -} diff --git a/data/presets/presets/power/plant/source/gas.json b/data/presets/presets/power/plant/source/gas.json deleted file mode 100644 index cbe8a96162..0000000000 --- a/data/presets/presets/power/plant/source/gas.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-gas", - "fields": [ - "name", - "operator", - "address", - "plant/output/electricity", - "start_date" - ], - "moreFields": [ - "{power/plant}" - ], - "geometry": [ - "area" - ], - "tags": { - "power": "plant", - "plant:source": "gas" - }, - "addTags": { - "power": "plant", - "landuse": "industrial", - "plant:source": "gas", - "plant:method": "combustion", - "plant:output:electricity": "*" - }, - "reference": { - "key": "plant:source", - "value": "gas" - }, - "terms": [ - "carbon", - "combustion", - "fossil fuel", - "gasfired", - "power station", - "natural gas" - ], - "name": "Gas-Fired Power Plant" -} diff --git a/data/presets/presets/power/plant/source/hydro.json b/data/presets/presets/power/plant/source/hydro.json deleted file mode 100644 index 593378d703..0000000000 --- a/data/presets/presets/power/plant/source/hydro.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "maki-dam", - "fields": [ - "{power/plant}" - ], - "moreFields": [ - "{power/plant}" - ], - "geometry": [ - "area" - ], - "tags": { - "power": "plant", - "plant:source": "hydro" - }, - "addTags": { - "power": "plant", - "landuse": "industrial", - "plant:source": "hydro", - "plant:output:electricity": "*" - }, - "reference": { - "key": "plant:source", - "value": "hydro" - }, - "terms": [ - "dam", - "power plant", - "run-of-the-river", - "tidal", - "water turbine" - ], - "name": "Hydroelectric Power Station" -} diff --git a/data/presets/presets/power/plant/source/nuclear.json b/data/presets/presets/power/plant/source/nuclear.json deleted file mode 100644 index 5d91e194b0..0000000000 --- a/data/presets/presets/power/plant/source/nuclear.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "temaki-radiation", - "fields": [ - "{power/plant}" - ], - "moreFields": [ - "{power/plant}" - ], - "geometry": [ - "area" - ], - "tags": { - "power": "plant", - "plant:source": "nuclear" - }, - "addTags": { - "power": "plant", - "landuse": "industrial", - "plant:source": "nuclear", - "plant:method": "fission", - "plant:output:electricity": "*" - }, - "reference": { - "key": "plant:source", - "value": "nuclear" - }, - "terms": [ - "atomic", - "fission", - "power station", - "nuclear reactor" - ], - "name": "Nuclear Power Plant" -} diff --git a/data/presets/presets/power/plant/source/solar.json b/data/presets/presets/power/plant/source/solar.json deleted file mode 100644 index 26efb8e5be..0000000000 --- a/data/presets/presets/power/plant/source/solar.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "fas-solar-panel", - "fields": [ - "{power/plant}" - ], - "moreFields": [ - "{power/plant}" - ], - "geometry": [ - "area" - ], - "tags": { - "power": "plant", - "plant:source": "solar" - }, - "addTags": { - "power": "plant", - "plant:source": "solar", - "plant:method": "photovoltaic", - "plant:output:electricity": "*" - }, - "removeTags": { - "power": "plant", - "plant:method": "*", - "plant:source": "solar", - "plant:output:electricity": "*", - "landuse": "industrial" - }, - "reference": { - "key": "plant:method", - "value": "photovoltaic" - }, - "terms": [ - "photovoltaic power station", - "solar panels", - "solar park", - "utility-scale solar" - ], - "name": "Solar Farm" -} diff --git a/data/presets/presets/power/plant/source/wind.json b/data/presets/presets/power/plant/source/wind.json deleted file mode 100644 index 86076bef61..0000000000 --- a/data/presets/presets/power/plant/source/wind.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "icon": "temaki-wind_turbine", - "fields": [ - "name", - "operator", - "address", - "plant/output/electricity", - "start_date" - ], - "moreFields": [ - "{power/plant}" - ], - "geometry": [ - "area" - ], - "tags": { - "power": "plant", - "plant:source": "wind" - }, - "addTags": { - "power": "plant", - "plant:source": "wind", - "plant:method": "wind_turbine", - "plant:output:electricity": "*" - }, - "removeTags": { - "power": "plant", - "plant:method": "*", - "plant:source": "wind", - "plant:output:electricity": "*", - "landuse": "industrial" - }, - "reference": { - "key": "plant:source", - "value": "wind" - }, - "terms": [ - "offshore wind", - "wind park", - "wind power plant", - "wind power station", - "wind turbines", - "windmills" - ], - "name": "Wind Farm" -} diff --git a/data/presets/presets/power/pole.json b/data/presets/presets/power/pole.json deleted file mode 100644 index bfd422c3f9..0000000000 --- a/data/presets/presets/power/pole.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-power_pole", - "fields": [ - "ref", - "operator", - "height", - "material", - "line_attachment" - ], - "moreFields": [ - "line_management", - "manufacturer" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "power": "pole" - }, - "name": "Power Pole" -} diff --git a/data/presets/presets/power/substation.json b/data/presets/presets/power/substation.json deleted file mode 100644 index 4064371166..0000000000 --- a/data/presets/presets/power/substation.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-power", - "fields": [ - "substation", - "operator", - "building", - "ref" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "area", - "point" - ], - "tags": { - "power": "substation" - }, - "name": "Substation" -} diff --git a/data/presets/presets/power/switch.json b/data/presets/presets/power/switch.json deleted file mode 100644 index 2789f8a9a2..0000000000 --- a/data/presets/presets/power/switch.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-power_switch", - "fields": [ - "switch", - "operator", - "location", - "cables", - "voltage", - "ref" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "power": "switch" - }, - "name": "Power Switch" -} diff --git a/data/presets/presets/power/tower.json b/data/presets/presets/power/tower.json deleted file mode 100644 index 7a85adc787..0000000000 --- a/data/presets/presets/power/tower.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-power_tower", - "fields": [ - "ref", - "operator", - "design", - "height", - "material", - "line_attachment" - ], - "moreFields": [ - "line_management", - "manufacturer" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "power" - ], - "tags": { - "power": "tower" - }, - "matchScore": 1.05, - "name": "High-Voltage Tower" -} diff --git a/data/presets/presets/power/transformer.json b/data/presets/presets/power/transformer.json deleted file mode 100644 index bc7ca590a7..0000000000 --- a/data/presets/presets/power/transformer.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-power_transformer", - "fields": [ - "ref", - "operator", - "transformer", - "location", - "rating", - "devices", - "phases" - ], - "moreFields": [ - "frequency", - "manufacturer", - "voltage/primary", - "voltage/secondary", - "voltage/tertiary", - "windings", - "windings/configuration" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "power": "transformer" - }, - "name": "Transformer" -} diff --git a/data/presets/presets/public_transport/platform.json b/data/presets/presets/public_transport/platform.json deleted file mode 100644 index c9ef761871..0000000000 --- a/data/presets/presets/public_transport/platform.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "temaki-board_transit", - "fields": [ - "ref_platform", - "network", - "operator", - "vehicles", - "departures_board", - "surface" - ], - "moreFields": [ - "access", - "covered", - "indoor", - "layer", - "level", - "lit", - "wheelchair" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "public_transport": "platform" - }, - "terms": [ - "platform", - "public transit", - "public transportation", - "transit", - "transportation" - ], - "name": "Transit Platform", - "matchScore": 0.6 -} diff --git a/data/presets/presets/public_transport/platform/_aerialway_point.json b/data/presets/presets/public_transport/platform/_aerialway_point.json deleted file mode 100644 index bd9d6e009f..0000000000 --- a/data/presets/presets/public_transport/platform/_aerialway_point.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-gondola_lift", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point" - ], - "tags": { - "public_transport": "platform", - "aerialway": "yes" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "searchable": false, - "name": "Aerialway Stop / Platform" -} diff --git a/data/presets/presets/public_transport/platform/_ferry_point.json b/data/presets/presets/public_transport/platform/_ferry_point.json deleted file mode 100644 index edecc8dc43..0000000000 --- a/data/presets/presets/public_transport/platform/_ferry_point.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-ferry", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point" - ], - "tags": { - "public_transport": "platform", - "ferry": "yes" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "searchable": false, - "name": "Ferry Stop / Platform" -} diff --git a/data/presets/presets/public_transport/platform/_light_rail_point.json b/data/presets/presets/public_transport/platform/_light_rail_point.json deleted file mode 100644 index 5cc191cce6..0000000000 --- a/data/presets/presets/public_transport/platform/_light_rail_point.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-light_rail", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point" - ], - "tags": { - "public_transport": "platform", - "light_rail": "yes" - }, - "reference": { - "key": "railway", - "value": "platform" - }, - "searchable": false, - "name": "Light Rail Stop / Platform" -} diff --git a/data/presets/presets/public_transport/platform/_monorail_point.json b/data/presets/presets/public_transport/platform/_monorail_point.json deleted file mode 100644 index 763ad1eebe..0000000000 --- a/data/presets/presets/public_transport/platform/_monorail_point.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-monorail", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point" - ], - "tags": { - "public_transport": "platform", - "monorail": "yes" - }, - "reference": { - "key": "railway", - "value": "platform" - }, - "searchable": false, - "name": "Monorail Stop / Platform" -} diff --git a/data/presets/presets/public_transport/platform/_subway_point.json b/data/presets/presets/public_transport/platform/_subway_point.json deleted file mode 100644 index 656bd08ba3..0000000000 --- a/data/presets/presets/public_transport/platform/_subway_point.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-subway", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point" - ], - "tags": { - "public_transport": "platform", - "subway": "yes" - }, - "reference": { - "key": "railway", - "value": "platform" - }, - "searchable": false, - "name": "Subway Stop / Platform" -} diff --git a/data/presets/presets/public_transport/platform/_train_point.json b/data/presets/presets/public_transport/platform/_train_point.json deleted file mode 100644 index fc414d382a..0000000000 --- a/data/presets/presets/public_transport/platform/_train_point.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-train", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point" - ], - "tags": { - "public_transport": "platform", - "train": "yes" - }, - "reference": { - "key": "railway", - "value": "platform" - }, - "searchable": false, - "name": "Train Stop / Platform" -} diff --git a/data/presets/presets/public_transport/platform/aerialway.json b/data/presets/presets/public_transport/platform/aerialway.json deleted file mode 100644 index 9ed00d395f..0000000000 --- a/data/presets/presets/public_transport/platform/aerialway.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-board_gondola_lift", - "fields": [ - "{public_transport/platform}" - ], - "moreFields": [ - "{public_transport/platform}" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "public_transport": "platform", - "aerialway": "yes" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "terms": [ - "aerialway", - "cable car", - "platform", - "public transit", - "public transportation", - "transit", - "transportation" - ], - "name": "Aerialway Platform" -} diff --git a/data/presets/presets/public_transport/platform/bus.json b/data/presets/presets/public_transport/platform/bus.json deleted file mode 100644 index 92e2614fa7..0000000000 --- a/data/presets/presets/public_transport/platform/bus.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-board_bus", - "fields": [ - "{public_transport/platform}" - ], - "moreFields": [ - "{public_transport/platform}" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "public_transport": "platform", - "bus": "yes" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "terms": [ - "bus", - "platform", - "public transit", - "public transportation", - "transit", - "transportation" - ], - "name": "Bus Platform" -} diff --git a/data/presets/presets/public_transport/platform/bus_point.json b/data/presets/presets/public_transport/platform/bus_point.json deleted file mode 100644 index ee33228e21..0000000000 --- a/data/presets/presets/public_transport/platform/bus_point.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-bus", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "public_transport": "platform", - "bus": "yes" - }, - "addTags": { - "public_transport": "platform", - "bus": "yes", - "highway": "bus_stop" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "terms": [ - "bus", - "platform", - "public transit", - "public transportation", - "transit", - "transportation" - ], - "name": "Bus Stop" -} diff --git a/data/presets/presets/public_transport/platform/bus_tram_point.json b/data/presets/presets/public_transport/platform/bus_tram_point.json deleted file mode 100644 index da89b0b610..0000000000 --- a/data/presets/presets/public_transport/platform/bus_tram_point.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "icon": "temaki-tram", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "public_transport": "platform", - "bus": "yes", - "tram": "yes" - }, - "addTags": { - "public_transport": "platform", - "bus": "yes", - "tram": "yes", - "highway": "bus_stop" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "terms": [ - "bus", - "light rail", - "platform", - "public transit", - "public transportation", - "rail", - "streetcar", - "track", - "tram", - "transit", - "transportation", - "trolley" - ], - "name": "Tram & Bus Stop" -} diff --git a/data/presets/presets/public_transport/platform/ferry.json b/data/presets/presets/public_transport/platform/ferry.json deleted file mode 100644 index 61abd3878f..0000000000 --- a/data/presets/presets/public_transport/platform/ferry.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-board_ferry", - "fields": [ - "{public_transport/platform}" - ], - "moreFields": [ - "{public_transport/platform}" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "public_transport": "platform", - "ferry": "yes" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "terms": [ - "boat", - "dock", - "ferry", - "pier", - "platform", - "public transit", - "public transportation", - "transit", - "transportation" - ], - "name": "Ferry Platform" -} diff --git a/data/presets/presets/public_transport/platform/light_rail.json b/data/presets/presets/public_transport/platform/light_rail.json deleted file mode 100644 index fe501116cf..0000000000 --- a/data/presets/presets/public_transport/platform/light_rail.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-board_light_rail", - "fields": [ - "{public_transport/platform}" - ], - "moreFields": [ - "{public_transport/platform}" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "public_transport": "platform", - "light_rail": "yes" - }, - "addTags": { - "public_transport": "platform", - "light_rail": "yes", - "railway": "platform" - }, - "reference": { - "key": "railway", - "value": "platform" - }, - "terms": [ - "electric", - "light rail", - "platform", - "public transit", - "public transportation", - "rail", - "track", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Light Rail Platform" -} diff --git a/data/presets/presets/public_transport/platform/monorail.json b/data/presets/presets/public_transport/platform/monorail.json deleted file mode 100644 index 439f1fb0c0..0000000000 --- a/data/presets/presets/public_transport/platform/monorail.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "temaki-board_monorail", - "fields": [ - "{public_transport/platform}" - ], - "moreFields": [ - "{public_transport/platform}" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "public_transport": "platform", - "monorail": "yes" - }, - "addTags": { - "public_transport": "platform", - "monorail": "yes", - "railway": "platform" - }, - "reference": { - "key": "railway", - "value": "platform" - }, - "terms": [ - "monorail", - "platform", - "public transit", - "public transportation", - "rail", - "transit", - "transportation" - ], - "name": "Monorail Platform" -} diff --git a/data/presets/presets/public_transport/platform/subway.json b/data/presets/presets/public_transport/platform/subway.json deleted file mode 100644 index 1c343ef95e..0000000000 --- a/data/presets/presets/public_transport/platform/subway.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "temaki-board_subway", - "fields": [ - "{public_transport/platform}" - ], - "moreFields": [ - "{public_transport/platform}" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "public_transport": "platform", - "subway": "yes" - }, - "addTags": { - "public_transport": "platform", - "subway": "yes", - "railway": "platform" - }, - "reference": { - "key": "railway", - "value": "platform" - }, - "terms": [ - "metro", - "platform", - "public transit", - "public transportation", - "rail", - "subway", - "track", - "transit", - "transportation", - "underground" - ], - "name": "Subway Platform" -} diff --git a/data/presets/presets/public_transport/platform/train.json b/data/presets/presets/public_transport/platform/train.json deleted file mode 100644 index accba652e8..0000000000 --- a/data/presets/presets/public_transport/platform/train.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-board_train", - "fields": [ - "{public_transport/platform}" - ], - "moreFields": [ - "{public_transport/platform}" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "public_transport": "platform", - "train": "yes" - }, - "addTags": { - "public_transport": "platform", - "train": "yes", - "railway": "platform" - }, - "reference": { - "key": "railway", - "value": "platform" - }, - "terms": [ - "platform", - "public transit", - "public transportation", - "rail", - "track", - "train", - "transit", - "transportation" - ], - "name": "Train Platform" -} diff --git a/data/presets/presets/public_transport/platform/tram.json b/data/presets/presets/public_transport/platform/tram.json deleted file mode 100644 index b057aea3c0..0000000000 --- a/data/presets/presets/public_transport/platform/tram.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "temaki-board_tram", - "fields": [ - "{public_transport/platform}" - ], - "moreFields": [ - "{public_transport/platform}" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "public_transport": "platform", - "tram": "yes" - }, - "addTags": { - "public_transport": "platform", - "tram": "yes", - "railway": "platform" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "terms": [ - "electric", - "light rail", - "platform", - "public transit", - "public transportation", - "rail", - "streetcar", - "track", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Tram Platform" -} diff --git a/data/presets/presets/public_transport/platform/tram_point.json b/data/presets/presets/public_transport/platform/tram_point.json deleted file mode 100644 index fe6a700a3e..0000000000 --- a/data/presets/presets/public_transport/platform/tram_point.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-tram", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point" - ], - "tags": { - "public_transport": "platform", - "tram": "yes" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "terms": [ - "electric", - "light rail", - "platform", - "public transit", - "public transportation", - "rail", - "streetcar", - "track", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Tram Stop / Platform" -} diff --git a/data/presets/presets/public_transport/platform/trolleybus.json b/data/presets/presets/public_transport/platform/trolleybus.json deleted file mode 100644 index 3c2ebdfc23..0000000000 --- a/data/presets/presets/public_transport/platform/trolleybus.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-board_trolleybus", - "fields": [ - "{public_transport/platform}" - ], - "moreFields": [ - "{public_transport/platform}" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "public_transport": "platform", - "trolleybus": "yes" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "terms": [ - "bus", - "electric", - "platform", - "public transit", - "public transportation", - "streetcar", - "trackless", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Trolleybus Platform" -} diff --git a/data/presets/presets/public_transport/platform/trolleybus_point.json b/data/presets/presets/public_transport/platform/trolleybus_point.json deleted file mode 100644 index 1ba266535f..0000000000 --- a/data/presets/presets/public_transport/platform/trolleybus_point.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-trolleybus", - "fields": [ - "{public_transport/platform_point}" - ], - "moreFields": [ - "{public_transport/platform_point}" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "public_transport": "platform", - "trolleybus": "yes" - }, - "addTags": { - "public_transport": "platform", - "trolleybus": "yes", - "highway": "bus_stop" - }, - "reference": { - "key": "public_transport", - "value": "platform" - }, - "terms": [ - "bus", - "electric", - "platform", - "public transit", - "public transportation", - "streetcar", - "trackless", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Trolleybus Stop" -} diff --git a/data/presets/presets/public_transport/platform_point.json b/data/presets/presets/public_transport/platform_point.json deleted file mode 100644 index 3ec88363e7..0000000000 --- a/data/presets/presets/public_transport/platform_point.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "temaki-sign_and_bench", - "fields": [ - "name", - "ref_stop_position", - "network", - "operator", - "vehicles", - "departures_board", - "shelter" - ], - "moreFields": [ - "bench", - "bin", - "gnis/feature_id", - "level", - "lit", - "tactile_paving", - "wheelchair" - ], - "geometry": [ - "point" - ], - "tags": { - "public_transport": "platform" - }, - "terms": [ - "platform", - "public transit", - "public transportation", - "transit", - "transportation" - ], - "name": "Transit Stop / Platform", - "matchScore": 0.6 -} diff --git a/data/presets/presets/public_transport/station.json b/data/presets/presets/public_transport/station.json deleted file mode 100644 index 184a215dc0..0000000000 --- a/data/presets/presets/public_transport/station.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "temaki-transit", - "fields": [ - "name", - "network", - "operator", - "vehicles", - "address", - "building_area", - "internet_access" - ], - "moreFields": [ - "air_conditioning", - "baby_feeding", - "email", - "fax", - "gnis/feature_id", - "internet_access/fee", - "internet_access/ssid", - "level", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "public_transport": "station" - }, - "terms": [ - "public transit", - "public transportation", - "station", - "terminal", - "transit", - "transportation" - ], - "name": "Transit Station", - "matchScore": 0.2 -} diff --git a/data/presets/presets/public_transport/station_aerialway.json b/data/presets/presets/public_transport/station_aerialway.json deleted file mode 100644 index ff267fcc9f..0000000000 --- a/data/presets/presets/public_transport/station_aerialway.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "temaki-gondola_lift", - "fields": [ - "{public_transport/station}", - "aerialway/access", - "aerialway/summer/access" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "aerialway": "station" - }, - "addTags": { - "public_transport": "station", - "aerialway": "station" - }, - "reference": { - "key": "aerialway", - "value": "station" - }, - "terms": [ - "aerialway", - "cable car", - "public transit", - "public transportation", - "station", - "terminal", - "transit", - "transportation" - ], - "name": "Aerialway Station" -} diff --git a/data/presets/presets/public_transport/station_bus.json b/data/presets/presets/public_transport/station_bus.json deleted file mode 100644 index 70eb4ef91e..0000000000 --- a/data/presets/presets/public_transport/station_bus.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "temaki-bus", - "fields": [ - "{public_transport/station}" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "public_transport": "station", - "bus": "yes" - }, - "addTags": { - "public_transport": "station", - "bus": "yes", - "amenity": "bus_station" - }, - "reference": { - "key": "amenity", - "value": "bus_station" - }, - "terms": [ - "bus", - "public transit", - "public transportation", - "station", - "terminal", - "transit", - "transportation" - ], - "name": "Bus Station / Terminal" -} diff --git a/data/presets/presets/public_transport/station_ferry.json b/data/presets/presets/public_transport/station_ferry.json deleted file mode 100644 index 52edd223b1..0000000000 --- a/data/presets/presets/public_transport/station_ferry.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-ferry", - "fields": [ - "{public_transport/station}" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "vertex", - "point", - "area" - ], - "tags": { - "public_transport": "station", - "ferry": "yes" - }, - "addTags": { - "public_transport": "station", - "ferry": "yes", - "amenity": "ferry_terminal" - }, - "reference": { - "key": "amenity", - "value": "ferry_terminal" - }, - "terms": [ - "boat", - "dock", - "ferry", - "pier", - "public transit", - "public transportation", - "station", - "terminal", - "transit", - "transportation" - ], - "name": "Ferry Terminal" -} diff --git a/data/presets/presets/public_transport/station_light_rail.json b/data/presets/presets/public_transport/station_light_rail.json deleted file mode 100644 index 18d4953b6b..0000000000 --- a/data/presets/presets/public_transport/station_light_rail.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "icon": "temaki-light_rail", - "fields": [ - "{public_transport/station}" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "public_transport": "station", - "light_rail": "yes" - }, - "addTags": { - "public_transport": "station", - "light_rail": "yes", - "railway": "station", - "station": "light_rail" - }, - "reference": { - "key": "station", - "value": "light_rail" - }, - "terms": [ - "electric", - "light rail", - "public transit", - "public transportation", - "rail", - "station", - "terminal", - "track", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Light Rail Station" -} diff --git a/data/presets/presets/public_transport/station_monorail.json b/data/presets/presets/public_transport/station_monorail.json deleted file mode 100644 index bab24a905e..0000000000 --- a/data/presets/presets/public_transport/station_monorail.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-monorail", - "fields": [ - "{public_transport/station}" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "public_transport": "station", - "monorail": "yes" - }, - "addTags": { - "public_transport": "station", - "monorail": "yes", - "railway": "station" - }, - "reference": { - "key": "railway", - "value": "station" - }, - "terms": [ - "monorail", - "public transit", - "public transportation", - "rail", - "station", - "terminal", - "transit", - "transportation" - ], - "name": "Monorail Station" -} diff --git a/data/presets/presets/public_transport/station_subway.json b/data/presets/presets/public_transport/station_subway.json deleted file mode 100644 index 92af563f08..0000000000 --- a/data/presets/presets/public_transport/station_subway.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "temaki-subway", - "fields": [ - "{public_transport/station}" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "public_transport": "station", - "subway": "yes" - }, - "addTags": { - "public_transport": "station", - "subway": "yes", - "railway": "station", - "station": "subway" - }, - "reference": { - "key": "station", - "value": "subway" - }, - "terms": [ - "metro", - "public transit", - "public transportation", - "rail", - "station", - "subway", - "terminal", - "track", - "transit", - "transportation", - "underground" - ], - "name": "Subway Station" -} diff --git a/data/presets/presets/public_transport/station_train.json b/data/presets/presets/public_transport/station_train.json deleted file mode 100644 index cf5fa94aaf..0000000000 --- a/data/presets/presets/public_transport/station_train.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "temaki-train", - "fields": [ - "{public_transport/station}" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "vertex", - "point", - "area" - ], - "tags": { - "public_transport": "station", - "train": "yes" - }, - "addTags": { - "public_transport": "station", - "train": "yes", - "railway": "station" - }, - "reference": { - "key": "railway", - "value": "station" - }, - "terms": [ - "public transit", - "public transportation", - "rail", - "station", - "terminal", - "track", - "train", - "transit", - "transportation" - ], - "name": "Train Station" -} diff --git a/data/presets/presets/public_transport/station_train_halt.json b/data/presets/presets/public_transport/station_train_halt.json deleted file mode 100644 index 55b9352356..0000000000 --- a/data/presets/presets/public_transport/station_train_halt.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-rail_flag", - "fields": [ - "{public_transport/station}" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "public_transport": "station", - "train": "yes", - "railway": "halt" - }, - "reference": { - "key": "railway", - "value": "halt" - }, - "terms": [ - "halt", - "public transit", - "public transportation", - "rail", - "station", - "track", - "train", - "transit", - "transportation", - "whistle stop" - ], - "name": "Train Station (Halt / Request)" -} diff --git a/data/presets/presets/public_transport/station_tram.json b/data/presets/presets/public_transport/station_tram.json deleted file mode 100644 index 3919d74014..0000000000 --- a/data/presets/presets/public_transport/station_tram.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-tram", - "fields": [ - "{public_transport/station}" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "public_transport": "station", - "tram": "yes" - }, - "reference": { - "key": "public_transport", - "value": "station" - }, - "terms": [ - "electric", - "light rail", - "public transit", - "public transportation", - "rail", - "station", - "streetcar", - "terminal", - "track", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Tram Station" -} diff --git a/data/presets/presets/public_transport/station_trolleybus.json b/data/presets/presets/public_transport/station_trolleybus.json deleted file mode 100644 index dcbdd4f8af..0000000000 --- a/data/presets/presets/public_transport/station_trolleybus.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "temaki-trolleybus", - "fields": [ - "{public_transport/station}" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "public_transport": "station", - "trolleybus": "yes" - }, - "addTags": { - "public_transport": "station", - "trolleybus": "yes", - "amenity": "bus_station" - }, - "reference": { - "key": "amenity", - "value": "bus_station" - }, - "terms": [ - "bus", - "electric", - "public transit", - "public transportation", - "station", - "streetcar", - "terminal", - "trackless", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Trolleybus Station / Terminal" -} diff --git a/data/presets/presets/public_transport/stop_area.json b/data/presets/presets/public_transport/stop_area.json deleted file mode 100644 index f7e302169d..0000000000 --- a/data/presets/presets/public_transport/stop_area.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "iD-relation", - "fields": [ - "name", - "ref", - "network", - "operator" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "public_transport", - "public_transport": "stop_area" - }, - "reference": { - "key": "public_transport", - "value": "stop_area" - }, - "name": "Transit Stop Area" -} diff --git a/data/presets/presets/public_transport/stop_position.json b/data/presets/presets/public_transport/stop_position.json deleted file mode 100644 index 69cde81d0e..0000000000 --- a/data/presets/presets/public_transport/stop_position.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-transit", - "fields": [ - "name", - "ref_stop_position", - "network", - "operator", - "vehicles" - ], - "moreFields": [], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position" - }, - "terms": [ - "public transit", - "public transportation", - "transit", - "transportation" - ], - "name": "Transit Stopping Location", - "matchScore": 0.2 -} diff --git a/data/presets/presets/public_transport/stop_position_aerialway.json b/data/presets/presets/public_transport/stop_position_aerialway.json deleted file mode 100644 index f31188cebc..0000000000 --- a/data/presets/presets/public_transport/stop_position_aerialway.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "temaki-gondola_lift", - "fields": [ - "{public_transport/stop_position}" - ], - "moreFields": [ - "{public_transport/stop_position}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position", - "aerialway": "yes" - }, - "reference": { - "key": "public_transport", - "value": "stop_position" - }, - "terms": [ - "aerialway", - "cable car", - "public transit", - "public transportation", - "transit", - "transportation" - ], - "name": "Aerialway Stopping Location" -} diff --git a/data/presets/presets/public_transport/stop_position_bus.json b/data/presets/presets/public_transport/stop_position_bus.json deleted file mode 100644 index 0e327ce0ec..0000000000 --- a/data/presets/presets/public_transport/stop_position_bus.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-bus", - "fields": [ - "{public_transport/stop_position}" - ], - "moreFields": [ - "{public_transport/stop_position}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position", - "bus": "yes" - }, - "reference": { - "key": "public_transport", - "value": "stop_position" - }, - "terms": [ - "bus", - "public transit", - "public transportation", - "transit", - "transportation" - ], - "name": "Bus Stopping Location" -} diff --git a/data/presets/presets/public_transport/stop_position_ferry.json b/data/presets/presets/public_transport/stop_position_ferry.json deleted file mode 100644 index d6124c0404..0000000000 --- a/data/presets/presets/public_transport/stop_position_ferry.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-ferry", - "fields": [ - "{public_transport/stop_position}" - ], - "moreFields": [ - "{public_transport/stop_position}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position", - "ferry": "yes" - }, - "reference": { - "key": "public_transport", - "value": "stop_position" - }, - "terms": [ - "boat", - "dock", - "ferry", - "pier", - "public transit", - "public transportation", - "transit", - "transportation" - ], - "name": "Ferry Stopping Location" -} diff --git a/data/presets/presets/public_transport/stop_position_light_rail.json b/data/presets/presets/public_transport/stop_position_light_rail.json deleted file mode 100644 index 0c5b7ee3c2..0000000000 --- a/data/presets/presets/public_transport/stop_position_light_rail.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "temaki-light_rail", - "fields": [ - "{public_transport/stop_position}" - ], - "moreFields": [ - "{public_transport/stop_position}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position", - "light_rail": "yes" - }, - "addTags": { - "public_transport": "stop_position", - "light_rail": "yes", - "railway": "stop" - }, - "reference": { - "key": "railway", - "value": "stop" - }, - "terms": [ - "electric", - "light rail", - "public transit", - "public transportation", - "rail", - "track", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Light Rail Stopping Location" -} diff --git a/data/presets/presets/public_transport/stop_position_monorail.json b/data/presets/presets/public_transport/stop_position_monorail.json deleted file mode 100644 index 2edde5f207..0000000000 --- a/data/presets/presets/public_transport/stop_position_monorail.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "icon": "temaki-monorail", - "fields": [ - "{public_transport/stop_position}" - ], - "moreFields": [ - "{public_transport/stop_position}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position", - "monorail": "yes" - }, - "addTags": { - "public_transport": "stop_position", - "monorail": "yes", - "railway": "stop" - }, - "reference": { - "key": "railway", - "value": "stop" - }, - "terms": [ - "monorail", - "public transit", - "public transportation", - "rail", - "transit", - "transportation" - ], - "name": "Monorail Stopping Location" -} diff --git a/data/presets/presets/public_transport/stop_position_subway.json b/data/presets/presets/public_transport/stop_position_subway.json deleted file mode 100644 index ecf98caaa3..0000000000 --- a/data/presets/presets/public_transport/stop_position_subway.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "temaki-subway", - "fields": [ - "{public_transport/stop_position}" - ], - "moreFields": [ - "{public_transport/stop_position}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position", - "subway": "yes" - }, - "addTags": { - "public_transport": "stop_position", - "subway": "yes", - "railway": "stop" - }, - "reference": { - "key": "railway", - "value": "stop" - }, - "terms": [ - "metro", - "public transit", - "public transportation", - "rail", - "subway", - "track", - "transit", - "transportation", - "underground" - ], - "name": "Subway Stopping Location" -} diff --git a/data/presets/presets/public_transport/stop_position_train.json b/data/presets/presets/public_transport/stop_position_train.json deleted file mode 100644 index 359499217f..0000000000 --- a/data/presets/presets/public_transport/stop_position_train.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-train", - "fields": [ - "{public_transport/stop_position}" - ], - "moreFields": [ - "{public_transport/stop_position}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position", - "train": "yes" - }, - "addTags": { - "public_transport": "stop_position", - "train": "yes", - "railway": "stop" - }, - "reference": { - "key": "railway", - "value": "stop" - }, - "terms": [ - "public transit", - "public transportation", - "rail", - "track", - "train", - "transit", - "transportation" - ], - "name": "Train Stopping Location" -} diff --git a/data/presets/presets/public_transport/stop_position_tram.json b/data/presets/presets/public_transport/stop_position_tram.json deleted file mode 100644 index 0902a7eae9..0000000000 --- a/data/presets/presets/public_transport/stop_position_tram.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "temaki-tram", - "fields": [ - "{public_transport/stop_position}" - ], - "moreFields": [ - "{public_transport/stop_position}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position", - "tram": "yes" - }, - "addTags": { - "public_transport": "stop_position", - "tram": "yes", - "railway": "tram_stop" - }, - "reference": { - "key": "public_transport", - "value": "stop_position" - }, - "terms": [ - "electric", - "light rail", - "public transit", - "public transportation", - "rail", - "streetcar", - "track", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Tram Stopping Location" -} diff --git a/data/presets/presets/public_transport/stop_position_trolleybus.json b/data/presets/presets/public_transport/stop_position_trolleybus.json deleted file mode 100644 index fc7b8a98a2..0000000000 --- a/data/presets/presets/public_transport/stop_position_trolleybus.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-trolleybus", - "fields": [ - "{public_transport/stop_position}" - ], - "moreFields": [ - "{public_transport/stop_position}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "public_transport": "stop_position", - "trolleybus": "yes" - }, - "reference": { - "key": "public_transport", - "value": "stop_position" - }, - "terms": [ - "bus", - "electric", - "public transit", - "public transportation", - "streetcar", - "trackless", - "tram", - "trolley", - "transit", - "transportation" - ], - "name": "Trolleybus Stopping Location" -} diff --git a/data/presets/presets/railway/_halt.json b/data/presets/presets/railway/_halt.json deleted file mode 100644 index 20c8e9b872..0000000000 --- a/data/presets/presets/railway/_halt.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "temaki-rail_flag", - "geometry": [ - "point", - "vertex" - ], - "tags": { - "railway": "halt" - }, - "name": "Train Station (Halt / Request)", - "searchable": false -} diff --git a/data/presets/presets/railway/_platform.json b/data/presets/presets/railway/_platform.json deleted file mode 100644 index 57f74d8f8c..0000000000 --- a/data/presets/presets/railway/_platform.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-board_train", - "fields": [ - "{public_transport/platform}" - ], - "moreFields": [ - "{public_transport/platform}" - ], - "geometry": [ - "line", - "area" - ], - "tags": { - "railway": "platform" - }, - "name": "Train Platform", - "searchable": false -} diff --git a/data/presets/presets/railway/_station.json b/data/presets/presets/railway/_station.json deleted file mode 100644 index 815857c10d..0000000000 --- a/data/presets/presets/railway/_station.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-train", - "fields": [ - "{public_transport/station}" - ], - "moreFields": [ - "{public_transport/station}" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "railway": "station" - }, - "matchScore": 0.95, - "name": "Train Station", - "searchable": false -} diff --git a/data/presets/presets/railway/_tram_stop.json b/data/presets/presets/railway/_tram_stop.json deleted file mode 100644 index b036d1bd17..0000000000 --- a/data/presets/presets/railway/_tram_stop.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-tram", - "fields": [ - "{public_transport/stop_position}" - ], - "moreFields": [ - "{public_transport/stop_position}" - ], - "geometry": [ - "vertex" - ], - "tags": { - "railway": "tram_stop" - }, - "name": "Tram Stopping Position", - "searchable": false -} diff --git a/data/presets/presets/railway/abandoned.json b/data/presets/presets/railway/abandoned.json deleted file mode 100644 index 7f4d120dca..0000000000 --- a/data/presets/presets/railway/abandoned.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-railway_track_askew", - "fields": [ - "name", - "structure", - "service_rail", - "usage_rail" - ], - "moreFields": [ - "covered", - "incline" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "abandoned" - }, - "terms": [], - "matchScore": 0.85, - "name": "Abandoned Railway" -} diff --git a/data/presets/presets/railway/buffer_stop.json b/data/presets/presets/railway/buffer_stop.json deleted file mode 100644 index bfd73e6cab..0000000000 --- a/data/presets/presets/railway/buffer_stop.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-buffer_stop", - "geometry": [ - "vertex" - ], - "tags": { - "railway": "buffer_stop" - }, - "terms": [ - "stop", - "halt", - "buffer" - ], - "name": "Buffer Stop" -} diff --git a/data/presets/presets/railway/construction.json b/data/presets/presets/railway/construction.json deleted file mode 100644 index 1aca975e8e..0000000000 --- a/data/presets/presets/railway/construction.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-railway_track_partial", - "fields": [ - "name", - "opening_date", - "check_date", - "note", - "structure", - "gauge", - "electrified" - ], - "moreFields": [ - "covered", - "frequency_electrified", - "highspeed", - "incline", - "maxspeed", - "service_rail", - "usage_rail", - "voltage_electrified" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "construction" - }, - "matchScore": 0.95, - "name": "Railway Under Construction" -} diff --git a/data/presets/presets/railway/crossing.json b/data/presets/presets/railway/crossing.json deleted file mode 100644 index 08ca4a85c7..0000000000 --- a/data/presets/presets/railway/crossing.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "geometry": [ - "vertex" - ], - "tags": { - "railway": "crossing" - }, - "terms": [ - "crossing", - "path railway crossing", - "pedestrian crossing", - "level crossing", - "grade crossing", - "railroad crossing", - "railway path crossing", - "path through railroad", - "train crossing" - ], - "name": "Railway-Path Crossing" -} diff --git a/data/presets/presets/railway/derail.json b/data/presets/presets/railway/derail.json deleted file mode 100644 index 4d7f8378d8..0000000000 --- a/data/presets/presets/railway/derail.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "maki-roadblock", - "geometry": [ - "vertex" - ], - "tags": { - "railway": "derail" - }, - "terms": [ - "derailer" - ], - "name": "Railway Derailer" -} diff --git a/data/presets/presets/railway/disused.json b/data/presets/presets/railway/disused.json deleted file mode 100644 index 06fab478cd..0000000000 --- a/data/presets/presets/railway/disused.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-railway_track", - "fields": [ - "{railway/light_rail}" - ], - "moreFields": [ - "{railway/light_rail}", - "highspeed" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "disused" - }, - "matchScore": 0.95, - "name": "Disused Railway" -} diff --git a/data/presets/presets/railway/funicular.json b/data/presets/presets/railway/funicular.json deleted file mode 100644 index 87a6af6f30..0000000000 --- a/data/presets/presets/railway/funicular.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "temaki-railway_cable_track", - "fields": [ - "name", - "operator", - "incline", - "structure", - "gauge", - "service_rail" - ], - "moreFields": [ - "covered", - "electrified", - "frequency_electrified", - "maxspeed", - "voltage_electrified" - ], - "geometry": [ - "line" - ], - "terms": [ - "venicular", - "cliff railway", - "cable car", - "cable railway", - "funicular railway" - ], - "tags": { - "railway": "funicular" - }, - "name": "Funicular Track" -} diff --git a/data/presets/presets/railway/level_crossing.json b/data/presets/presets/railway/level_crossing.json deleted file mode 100644 index 5376cbeba5..0000000000 --- a/data/presets/presets/railway/level_crossing.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-cross", - "geometry": [ - "vertex" - ], - "tags": { - "railway": "level_crossing" - }, - "terms": [ - "crossing", - "level crossing", - "grade crossing", - "railroad crossing", - "railway road crossing", - "road railway crossing", - "road through railroad", - "train crossing" - ], - "name": "Railway-Road Crossing" -} diff --git a/data/presets/presets/railway/light_rail.json b/data/presets/presets/railway/light_rail.json deleted file mode 100644 index ec5f63360e..0000000000 --- a/data/presets/presets/railway/light_rail.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-light_rail", - "fields": [ - "name", - "operator", - "structure", - "gauge", - "electrified", - "service_rail", - "usage_rail" - ], - "moreFields": [ - "covered", - "frequency_electrified", - "incline", - "maxspeed", - "voltage_electrified" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "light_rail" - }, - "terms": [ - "light rail", - "streetcar", - "trolley" - ], - "name": "Light Rail Track" -} diff --git a/data/presets/presets/railway/milestone.json b/data/presets/presets/railway/milestone.json deleted file mode 100644 index 17b64377a0..0000000000 --- a/data/presets/presets/railway/milestone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-milestone", - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "railway/position", - "direction_vertex" - ], - "tags": { - "railway": "milestone" - }, - "terms": [ - "milestone", - "marker" - ], - "name": "Railway Milestone" -} diff --git a/data/presets/presets/railway/miniature.json b/data/presets/presets/railway/miniature.json deleted file mode 100644 index 58667c04f6..0000000000 --- a/data/presets/presets/railway/miniature.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-railway_track_mini", - "fields": [ - "{railway/light_rail}" - ], - "moreFields": [ - "{railway/light_rail}" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "miniature" - }, - "terms": [ - "rideable miniature railway", - "narrow gauge railway", - "minimum gauge railway" - ], - "name": "Miniature Train Track" -} diff --git a/data/presets/presets/railway/monorail.json b/data/presets/presets/railway/monorail.json deleted file mode 100644 index 9e20a1e3d0..0000000000 --- a/data/presets/presets/railway/monorail.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-monorail", - "fields": [ - "{railway/light_rail}" - ], - "moreFields": [ - "{railway/light_rail}" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "monorail" - }, - "name": "Monorail Track" -} diff --git a/data/presets/presets/railway/monorail/hanging.json b/data/presets/presets/railway/monorail/hanging.json deleted file mode 100644 index a8c8cab2c1..0000000000 --- a/data/presets/presets/railway/monorail/hanging.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-hanging_rail", - "geometry": [ - "line" - ], - "tags": { - "railway": "monorail", - "monorail": "hanging" - }, - "reference": { - "key": "monorail", - "value": "hanging" - }, - "terms": [ - "suspension railway" - ], - "name": "Hanging Monorail Track" -} diff --git a/data/presets/presets/railway/narrow_gauge.json b/data/presets/presets/railway/narrow_gauge.json deleted file mode 100644 index 75ccc95032..0000000000 --- a/data/presets/presets/railway/narrow_gauge.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-railway_track_narrow", - "fields": [ - "{railway/light_rail}" - ], - "moreFields": [ - "{railway/light_rail}" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "narrow_gauge" - }, - "terms": [ - "narrow gauge railway", - "narrow gauge railroad" - ], - "name": "Narrow Gauge Track" -} diff --git a/data/presets/presets/railway/preserved.json b/data/presets/presets/railway/preserved.json deleted file mode 100644 index 24f7afe26a..0000000000 --- a/data/presets/presets/railway/preserved.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "temaki-train_steam", - "fields": [ - "railway", - "{railway/light_rail}" - ], - "moreFields": [ - "{railway/light_rail}" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "*", - "railway:preserved": "yes" - }, - "addTags": { - "railway": "rail", - "railway:preserved": "yes" - }, - "reference": { - "key": "railway:preserved" - }, - "terms": [ - "historic train", - "preserved rail", - "steam train", - "tourist train" - ], - "name": "Heritage Railway Track" -} diff --git a/data/presets/presets/railway/rail.json b/data/presets/presets/railway/rail.json deleted file mode 100644 index 6b36b879e2..0000000000 --- a/data/presets/presets/railway/rail.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-railway_track", - "fields": [ - "{railway/light_rail}" - ], - "moreFields": [ - "{railway/light_rail}", - "highspeed" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "rail" - }, - "terms": [ - "permanent way", - "rail line", - "railroad track", - "railway track", - "track", - "train track" - ], - "name": "Train Track" -} diff --git a/data/presets/presets/railway/rail/highspeed.json b/data/presets/presets/railway/rail/highspeed.json deleted file mode 100644 index f42b57040f..0000000000 --- a/data/presets/presets/railway/rail/highspeed.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-train_bullet", - "geometry": [ - "line" - ], - "tags": { - "railway": "rail", - "highspeed": "yes" - }, - "reference": { - "key": "highspeed" - }, - "terms": [ - "bullet train", - "fast rail", - "high speed rail", - "highspeed rail", - "HSR" - ], - "name": "High-Speed Train Track" -} diff --git a/data/presets/presets/railway/railway_crossing.json b/data/presets/presets/railway/railway_crossing.json deleted file mode 100644 index 06c714cd96..0000000000 --- a/data/presets/presets/railway/railway_crossing.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-x_oblique", - "geometry": [ - "vertex" - ], - "tags": { - "railway": "railway_crossing" - }, - "terms": [ - "diamond crossing", - "flat crossing", - "level junction", - "railway railway crossing" - ], - "name": "Railway-Railway Crossing" -} diff --git a/data/presets/presets/railway/signal.json b/data/presets/presets/railway/signal.json deleted file mode 100644 index 83f56eea2f..0000000000 --- a/data/presets/presets/railway/signal.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-railway_signals", - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "railway/position", - "railway/signal/direction", - "ref" - ], - "tags": { - "railway": "signal" - }, - "terms": [ - "signal", - "lights" - ], - "name": "Railway Signal" -} diff --git a/data/presets/presets/railway/subway.json b/data/presets/presets/railway/subway.json deleted file mode 100644 index b1915e27f5..0000000000 --- a/data/presets/presets/railway/subway.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-subway", - "fields": [ - "{railway/light_rail}" - ], - "moreFields": [ - "{railway/light_rail}" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "subway" - }, - "terms": [ - "metro", - "transit", - "underground railway" - ], - "name": "Subway Track" -} diff --git a/data/presets/presets/railway/subway_entrance.json b/data/presets/presets/railway/subway_entrance.json deleted file mode 100644 index 2a2e924d85..0000000000 --- a/data/presets/presets/railway/subway_entrance.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-entrance", - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "name", - "level", - "wheelchair" - ], - "tags": { - "railway": "subway_entrance" - }, - "terms": [ - "metro", - "transit" - ], - "name": "Subway Entrance" -} diff --git a/data/presets/presets/railway/switch.json b/data/presets/presets/railway/switch.json deleted file mode 100644 index d5d6d8bad4..0000000000 --- a/data/presets/presets/railway/switch.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-junction", - "geometry": [ - "vertex" - ], - "tags": { - "railway": "switch" - }, - "terms": [ - "switch", - "points" - ], - "name": "Railway Switch" -} diff --git a/data/presets/presets/railway/train_wash.json b/data/presets/presets/railway/train_wash.json deleted file mode 100644 index 4760bb090d..0000000000 --- a/data/presets/presets/railway/train_wash.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-train_wash", - "geometry": [ - "point", - "vertex", - "area" - ], - "fields": [ - "operator", - "building_area" - ], - "tags": { - "railway": "wash" - }, - "terms": [ - "wash", - "clean" - ], - "name": "Train Wash" -} diff --git a/data/presets/presets/railway/tram.json b/data/presets/presets/railway/tram.json deleted file mode 100644 index 97afc434d8..0000000000 --- a/data/presets/presets/railway/tram.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-tram", - "fields": [ - "{railway/light_rail}" - ], - "moreFields": [ - "{railway/light_rail}" - ], - "geometry": [ - "line" - ], - "tags": { - "railway": "tram" - }, - "terms": [ - "electric street railway", - "light rail", - "streetcar", - "tramway", - "trolley" - ], - "name": "Tram Track" -} diff --git a/data/presets/presets/railway/tram_crossing.json b/data/presets/presets/railway/tram_crossing.json deleted file mode 100644 index 3cabed05f6..0000000000 --- a/data/presets/presets/railway/tram_crossing.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-crossing_tram_striped", - "geometry": [ - "vertex" - ], - "tags": { - "railway": "tram_crossing" - }, - "terms": [ - "crossing", - "grade crossing", - "level crossing", - "path tram crossing", - "pedestrian crossing", - "streetcar crossing", - "tram path crossing", - "tramway crossing", - "trolley crossing" - ], - "name": "Tram-Path Crossing" -} diff --git a/data/presets/presets/railway/tram_level_crossing.json b/data/presets/presets/railway/tram_level_crossing.json deleted file mode 100644 index 64e70de2ae..0000000000 --- a/data/presets/presets/railway/tram_level_crossing.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-crossing_tram_solid", - "geometry": [ - "vertex" - ], - "tags": { - "railway": "tram_level_crossing" - }, - "terms": [ - "crossing", - "grade crossing", - "level crossing", - "pedestrian crossing", - "road tram crossing", - "streetcar crossing", - "tram road crossing", - "tramway crossing", - "trolley crossing" - ], - "name": "Tram-Road Crossing" -} diff --git a/data/presets/presets/railway/yard.json b/data/presets/presets/railway/yard.json deleted file mode 100644 index d959aa0b85..0000000000 --- a/data/presets/presets/railway/yard.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-freight_car", - "fields": [ - "name", - "operator" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point" - ], - "tags": { - "railway": "yard" - }, - "terms": [ - "freight car stop", - "freight train station", - "rail freight station", - "railroad yard", - "railway yard" - ], - "name": "Rail Yard" -} diff --git a/data/presets/presets/relation.json b/data/presets/presets/relation.json deleted file mode 100644 index 65f477ca75..0000000000 --- a/data/presets/presets/relation.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "icon": "iD-relation", - "fields": [ - "name", - "relation" - ], - "geometry": [ - "relation" - ], - "tags": {}, - "name": "Relation" -} diff --git a/data/presets/presets/route/ferry.json b/data/presets/presets/route/ferry.json deleted file mode 100644 index 41f557a7e1..0000000000 --- a/data/presets/presets/route/ferry.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "icon": "temaki-ferry", - "geometry": [ - "line" - ], - "fields": [ - "name", - "operator", - "duration", - "access", - "toll", - "from", - "to" - ], - "moreFields": [ - "charge_toll", - "distance", - "dog", - "email", - "interval", - "maxheight", - "maxweight", - "network", - "oneway", - "opening_hours", - "opening_hours/covid19", - "phone", - "ref_route", - "reservation", - "roundtrip", - "vhf", - "website", - "wheelchair" - ], - "tags": { - "route": "ferry" - }, - "terms": [ - "boat", - "merchant vessel", - "ship", - "water bus", - "water shuttle", - "water taxi" - ], - "name": "Ferry Route" -} diff --git a/data/presets/presets/seamark/beacon_isolated_danger.json b/data/presets/presets/seamark/beacon_isolated_danger.json deleted file mode 100644 index 93449c7906..0000000000 --- a/data/presets/presets/seamark/beacon_isolated_danger.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "fields": [ - "ref", - "operator", - "seamark/beacon_isolated_danger/shape", - "seamark/type" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "beacon isolated danger", - "isolated danger beacon", - "iala" - ], - "tags": { - "seamark:type": "beacon_isolated_danger" - }, - "name": "Danger Beacon" -} diff --git a/data/presets/presets/seamark/beacon_lateral.json b/data/presets/presets/seamark/beacon_lateral.json deleted file mode 100644 index 9b9aab9506..0000000000 --- a/data/presets/presets/seamark/beacon_lateral.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "fields": [ - "ref", - "operator", - "seamark/beacon_lateral/colour", - "seamark/beacon_lateral/category", - "seamark/beacon_lateral/shape", - "seamark/beacon_lateral/system", - "seamark/type" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "lateral beacon", - "beacon lateral", - "cevni", - "channel marker", - "iala", - "lateral mark" - ], - "tags": { - "seamark:type": "beacon_lateral" - }, - "name": "Channel Beacon" -} diff --git a/data/presets/presets/seamark/buoy_lateral.json b/data/presets/presets/seamark/buoy_lateral.json deleted file mode 100644 index cc9294e99d..0000000000 --- a/data/presets/presets/seamark/buoy_lateral.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-buoy", - "fields": [ - "ref", - "operator", - "seamark/buoy_lateral/colour", - "seamark/buoy_lateral/category", - "seamark/buoy_lateral/shape", - "seamark/buoy_lateral/system", - "seamark/type" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "lateral buoy", - "buoy lateral", - "cevni", - "channel marker", - "iala", - "lateral mark" - ], - "tags": { - "seamark:type": "buoy_lateral" - }, - "name": "Channel Buoy" -} diff --git a/data/presets/presets/seamark/buoy_lateral/green.json b/data/presets/presets/seamark/buoy_lateral/green.json deleted file mode 100644 index 0f0a43d6f1..0000000000 --- a/data/presets/presets/seamark/buoy_lateral/green.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-buoy", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "lateral buoy", - "buoy lateral", - "cevni", - "channel marker", - "iala", - "lateral mark" - ], - "tags": { - "seamark:type": "buoy_lateral", - "seamark:buoy_lateral:colour": "green" - }, - "name": "Green Buoy" -} diff --git a/data/presets/presets/seamark/buoy_lateral/red.json b/data/presets/presets/seamark/buoy_lateral/red.json deleted file mode 100644 index 7f7b916549..0000000000 --- a/data/presets/presets/seamark/buoy_lateral/red.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-buoy", - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "lateral buoy", - "buoy lateral", - "cevni", - "channel marker", - "iala", - "lateral mark" - ], - "tags": { - "seamark:type": "buoy_lateral", - "seamark:buoy_lateral:colour": "red" - }, - "name": "Red Buoy" -} diff --git a/data/presets/presets/seamark/mooring.json b/data/presets/presets/seamark/mooring.json deleted file mode 100644 index e1f31c2bfb..0000000000 --- a/data/presets/presets/seamark/mooring.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-horn_cleat", - "fields": [ - "ref", - "operator", - "seamark/mooring/category", - "seamark/type" - ], - "geometry": [ - "point" - ], - "terms": [ - "dolphin", - "pile", - "bollard", - "buoy", - "post" - ], - "tags": { - "seamark:type": "mooring" - }, - "name": "Mooring" -} diff --git a/data/presets/presets/shop.json b/data/presets/presets/shop.json deleted file mode 100644 index b821da2b16..0000000000 --- a/data/presets/presets/shop.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "icon": "maki-shop", - "fields": [ - "name", - "shop", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19", - "payment_multi", - "phone", - "website" - ], - "moreFields": [ - "air_conditioning", - "brand", - "building/levels_building", - "currency_multi", - "ele", - "email", - "fax", - "gnis/feature_id", - "height_building", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "not/name", - "ref/vatin", - "second_hand", - "stroller", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "*" - }, - "terms": [], - "name": "Shop" -} diff --git a/data/presets/presets/shop/_boutique.json b/data/presets/presets/shop/_boutique.json deleted file mode 100644 index 63de468fa6..0000000000 --- a/data/presets/presets/shop/_boutique.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-shop", - "fields": [ - "name", - "clothes", - "{shop}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "boutique" - }, - "searchable": false, - "name": "Boutique" -} diff --git a/data/presets/presets/shop/_fashion.json b/data/presets/presets/shop/_fashion.json deleted file mode 100644 index 44769b8868..0000000000 --- a/data/presets/presets/shop/_fashion.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-shop", - "fields": [ - "name", - "clothes", - "{shop}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "fashion" - }, - "searchable": false, - "name": "Fashion Store" -} diff --git a/data/presets/presets/shop/_vacant.json b/data/presets/presets/shop/_vacant.json deleted file mode 100644 index f31d0c5560..0000000000 --- a/data/presets/presets/shop/_vacant.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-shop", - "fields": [ - "name", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "vacant" - }, - "name": "Vacant Shop", - "searchable": false -} diff --git a/data/presets/presets/shop/agrarian.json b/data/presets/presets/shop/agrarian.json deleted file mode 100644 index 7504257805..0000000000 --- a/data/presets/presets/shop/agrarian.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "fas-tractor", - "fields": [ - "{shop}", - "agrarian" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "agricultural inputs", - "agricultural machines", - "seeds", - "pesticides", - "fertilizer", - "agricultural tools" - ], - "tags": { - "shop": "agrarian" - }, - "name": "Farm Supply Shop" -} diff --git a/data/presets/presets/shop/alcohol.json b/data/presets/presets/shop/alcohol.json deleted file mode 100644 index c93ab37f4e..0000000000 --- a/data/presets/presets/shop/alcohol.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-wine-bottle", - "fields": [ - "{shop}", - "drive_through" - ], - "moreFields": [ - "{shop}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "alcohol", - "beer", - "booze", - "wine" - ], - "tags": { - "shop": "alcohol" - }, - "name": "Liquor Store" -} diff --git a/data/presets/presets/shop/anime.json b/data/presets/presets/shop/anime.json deleted file mode 100644 index b8fcaf8c99..0000000000 --- a/data/presets/presets/shop/anime.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "fas-dragon", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "anime" - }, - "terms": [ - "manga", - "japan", - "cosplay", - "figurine", - "dakimakura" - ], - "name": "Anime / Manga Shop" -} diff --git a/data/presets/presets/shop/antiques.json b/data/presets/presets/shop/antiques.json deleted file mode 100644 index b8682ca1ea..0000000000 --- a/data/presets/presets/shop/antiques.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-furniture", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "antiques" - }, - "name": "Antiques Shop" -} diff --git a/data/presets/presets/shop/appliance.json b/data/presets/presets/shop/appliance.json deleted file mode 100644 index 2cb32ad553..0000000000 --- a/data/presets/presets/shop/appliance.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "temaki-laundry", - "geometry": [ - "point", - "area" - ], - "terms": [ - "air conditioner", - "appliance", - "dishwasher", - "dryer", - "freezer", - "fridge", - "grill", - "kitchen", - "oven", - "refrigerator", - "stove", - "washer", - "washing machine" - ], - "tags": { - "shop": "appliance" - }, - "name": "Appliance Store" -} diff --git a/data/presets/presets/shop/art.json b/data/presets/presets/shop/art.json deleted file mode 100644 index e35506aa33..0000000000 --- a/data/presets/presets/shop/art.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "terms": [ - "art*", - "exhibit*", - "gallery" - ], - "tags": { - "shop": "art" - }, - "name": "Art Store" -} diff --git a/data/presets/presets/shop/baby_goods.json b/data/presets/presets/shop/baby_goods.json deleted file mode 100644 index 7b5a076e4c..0000000000 --- a/data/presets/presets/shop/baby_goods.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-baby-carriage", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "baby_goods" - }, - "name": "Baby Goods Store" -} diff --git a/data/presets/presets/shop/bag.json b/data/presets/presets/shop/bag.json deleted file mode 100644 index 85016dbccf..0000000000 --- a/data/presets/presets/shop/bag.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-suitcase-rolling", - "geometry": [ - "point", - "area" - ], - "terms": [ - "handbag", - "purse" - ], - "tags": { - "shop": "bag" - }, - "name": "Bag/Luggage Store" -} diff --git a/data/presets/presets/shop/bakery.json b/data/presets/presets/shop/bakery.json deleted file mode 100644 index 5c51c5b893..0000000000 --- a/data/presets/presets/shop/bakery.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-bakery", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "bakery" - }, - "terms": [ - "bread", - "cakes", - "rolls" - ], - "name": "Bakery" -} diff --git a/data/presets/presets/shop/bathroom_furnishing.json b/data/presets/presets/shop/bathroom_furnishing.json deleted file mode 100644 index 4b332b8a89..0000000000 --- a/data/presets/presets/shop/bathroom_furnishing.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-bath", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "bathroom_furnishing" - }, - "name": "Bathroom Furnishing Store" -} diff --git a/data/presets/presets/shop/beauty.json b/data/presets/presets/shop/beauty.json deleted file mode 100644 index d16863034a..0000000000 --- a/data/presets/presets/shop/beauty.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-lipstick", - "fields": [ - "{shop}", - "beauty" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "spa", - "salon", - "tanning" - ], - "tags": { - "shop": "beauty" - }, - "name": "Beauty Shop" -} diff --git a/data/presets/presets/shop/beauty/nails.json b/data/presets/presets/shop/beauty/nails.json deleted file mode 100644 index 8e5f4143da..0000000000 --- a/data/presets/presets/shop/beauty/nails.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-polished_nail", - "geometry": [ - "point", - "area" - ], - "terms": [ - "manicure", - "pedicure" - ], - "tags": { - "shop": "beauty", - "beauty": "nails" - }, - "reference": { - "key": "shop", - "value": "beauty" - }, - "name": "Nail Salon" -} diff --git a/data/presets/presets/shop/beauty/tanning.json b/data/presets/presets/shop/beauty/tanning.json deleted file mode 100644 index 454e4b88d8..0000000000 --- a/data/presets/presets/shop/beauty/tanning.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-tanning", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "beauty", - "beauty": "tanning" - }, - "reference": { - "key": "leisure", - "value": "tanning_salon" - }, - "name": "Tanning Salon" -} diff --git a/data/presets/presets/shop/bed.json b/data/presets/presets/shop/bed.json deleted file mode 100644 index 9dc7445837..0000000000 --- a/data/presets/presets/shop/bed.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-lodging", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "bed" - }, - "name": "Bedding/Mattress Store" -} diff --git a/data/presets/presets/shop/beverages.json b/data/presets/presets/shop/beverages.json deleted file mode 100644 index 781c775073..0000000000 --- a/data/presets/presets/shop/beverages.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-bottles", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "beverages" - }, - "terms": [ - "drinks" - ], - "name": "Beverage Store" -} diff --git a/data/presets/presets/shop/bicycle.json b/data/presets/presets/shop/bicycle.json deleted file mode 100644 index 48eba438a0..0000000000 --- a/data/presets/presets/shop/bicycle.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-bicycle", - "fields": [ - "{shop}", - "service/bicycle" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bike", - "repair", - "tricycle", - "unicycle" - ], - "tags": { - "shop": "bicycle" - }, - "name": "Bicycle Shop" -} diff --git a/data/presets/presets/shop/boat.json b/data/presets/presets/shop/boat.json deleted file mode 100644 index 64f080a597..0000000000 --- a/data/presets/presets/shop/boat.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-boat", - "geometry": [ - "point", - "area" - ], - "terms": [ - "fishing boat", - "jetski", - "motorboat", - "rowboat", - "sailboat", - "vessel", - "watercraft" - ], - "tags": { - "shop": "boat" - }, - "name": "Boat Store" -} diff --git a/data/presets/presets/shop/bookmaker.json b/data/presets/presets/shop/bookmaker.json deleted file mode 100644 index 7b0541399a..0000000000 --- a/data/presets/presets/shop/bookmaker.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-money_hand", - "moreFields": [ - "{shop}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "bookmaker" - }, - "terms": [ - "betting", - "bookie", - "gamble", - "gambling", - "turf accountant" - ], - "name": "Bookmaker" -} diff --git a/data/presets/presets/shop/books.json b/data/presets/presets/shop/books.json deleted file mode 100644 index 48d51ec77c..0000000000 --- a/data/presets/presets/shop/books.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-book", - "fields": [ - "{shop}", - "internet_access" - ], - "moreFields": [ - "{shop}", - "internet_access/fee", - "internet_access/ssid" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "books" - }, - "name": "Book Store" -} diff --git a/data/presets/presets/shop/brewing_supplies.json b/data/presets/presets/shop/brewing_supplies.json deleted file mode 100644 index 3983f711ad..0000000000 --- a/data/presets/presets/shop/brewing_supplies.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-storage_fermenter", - "geometry": [ - "point", - "area" - ], - "terms": [ - "brew shop", - "homebrew supply store" - ], - "tags": { - "shop": "brewing_supplies" - }, - "name": "Brewing Supply Store" -} diff --git a/data/presets/presets/shop/butcher.json b/data/presets/presets/shop/butcher.json deleted file mode 100644 index de2e3f4374..0000000000 --- a/data/presets/presets/shop/butcher.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-cleaver", - "geometry": [ - "point", - "area" - ], - "terms": [ - "chicken", - "beef", - "lamb", - "meat", - "pork" - ], - "tags": { - "shop": "butcher" - }, - "name": "Butcher" -} diff --git a/data/presets/presets/shop/camera.json b/data/presets/presets/shop/camera.json deleted file mode 100644 index 3e368f7962..0000000000 --- a/data/presets/presets/shop/camera.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "fas-camera-retro", - "geometry": [ - "point", - "area" - ], - "terms": [ - "camera", - "film", - "lens", - "photo" - ], - "tags": { - "shop": "camera" - }, - "name": "Camera Equipment Store" -} diff --git a/data/presets/presets/shop/candles.json b/data/presets/presets/shop/candles.json deleted file mode 100644 index d20711d78a..0000000000 --- a/data/presets/presets/shop/candles.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-burn", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "candles" - }, - "terms": [ - "wax" - ], - "name": "Candle Shop" -} diff --git a/data/presets/presets/shop/cannabis.json b/data/presets/presets/shop/cannabis.json deleted file mode 100644 index 7143a28623..0000000000 --- a/data/presets/presets/shop/cannabis.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "fas-cannabis", - "moreFields": [ - "{shop}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "420", - "marijuana", - "pot", - "reefer", - "weed" - ], - "tags": { - "shop": "cannabis" - }, - "name": "Cannabis Shop" -} diff --git a/data/presets/presets/shop/car.json b/data/presets/presets/shop/car.json deleted file mode 100644 index 32a504b6e3..0000000000 --- a/data/presets/presets/shop/car.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-car", - "fields": [ - "name", - "brand", - "{shop}", - "second_hand", - "service/vehicle" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "automobile", - "automotive" - ], - "tags": { - "shop": "car" - }, - "name": "Car Dealership" -} diff --git a/data/presets/presets/shop/car/second_hand.json b/data/presets/presets/shop/car/second_hand.json deleted file mode 100644 index 5ebfbd87c5..0000000000 --- a/data/presets/presets/shop/car/second_hand.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-car", - "geometry": [ - "point", - "area" - ], - "terms": [ - "automobile", - "automotive" - ], - "tags": { - "shop": "car", - "second_hand": "only" - }, - "name": "Used Car Dealership" -} diff --git a/data/presets/presets/shop/car_parts.json b/data/presets/presets/shop/car_parts.json deleted file mode 100644 index ad372260d5..0000000000 --- a/data/presets/presets/shop/car_parts.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-car-battery", - "geometry": [ - "point", - "area" - ], - "terms": [ - "automobile", - "automotive" - ], - "tags": { - "shop": "car_parts" - }, - "name": "Car Parts Store" -} diff --git a/data/presets/presets/shop/car_repair.json b/data/presets/presets/shop/car_repair.json deleted file mode 100644 index f6225dfd7f..0000000000 --- a/data/presets/presets/shop/car_repair.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-car-repair", - "fields": [ - "{shop}", - "service/vehicle" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "auto mechanic", - "automechanic", - "automobile", - "automotive", - "garage", - "inspection", - "oil change", - "service" - ], - "tags": { - "shop": "car_repair" - }, - "name": "Car Repair Shop" -} diff --git a/data/presets/presets/shop/caravan.json b/data/presets/presets/shop/caravan.json deleted file mode 100644 index 8a9cf5ed90..0000000000 --- a/data/presets/presets/shop/caravan.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-camper_trailer", - "fields": [ - "name", - "brand", - "{shop}", - "second_hand", - "service/vehicle" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "caravan" - }, - "terms": [ - "auto", - "camper", - "recreational vehicle" - ], - "name": "RV Dealership" -} diff --git a/data/presets/presets/shop/carpet.json b/data/presets/presets/shop/carpet.json deleted file mode 100644 index 3f7c23a007..0000000000 --- a/data/presets/presets/shop/carpet.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-tape", - "geometry": [ - "point", - "area" - ], - "terms": [ - "rug" - ], - "tags": { - "shop": "carpet" - }, - "name": "Carpet Store" -} diff --git a/data/presets/presets/shop/catalogue.json b/data/presets/presets/shop/catalogue.json deleted file mode 100644 index 815dcffa68..0000000000 --- a/data/presets/presets/shop/catalogue.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "catalogue" - }, - "name": "Catalog Shop" -} diff --git a/data/presets/presets/shop/charity.json b/data/presets/presets/shop/charity.json deleted file mode 100644 index 051577cc17..0000000000 --- a/data/presets/presets/shop/charity.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-shop", - "fields": [ - "{shop}", - "second_hand" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "thrift", - "op shop", - "nonprofit" - ], - "tags": { - "shop": "charity" - }, - "name": "Charity Store" -} diff --git a/data/presets/presets/shop/cheese.json b/data/presets/presets/shop/cheese.json deleted file mode 100644 index e872498bdc..0000000000 --- a/data/presets/presets/shop/cheese.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-cheese", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "cheese" - }, - "name": "Cheese Store" -} diff --git a/data/presets/presets/shop/chemist.json b/data/presets/presets/shop/chemist.json deleted file mode 100644 index 287d7a13a3..0000000000 --- a/data/presets/presets/shop/chemist.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "fas-shopping-basket", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "chemist" - }, - "terms": [ - "apothecary", - "beauty", - "drug store", - "drugstore", - "gift", - "hair", - "med*", - "pharmacy", - "prescription", - "tooth" - ], - "name": "Drugstore" -} diff --git a/data/presets/presets/shop/chocolate.json b/data/presets/presets/shop/chocolate.json deleted file mode 100644 index df2b9b4386..0000000000 --- a/data/presets/presets/shop/chocolate.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-confectionery", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "chocolate" - }, - "terms": [ - "cocoa" - ], - "name": "Chocolate Store" -} diff --git a/data/presets/presets/shop/clothes.json b/data/presets/presets/shop/clothes.json deleted file mode 100644 index de623febc5..0000000000 --- a/data/presets/presets/shop/clothes.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "icon": "maki-clothing-store", - "fields": [ - "name", - "clothes", - "{shop}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "clothes" - }, - "terms": [ - "blouses", - "boutique", - "bras", - "clothes", - "dresses", - "fashion", - "pants", - "shirts", - "shorts", - "skirts", - "slacks", - "socks", - "suits", - "underwear" - ], - "name": "Clothing Store" -} diff --git a/data/presets/presets/shop/clothes/second_hand.json b/data/presets/presets/shop/clothes/second_hand.json deleted file mode 100644 index 907be1818a..0000000000 --- a/data/presets/presets/shop/clothes/second_hand.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "fas-tshirt", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "clothes", - "second_hand": "only" - }, - "terms": [ - "blouses", - "clothes", - "consignment", - "dresses", - "pants", - "second hand", - "shirts", - "shorts", - "skirts", - "slacks", - "suits", - "used" - ], - "name": "Secondhand Clothing Store" -} diff --git a/data/presets/presets/shop/clothes/underwear.json b/data/presets/presets/shop/clothes/underwear.json deleted file mode 100644 index 65b1cb55c3..0000000000 --- a/data/presets/presets/shop/clothes/underwear.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-clothing-store", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "clothes", - "clothes": "underwear" - }, - "reference": { - "key": "clothes", - "value": "underwear" - }, - "terms": [ - "boutique", - "bras", - "brassieres", - "briefs", - "boxers", - "fashion", - "lingerie", - "panties", - "slips", - "socks", - "stockings", - "underclothes", - "undergarments", - "underpants", - "undies" - ], - "name": "Underwear Store" -} diff --git a/data/presets/presets/shop/clothes/wedding.json b/data/presets/presets/shop/clothes/wedding.json deleted file mode 100644 index 4bfc896f5e..0000000000 --- a/data/presets/presets/shop/clothes/wedding.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-gown", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "clothes", - "clothes": "wedding" - }, - "reference": { - "key": "clothes", - "value": "wedding" - }, - "terms": [ - "boutique", - "bridal", - "bride", - "bridegroom", - "bridesmaid", - "groom", - "groomsman", - "tuxedo", - "wedding dress", - "wedding gown" - ], - "name": "Wedding Clothes Store" -} diff --git a/data/presets/presets/shop/coffee.json b/data/presets/presets/shop/coffee.json deleted file mode 100644 index 6c7e2a0db5..0000000000 --- a/data/presets/presets/shop/coffee.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-coffee", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "coffee" - }, - "name": "Coffee Store" -} diff --git a/data/presets/presets/shop/collector.json b/data/presets/presets/shop/collector.json deleted file mode 100644 index a1f4ac4652..0000000000 --- a/data/presets/presets/shop/collector.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "icon": "fas-th", - "fields": [ - "name", - "collector", - "{shop}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "antiques", - "coins", - "collection", - "collectors", - "comics", - "dolls", - "figurines", - "numismatics", - "philately", - "stamps", - "thrift" - ], - "tags": { - "shop": "collector" - }, - "name": "Collectibles Shop" -} diff --git a/data/presets/presets/shop/computer.json b/data/presets/presets/shop/computer.json deleted file mode 100644 index ede8228190..0000000000 --- a/data/presets/presets/shop/computer.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "fas-laptop", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "computer" - }, - "terms": [ - "desktop", - "laptop", - "hardware", - "operating system", - "software" - ], - "name": "Computer Store" -} diff --git a/data/presets/presets/shop/confectionery.json b/data/presets/presets/shop/confectionery.json deleted file mode 100644 index cd64772200..0000000000 --- a/data/presets/presets/shop/confectionery.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-confectionery", - "geometry": [ - "point", - "area" - ], - "terms": [ - "sweet" - ], - "tags": { - "shop": "confectionery" - }, - "name": "Candy Store" -} diff --git a/data/presets/presets/shop/convenience.json b/data/presets/presets/shop/convenience.json deleted file mode 100644 index bb77986b17..0000000000 --- a/data/presets/presets/shop/convenience.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-shopping-basket", - "moreFields": [ - "{shop}", - "organic" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "convenience" - }, - "name": "Convenience Store" -} diff --git a/data/presets/presets/shop/copyshop.json b/data/presets/presets/shop/copyshop.json deleted file mode 100644 index 79f60f8d92..0000000000 --- a/data/presets/presets/shop/copyshop.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-print", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "copyshop" - }, - "terms": [ - "print", - "scan" - ], - "name": "Copy Store" -} diff --git a/data/presets/presets/shop/cosmetics.json b/data/presets/presets/shop/cosmetics.json deleted file mode 100644 index 76e22ca1a0..0000000000 --- a/data/presets/presets/shop/cosmetics.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-lipstick", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "cosmetics" - }, - "terms": [ - "make-up", - "makeup" - ], - "name": "Cosmetics Store" -} diff --git a/data/presets/presets/shop/country_store.json b/data/presets/presets/shop/country_store.json deleted file mode 100644 index e4701b4905..0000000000 --- a/data/presets/presets/shop/country_store.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-hat-cowboy-side", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "country_store" - }, - "name": "Country Store" -} diff --git a/data/presets/presets/shop/craft.json b/data/presets/presets/shop/craft.json deleted file mode 100644 index a5b767bb3f..0000000000 --- a/data/presets/presets/shop/craft.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "fas-cut", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "craft" - }, - "terms": [ - "art*", - "paint*", - "frame", - "hobby" - ], - "name": "Arts & Crafts Store" -} diff --git a/data/presets/presets/shop/curtain.json b/data/presets/presets/shop/curtain.json deleted file mode 100644 index b7a6bc06d9..0000000000 --- a/data/presets/presets/shop/curtain.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-curtains", - "geometry": [ - "point", - "area" - ], - "terms": [ - "drape*", - "window" - ], - "tags": { - "shop": "curtain" - }, - "name": "Curtain Store" -} diff --git a/data/presets/presets/shop/dairy.json b/data/presets/presets/shop/dairy.json deleted file mode 100644 index b00b172709..0000000000 --- a/data/presets/presets/shop/dairy.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "fas-cheese", - "geometry": [ - "point", - "area" - ], - "terms": [ - "milk", - "egg", - "cheese" - ], - "tags": { - "shop": "dairy" - }, - "name": "Dairy Store" -} diff --git a/data/presets/presets/shop/deli.json b/data/presets/presets/shop/deli.json deleted file mode 100644 index 2db0920539..0000000000 --- a/data/presets/presets/shop/deli.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-meat", - "geometry": [ - "point", - "area" - ], - "terms": [ - "lunch", - "meat", - "sandwich" - ], - "tags": { - "shop": "deli" - }, - "name": "Deli" -} diff --git a/data/presets/presets/shop/department_store.json b/data/presets/presets/shop/department_store.json deleted file mode 100644 index f23ccd3828..0000000000 --- a/data/presets/presets/shop/department_store.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "department_store" - }, - "name": "Department Store" -} diff --git a/data/presets/presets/shop/doityourself.json b/data/presets/presets/shop/doityourself.json deleted file mode 100644 index da3a2b966f..0000000000 --- a/data/presets/presets/shop/doityourself.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "doityourself" - }, - "terms": [ - "craft", - "diy", - "do it yourself", - "hardware", - "home improvement", - "tools" - ], - "name": "DIY Store" -} diff --git a/data/presets/presets/shop/doors.json b/data/presets/presets/shop/doors.json deleted file mode 100644 index f56f217151..0000000000 --- a/data/presets/presets/shop/doors.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-door-open", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "doors" - }, - "name": "Door Shop" -} \ No newline at end of file diff --git a/data/presets/presets/shop/dry_cleaning.json b/data/presets/presets/shop/dry_cleaning.json deleted file mode 100644 index 43a8c5f7e6..0000000000 --- a/data/presets/presets/shop/dry_cleaning.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-clothes_hanger", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "dry_cleaning" - }, - "name": "Dry Cleaner" -} diff --git a/data/presets/presets/shop/e-cigarette.json b/data/presets/presets/shop/e-cigarette.json deleted file mode 100644 index 8773cf8be6..0000000000 --- a/data/presets/presets/shop/e-cigarette.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-shop", - "moreFields": [ - "{shop}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "e-cigarette" - }, - "terms": [ - "electronic", - "vape", - "vaping", - "vapor" - ], - "name": "E-Cigarette Shop" -} diff --git a/data/presets/presets/shop/electrical.json b/data/presets/presets/shop/electrical.json deleted file mode 100644 index 55564646f2..0000000000 --- a/data/presets/presets/shop/electrical.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-power", - "geometry": [ - "point", - "area" - ], - "terms": [ - "cable", - "electric", - "fan", - "LED", - "lighting", - "power", - "wire" - ], - "tags": { - "shop": "electrical" - }, - "name": "Electrical Equipment Store" -} diff --git a/data/presets/presets/shop/electronics.json b/data/presets/presets/shop/electronics.json deleted file mode 100644 index 06813e10c2..0000000000 --- a/data/presets/presets/shop/electronics.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "fas-plug", - "geometry": [ - "point", - "area" - ], - "terms": [ - "appliance", - "audio", - "blueray", - "camera", - "computer", - "dvd", - "home theater", - "radio", - "speaker", - "tv", - "video" - ], - "tags": { - "shop": "electronics" - }, - "name": "Electronics Store" -} diff --git a/data/presets/presets/shop/erotic.json b/data/presets/presets/shop/erotic.json deleted file mode 100644 index cfa6060d06..0000000000 --- a/data/presets/presets/shop/erotic.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-shop", - "fields": [ - "{shop}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "sex", - "porn" - ], - "tags": { - "shop": "erotic" - }, - "name": "Erotic Store" -} diff --git a/data/presets/presets/shop/erotic/lgbtq.json b/data/presets/presets/shop/erotic/lgbtq.json deleted file mode 100644 index 4cb57ca3ba..0000000000 --- a/data/presets/presets/shop/erotic/lgbtq.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "terms": [ - "sex", - "porn" - ], - "tags": { - "shop": "erotic", - "lgbtq": "primary" - }, - "name": "LGBTQ+ Erotic Store" -} diff --git a/data/presets/presets/shop/fabric.json b/data/presets/presets/shop/fabric.json deleted file mode 100644 index 341aee7827..0000000000 --- a/data/presets/presets/shop/fabric.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-tape", - "geometry": [ - "point", - "area" - ], - "terms": [ - "sew" - ], - "tags": { - "shop": "fabric" - }, - "name": "Fabric Store" -} diff --git a/data/presets/presets/shop/farm.json b/data/presets/presets/shop/farm.json deleted file mode 100644 index 30053bb771..0000000000 --- a/data/presets/presets/shop/farm.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-apple-alt", - "fields": [ - "{shop}", - "organic" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "baked goods", - "farm shop", - "farm stand", - "fresh food", - "fruits", - "greengrocer", - "organics", - "vegetables" - ], - "tags": { - "shop": "farm" - }, - "name": "Produce Stand" -} diff --git a/data/presets/presets/shop/fashion_accessories.json b/data/presets/presets/shop/fashion_accessories.json deleted file mode 100644 index 3ba61db25b..0000000000 --- a/data/presets/presets/shop/fashion_accessories.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "temaki-fashion_accessories", - "fields": [ - "name", - "clothes", - "{shop}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "fashion_accessories" - }, - "terms": [ - "bag", - "cologne", - "fragrance", - "hat", - "jewellery", - "purfume", - "purse", - "scarf", - "sunglasses", - "umbrella", - "wallet", - "watch" - ], - "name": "Fashion Accessories Store" -} diff --git a/data/presets/presets/shop/fireplace.json b/data/presets/presets/shop/fireplace.json deleted file mode 100644 index 05bd77c214..0000000000 --- a/data/presets/presets/shop/fireplace.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-fireplace", - "geometry": [ - "point", - "area" - ], - "terms": [ - "fireplace", - "stove", - "masonry heater" - ], - "tags": { - "shop": "fireplace" - }, - "name": "Fireplace Store" -} diff --git a/data/presets/presets/shop/fishing.json b/data/presets/presets/shop/fishing.json deleted file mode 100644 index d1264b2163..0000000000 --- a/data/presets/presets/shop/fishing.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-ice_fishing", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "fishing" - }, - "terms": [ - "bait", - "fishing line", - "flies", - "fly", - "lure", - "reel", - "rod", - "tackle" - ], - "name": "Fishing Shop" -} diff --git a/data/presets/presets/shop/flooring.json b/data/presets/presets/shop/flooring.json deleted file mode 100644 index 52ac5052fe..0000000000 --- a/data/presets/presets/shop/flooring.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "flooring" - }, - "terms": [ - "tile" - ], - "name": "Flooring Supply Shop" -} diff --git a/data/presets/presets/shop/florist.json b/data/presets/presets/shop/florist.json deleted file mode 100644 index ae2b06976f..0000000000 --- a/data/presets/presets/shop/florist.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-florist", - "geometry": [ - "point", - "area" - ], - "terms": [ - "flower" - ], - "tags": { - "shop": "florist" - }, - "name": "Florist" -} diff --git a/data/presets/presets/shop/frame.json b/data/presets/presets/shop/frame.json deleted file mode 100644 index 50f5948f5e..0000000000 --- a/data/presets/presets/shop/frame.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "fas-vector-square", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "frame" - }, - "terms": [ - "art*", - "paint*", - "photo*", - "frame" - ], - "name": "Framing Shop" -} diff --git a/data/presets/presets/shop/frozen_food.json b/data/presets/presets/shop/frozen_food.json deleted file mode 100644 index 450bbcc6c9..0000000000 --- a/data/presets/presets/shop/frozen_food.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "frozen_food" - }, - "name": "Frozen Food Store" -} diff --git a/data/presets/presets/shop/fuel.json b/data/presets/presets/shop/fuel.json deleted file mode 100644 index 3e7012f9c6..0000000000 --- a/data/presets/presets/shop/fuel.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-propane_tank", - "fields": [ - "{shop}", - "fuel_multi" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "fuel" - }, - "name": "Fuel Shop", - "matchScore": 0.5 -} diff --git a/data/presets/presets/shop/funeral_directors.json b/data/presets/presets/shop/funeral_directors.json deleted file mode 100644 index 44cb64dc4b..0000000000 --- a/data/presets/presets/shop/funeral_directors.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-cemetery", - "fields": [ - "{shop}", - "religion", - "denomination" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "undertaker", - "memorial home" - ], - "tags": { - "shop": "funeral_directors" - }, - "name": "Funeral Home" -} diff --git a/data/presets/presets/shop/furniture.json b/data/presets/presets/shop/furniture.json deleted file mode 100644 index c78d70890a..0000000000 --- a/data/presets/presets/shop/furniture.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "fas-couch", - "geometry": [ - "point", - "area" - ], - "terms": [ - "chair", - "sofa", - "table" - ], - "tags": { - "shop": "furniture" - }, - "name": "Furniture Store" -} diff --git a/data/presets/presets/shop/games.json b/data/presets/presets/shop/games.json deleted file mode 100644 index 15a74a5f2f..0000000000 --- a/data/presets/presets/shop/games.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-dice", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "games" - }, - "terms": [ - "board game", - "card game", - "dice game", - "game shop", - "live action role-playing game", - "miniatures wargame", - "strategy game" - ], - "name": "Tabletop Game Store" -} diff --git a/data/presets/presets/shop/garden_centre.json b/data/presets/presets/shop/garden_centre.json deleted file mode 100644 index edd4817f83..0000000000 --- a/data/presets/presets/shop/garden_centre.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-garden-centre", - "geometry": [ - "point", - "area" - ], - "terms": [ - "landscape", - "mulch", - "shrub", - "tree" - ], - "tags": { - "shop": "garden_centre" - }, - "name": "Garden Center" -} diff --git a/data/presets/presets/shop/gas.json b/data/presets/presets/shop/gas.json deleted file mode 100644 index f13de04a73..0000000000 --- a/data/presets/presets/shop/gas.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-propane_tank", - "geometry": [ - "point", - "area" - ], - "terms": [ - "cng", - "lpg", - "natural gas", - "propane", - "refill", - "tank" - ], - "tags": { - "shop": "gas" - }, - "name": "Bottled Gas Shop" -} diff --git a/data/presets/presets/shop/general.json b/data/presets/presets/shop/general.json deleted file mode 100644 index 293b1e78fd..0000000000 --- a/data/presets/presets/shop/general.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "general" - }, - "terms": [ - "village shop" - ], - "name": "General Store" -} diff --git a/data/presets/presets/shop/gift.json b/data/presets/presets/shop/gift.json deleted file mode 100644 index d53afbd508..0000000000 --- a/data/presets/presets/shop/gift.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-gift", - "geometry": [ - "point", - "area" - ], - "terms": [ - "souvenir" - ], - "tags": { - "shop": "gift" - }, - "name": "Gift Shop" -} diff --git a/data/presets/presets/shop/greengrocer.json b/data/presets/presets/shop/greengrocer.json deleted file mode 100644 index adcc27c66e..0000000000 --- a/data/presets/presets/shop/greengrocer.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-carrot", - "fields": [ - "{shop}", - "organic" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "fruit", - "produce", - "vegetable" - ], - "tags": { - "shop": "greengrocer" - }, - "name": "Greengrocer" -} diff --git a/data/presets/presets/shop/hairdresser.json b/data/presets/presets/shop/hairdresser.json deleted file mode 100644 index e718ce2c67..0000000000 --- a/data/presets/presets/shop/hairdresser.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-beauty_salon", - "geometry": [ - "point", - "area" - ], - "terms": [ - "barber" - ], - "tags": { - "shop": "hairdresser" - }, - "name": "Hairdresser" -} diff --git a/data/presets/presets/shop/hairdresser_supply.json b/data/presets/presets/shop/hairdresser_supply.json deleted file mode 100644 index 3b16dab806..0000000000 --- a/data/presets/presets/shop/hairdresser_supply.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-hair_care", - "geometry": [ - "point", - "area" - ], - "terms": [ - "barber", - "shampoo", - "conditioner" - ], - "tags": { - "shop": "hairdresser_supply" - }, - "name": "Hairdresser Supply Store" -} diff --git a/data/presets/presets/shop/hardware.json b/data/presets/presets/shop/hardware.json deleted file mode 100644 index cd210fe620..0000000000 --- a/data/presets/presets/shop/hardware.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "hardware" - }, - "terms": [ - "craft", - "diy", - "do it yourself", - "hardware", - "home improvement", - "tools" - ], - "name": "Hardware Store" -} diff --git a/data/presets/presets/shop/health_food.json b/data/presets/presets/shop/health_food.json deleted file mode 100644 index 762ac75eba..0000000000 --- a/data/presets/presets/shop/health_food.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "terms": [ - "wholefood", - "vitamins", - "vegetarian", - "vegan" - ], - "tags": { - "shop": "health_food" - }, - "name": "Health Food Shop" -} diff --git a/data/presets/presets/shop/hearing_aids.json b/data/presets/presets/shop/hearing_aids.json deleted file mode 100644 index 1cab5caa11..0000000000 --- a/data/presets/presets/shop/hearing_aids.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-hearing_aid", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "hearing_aids" - }, - "name": "Hearing Aids Store" -} diff --git a/data/presets/presets/shop/herbalist.json b/data/presets/presets/shop/herbalist.json deleted file mode 100644 index 49f1b04070..0000000000 --- a/data/presets/presets/shop/herbalist.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-leaf", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "herbalist" - }, - "name": "Herbalist" -} diff --git a/data/presets/presets/shop/hifi.json b/data/presets/presets/shop/hifi.json deleted file mode 100644 index 4c8b7b9a36..0000000000 --- a/data/presets/presets/shop/hifi.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-speaker", - "geometry": [ - "point", - "area" - ], - "terms": [ - "audio", - "hi-fi", - "high fidelity", - "stereo", - "video" - ], - "tags": { - "shop": "hifi" - }, - "name": "Hifi Store" -} diff --git a/data/presets/presets/shop/hobby.json b/data/presets/presets/shop/hobby.json deleted file mode 100644 index 2d06d06cad..0000000000 --- a/data/presets/presets/shop/hobby.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "fas-dragon", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "hobby" - }, - "terms": [ - "manga", - "figurine", - "model" - ], - "name": "Hobby Shop" -} diff --git a/data/presets/presets/shop/household_linen.json b/data/presets/presets/shop/household_linen.json deleted file mode 100644 index 083454f128..0000000000 --- a/data/presets/presets/shop/household_linen.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-cloth", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "household_linen" - }, - "terms": [ - "bedspreads", - "blankets", - "domestic cloths", - "curtains", - "handkerchieves", - "napkins", - "pillow cases", - "robes", - "sheets", - "towels" - ], - "name": "Household Linen Shop" -} diff --git a/data/presets/presets/shop/houseware.json b/data/presets/presets/shop/houseware.json deleted file mode 100644 index 487153cd71..0000000000 --- a/data/presets/presets/shop/houseware.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "fas-blender", - "geometry": [ - "point", - "area" - ], - "terms": [ - "home", - "household", - "kitchenware" - ], - "tags": { - "shop": "houseware" - }, - "name": "Houseware Store" -} diff --git a/data/presets/presets/shop/hunting.json b/data/presets/presets/shop/hunting.json deleted file mode 100644 index 4b31a741fd..0000000000 --- a/data/presets/presets/shop/hunting.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-bow_and_arrow", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "hunting" - }, - "terms": [ - "arrows", - "bows", - "bullets", - "crossbows", - "rifles", - "traps" - ], - "name": "Hunting Shop" -} diff --git a/data/presets/presets/shop/interior_decoration.json b/data/presets/presets/shop/interior_decoration.json deleted file mode 100644 index b262260670..0000000000 --- a/data/presets/presets/shop/interior_decoration.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "interior_decoration" - }, - "name": "Interior Decoration Store" -} diff --git a/data/presets/presets/shop/jewelry.json b/data/presets/presets/shop/jewelry.json deleted file mode 100644 index e993cd0250..0000000000 --- a/data/presets/presets/shop/jewelry.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-jewelry-store", - "geometry": [ - "point", - "area" - ], - "terms": [ - "bracelet", - "diamond", - "earrings", - "gem", - "gold", - "jeweler", - "jewellery", - "jeweller", - "necklace", - "pins", - "ring", - "silver" - ], - "tags": { - "shop": "jewelry" - }, - "name": "Jewelry Store" -} diff --git a/data/presets/presets/shop/kiosk.json b/data/presets/presets/shop/kiosk.json deleted file mode 100644 index 6a1437d37f..0000000000 --- a/data/presets/presets/shop/kiosk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-store", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "kiosk" - }, - "name": "Kiosk" -} diff --git a/data/presets/presets/shop/kitchen.json b/data/presets/presets/shop/kitchen.json deleted file mode 100644 index d4eb444601..0000000000 --- a/data/presets/presets/shop/kitchen.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-kitchen_sink", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "kitchen" - }, - "terms": [ - "cabinets", - "countertops", - "sinks" - ], - "name": "Kitchen Design Store" -} diff --git a/data/presets/presets/shop/laundry.json b/data/presets/presets/shop/laundry.json deleted file mode 100644 index e6735082e1..0000000000 --- a/data/presets/presets/shop/laundry.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-laundry", - "fields": [ - "{shop}", - "self_service" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "laundry" - }, - "name": "Laundry" -} diff --git a/data/presets/presets/shop/laundry/self_service.json b/data/presets/presets/shop/laundry/self_service.json deleted file mode 100644 index e15727ec88..0000000000 --- a/data/presets/presets/shop/laundry/self_service.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-laundry", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "laundry", - "self_service": "yes" - }, - "terms": [ - "Coin Laundry", - "Laundromat", - "Coin Wash", - "Launderette", - "Washateria" - ], - "name": "Self-Service Laundry" -} diff --git a/data/presets/presets/shop/leather.json b/data/presets/presets/shop/leather.json deleted file mode 100644 index 73a4fd4d7e..0000000000 --- a/data/presets/presets/shop/leather.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-handbag", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "leather" - }, - "name": "Leather Store" -} diff --git a/data/presets/presets/shop/lighting.json b/data/presets/presets/shop/lighting.json deleted file mode 100644 index d2f9629c5f..0000000000 --- a/data/presets/presets/shop/lighting.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-desk_lamp", - "geometry": [ - "point", - "area" - ], - "terms": [ - "fluorescent lighting", - "lamps", - "LEDs", - "light fixtures", - "lightbulbs" - ], - "tags": { - "shop": "lighting" - }, - "name": "Lighting Store" -} diff --git a/data/presets/presets/shop/locksmith.json b/data/presets/presets/shop/locksmith.json deleted file mode 100644 index 553bcfcdaa..0000000000 --- a/data/presets/presets/shop/locksmith.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-key", - "geometry": [ - "point", - "area" - ], - "terms": [ - "key", - "lockpick" - ], - "tags": { - "shop": "locksmith" - }, - "name": "Locksmith" -} diff --git a/data/presets/presets/shop/lottery.json b/data/presets/presets/shop/lottery.json deleted file mode 100644 index 5adf170219..0000000000 --- a/data/presets/presets/shop/lottery.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "fas-ticket-alt", - "moreFields": [ - "{shop}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "lottery" - }, - "terms": [ - "lotto tickets", - "gamble", - "gambling", - "scratch-offs" - ], - "name": "Lottery Shop" -} diff --git a/data/presets/presets/shop/mall.json b/data/presets/presets/shop/mall.json deleted file mode 100644 index ed943cf756..0000000000 --- a/data/presets/presets/shop/mall.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "terms": [ - "shopping" - ], - "tags": { - "shop": "mall" - }, - "name": "Mall" -} diff --git a/data/presets/presets/shop/massage.json b/data/presets/presets/shop/massage.json deleted file mode 100644 index d2abe08221..0000000000 --- a/data/presets/presets/shop/massage.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-spa", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "massage" - }, - "name": "Massage Shop" -} diff --git a/data/presets/presets/shop/medical_supply.json b/data/presets/presets/shop/medical_supply.json deleted file mode 100644 index 8377c66e9b..0000000000 --- a/data/presets/presets/shop/medical_supply.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-crutch", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "medical_supply" - }, - "name": "Medical Supply Store" -} diff --git a/data/presets/presets/shop/military_surplus.json b/data/presets/presets/shop/military_surplus.json deleted file mode 100644 index 6b180074de..0000000000 --- a/data/presets/presets/shop/military_surplus.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-military", - "geometry": [ - "point", - "area" - ], - "terms": [ - "armor", - "army-navy store", - "army surplus", - "navy surplus", - "tactical gear", - "war surplus shop", - "weapons" - ], - "tags": { - "shop": "military_surplus" - }, - "name": "Military Surplus Store" -} diff --git a/data/presets/presets/shop/mobile_phone.json b/data/presets/presets/shop/mobile_phone.json deleted file mode 100644 index 27c4dd5dc6..0000000000 --- a/data/presets/presets/shop/mobile_phone.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-mobile-alt", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "mobile_phone" - }, - "name": "Mobile Phone Store" -} diff --git a/data/presets/presets/shop/model.json b/data/presets/presets/shop/model.json deleted file mode 100644 index f27b3e0606..0000000000 --- a/data/presets/presets/shop/model.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "model" - }, - "terms": [ - "hobby", - "model building", - "model figures", - "model kits", - "model store", - "scale models" - ], - "name": "Model Shop" -} diff --git a/data/presets/presets/shop/money_lender.json b/data/presets/presets/shop/money_lender.json deleted file mode 100644 index a5a37dcd92..0000000000 --- a/data/presets/presets/shop/money_lender.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-money_hand", - "fields": [ - "{shop}", - "currency_multi" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "money_lender" - }, - "name": "Money Lender" -} diff --git a/data/presets/presets/shop/motorcycle.json b/data/presets/presets/shop/motorcycle.json deleted file mode 100644 index f7b90705a9..0000000000 --- a/data/presets/presets/shop/motorcycle.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "fas-motorcycle", - "fields": [ - "name", - "brand", - "{shop}" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "bike" - ], - "tags": { - "shop": "motorcycle" - }, - "name": "Motorcycle Dealership" -} diff --git a/data/presets/presets/shop/motorcycle_repair.json b/data/presets/presets/shop/motorcycle_repair.json deleted file mode 100644 index 13bb316ad1..0000000000 --- a/data/presets/presets/shop/motorcycle_repair.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-motorcycle_repair", - "fields": [ - "{shop}", - "service/vehicle" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "auto", - "bike", - "garage", - "motorcycle", - "repair", - "service" - ], - "tags": { - "shop": "motorcycle_repair" - }, - "name": "Motorcycle Repair Shop" -} diff --git a/data/presets/presets/shop/music.json b/data/presets/presets/shop/music.json deleted file mode 100644 index 0be8aed885..0000000000 --- a/data/presets/presets/shop/music.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-compact-disc", - "geometry": [ - "point", - "area" - ], - "terms": [ - "tape cassettes", - "CDs", - "compact discs", - "vinyl records", - "CD store", - "casette", - "casette store" - ], - "tags": { - "shop": "music" - }, - "name": "Music Store" -} diff --git a/data/presets/presets/shop/musical_instrument.json b/data/presets/presets/shop/musical_instrument.json deleted file mode 100644 index 4d99fed345..0000000000 --- a/data/presets/presets/shop/musical_instrument.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-guitar", - "geometry": [ - "point", - "area" - ], - "terms": [ - "guitar" - ], - "tags": { - "shop": "musical_instrument" - }, - "name": "Musical Instrument Store" -} diff --git a/data/presets/presets/shop/newsagent.json b/data/presets/presets/shop/newsagent.json deleted file mode 100644 index 8f7cc57ac2..0000000000 --- a/data/presets/presets/shop/newsagent.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-newspaper", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "newsagent" - }, - "name": "Newspaper/Magazine Shop" -} diff --git a/data/presets/presets/shop/nutrition_supplements.json b/data/presets/presets/shop/nutrition_supplements.json deleted file mode 100644 index 1199da5dd3..0000000000 --- a/data/presets/presets/shop/nutrition_supplements.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "fas-pills", - "geometry": [ - "point", - "area" - ], - "terms": [ - "health", - "supplement", - "vitamin" - ], - "tags": { - "shop": "nutrition_supplements" - }, - "name": "Nutrition Supplements Store" -} diff --git a/data/presets/presets/shop/optician.json b/data/presets/presets/shop/optician.json deleted file mode 100644 index 4405d8a9c1..0000000000 --- a/data/presets/presets/shop/optician.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-optician", - "geometry": [ - "point", - "area" - ], - "terms": [ - "eye", - "glasses" - ], - "tags": { - "shop": "optician" - }, - "name": "Optician" -} diff --git a/data/presets/presets/shop/outdoor.json b/data/presets/presets/shop/outdoor.json deleted file mode 100644 index c8551ace07..0000000000 --- a/data/presets/presets/shop/outdoor.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-compass", - "fields": [ - "{shop}", - "clothes" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "camping", - "climbing", - "hiking", - "outfitter", - "outdoor equipment", - "outdoor supplies" - ], - "tags": { - "shop": "outdoor" - }, - "name": "Outdoors Store" -} diff --git a/data/presets/presets/shop/outpost.json b/data/presets/presets/shop/outpost.json deleted file mode 100644 index 74cea4cdc8..0000000000 --- a/data/presets/presets/shop/outpost.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "terms": [ - "online", - "pick up", - "pickup" - ], - "tags": { - "shop": "outpost" - }, - "name": "Online Retailer Outpost" -} diff --git a/data/presets/presets/shop/paint.json b/data/presets/presets/shop/paint.json deleted file mode 100644 index a2685fea14..0000000000 --- a/data/presets/presets/shop/paint.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-paint-roller", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "paint" - }, - "name": "Paint Store" -} diff --git a/data/presets/presets/shop/party.json b/data/presets/presets/shop/party.json deleted file mode 100644 index 48ab553790..0000000000 --- a/data/presets/presets/shop/party.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-balloon", - "geometry": [ - "point", - "area" - ], - "terms": [ - "balloons", - "costumes", - "decorations", - "invitations" - ], - "tags": { - "shop": "party" - }, - "name": "Party Supply Store" -} diff --git a/data/presets/presets/shop/pastry.json b/data/presets/presets/shop/pastry.json deleted file mode 100644 index b8595e06c3..0000000000 --- a/data/presets/presets/shop/pastry.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-bakery", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "pastry" - }, - "terms": [ - "patisserie", - "cake shop", - "cakery" - ], - "name": "Pastry Shop" -} diff --git a/data/presets/presets/shop/pawnbroker.json b/data/presets/presets/shop/pawnbroker.json deleted file mode 100644 index 0ce584243f..0000000000 --- a/data/presets/presets/shop/pawnbroker.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-money_hand", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "pawnbroker" - }, - "name": "Pawn Shop" -} diff --git a/data/presets/presets/shop/perfumery.json b/data/presets/presets/shop/perfumery.json deleted file mode 100644 index 1df606a27e..0000000000 --- a/data/presets/presets/shop/perfumery.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-perfume", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "perfumery" - }, - "terms": [ - "cologne", - "fragrance", - "purfume" - ], - "name": "Perfume Store" -} diff --git a/data/presets/presets/shop/pet.json b/data/presets/presets/shop/pet.json deleted file mode 100644 index 4bf517353c..0000000000 --- a/data/presets/presets/shop/pet.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-cat", - "geometry": [ - "point", - "area" - ], - "terms": [ - "animal", - "cat", - "dog", - "fish", - "kitten", - "puppy", - "reptile" - ], - "tags": { - "shop": "pet" - }, - "name": "Pet Store" -} diff --git a/data/presets/presets/shop/pet_grooming.json b/data/presets/presets/shop/pet_grooming.json deleted file mode 100644 index 601c1b54c9..0000000000 --- a/data/presets/presets/shop/pet_grooming.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-pet_grooming", - "geometry": [ - "point", - "area" - ], - "terms": [ - "cat", - "dog" - ], - "tags": { - "shop": "pet_grooming" - }, - "name": "Pet Grooming Store" -} diff --git a/data/presets/presets/shop/photo.json b/data/presets/presets/shop/photo.json deleted file mode 100644 index 60bb2ff9c4..0000000000 --- a/data/presets/presets/shop/photo.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "fas-camera-retro", - "geometry": [ - "point", - "area" - ], - "terms": [ - "camera", - "film", - "lens", - "photo" - ], - "tags": { - "shop": "photo" - }, - "name": "Photography Store" -} diff --git a/data/presets/presets/shop/pottery.json b/data/presets/presets/shop/pottery.json deleted file mode 100644 index 5cbb1af179..0000000000 --- a/data/presets/presets/shop/pottery.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-vase", - "geometry": [ - "point", - "area" - ], - "terms": [ - "ceramic", - "pot", - "vase" - ], - "tags": { - "shop": "pottery" - }, - "name": "Pottery Store" -} diff --git a/data/presets/presets/shop/printer_ink.json b/data/presets/presets/shop/printer_ink.json deleted file mode 100644 index 4c34d4ade8..0000000000 --- a/data/presets/presets/shop/printer_ink.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "fas-print", - "geometry": [ - "point", - "area" - ], - "terms": [ - "copier ink", - "fax ink", - "ink cartridges", - "toner" - ], - "tags": { - "shop": "printer_ink" - }, - "name": "Printer Ink Store" -} diff --git a/data/presets/presets/shop/psychic.json b/data/presets/presets/shop/psychic.json deleted file mode 100644 index 4cbce9fb1e..0000000000 --- a/data/presets/presets/shop/psychic.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-psychic", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "psychic" - }, - "terms": [ - "astrology", - "crystal ball", - "divination", - "fortune teller", - "seer", - "spirit" - ], - "name": "Psychic" -} diff --git a/data/presets/presets/shop/pyrotechnics.json b/data/presets/presets/shop/pyrotechnics.json deleted file mode 100644 index b30667fa64..0000000000 --- a/data/presets/presets/shop/pyrotechnics.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-rocket_firework", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "pyrotechnics" - }, - "terms": [ - "fireworks" - ], - "name": "Fireworks Store" -} diff --git a/data/presets/presets/shop/radiotechnics.json b/data/presets/presets/shop/radiotechnics.json deleted file mode 100644 index 04ac65ff4b..0000000000 --- a/data/presets/presets/shop/radiotechnics.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-microchip", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "radiotechnics" - }, - "terms": [ - "antenna", - "transistor" - ], - "name": "Radio/Electronic Component Store" -} diff --git a/data/presets/presets/shop/religion.json b/data/presets/presets/shop/religion.json deleted file mode 100644 index 5d4c88f2fc..0000000000 --- a/data/presets/presets/shop/religion.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "maki-shop", - "fields": [ - "{shop}", - "religion", - "denomination" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "religion" - }, - "name": "Religious Store" -} diff --git a/data/presets/presets/shop/rental.json b/data/presets/presets/shop/rental.json deleted file mode 100644 index 7d8f9d2ef6..0000000000 --- a/data/presets/presets/shop/rental.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-dolly", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "rental" - }, - "name": "Rental Shop" -} diff --git a/data/presets/presets/shop/scuba_diving.json b/data/presets/presets/shop/scuba_diving.json deleted file mode 100644 index 63a1bcdaab..0000000000 --- a/data/presets/presets/shop/scuba_diving.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-scuba_diving", - "fields": [ - "{shop}", - "scuba_diving" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "diving", - "scuba", - "snorkel" - ], - "tags": { - "shop": "scuba_diving" - }, - "name": "Scuba Diving Shop" -} diff --git a/data/presets/presets/shop/seafood.json b/data/presets/presets/shop/seafood.json deleted file mode 100644 index 421deddfb2..0000000000 --- a/data/presets/presets/shop/seafood.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-fish_cleaning", - "geometry": [ - "point", - "area" - ], - "terms": [ - "fishmonger" - ], - "tags": { - "shop": "seafood" - }, - "name": "Seafood Shop" -} diff --git a/data/presets/presets/shop/second_hand.json b/data/presets/presets/shop/second_hand.json deleted file mode 100644 index f814f4e593..0000000000 --- a/data/presets/presets/shop/second_hand.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-shop", - "fields": [ - "{shop}", - "second_hand" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "secondhand", - "second hand", - "resale", - "thrift", - "used" - ], - "tags": { - "shop": "second_hand" - }, - "name": "Consignment/Thrift Store" -} diff --git a/data/presets/presets/shop/sewing.json b/data/presets/presets/shop/sewing.json deleted file mode 100644 index 377d3caf53..0000000000 --- a/data/presets/presets/shop/sewing.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "temaki-needle_and_spool", - "geometry": [ - "point", - "area" - ], - "terms": [ - "haberdashery" - ], - "tags": { - "shop": "sewing" - }, - "name": "Sewing Supply Shop" -} diff --git a/data/presets/presets/shop/shoe_repair.json b/data/presets/presets/shop/shoe_repair.json deleted file mode 100644 index 600d55924f..0000000000 --- a/data/presets/presets/shop/shoe_repair.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "maki-shoe", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "shoe_repair" - }, - "terms": [ - "cobbler" - ], - "name": "Shoe Repair Shop" -} diff --git a/data/presets/presets/shop/shoes.json b/data/presets/presets/shop/shoes.json deleted file mode 100644 index 1cd2dc7524..0000000000 --- a/data/presets/presets/shop/shoes.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "maki-shoe", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "shoes" - }, - "terms": [ - "boots", - "cleats", - "clogs", - "heels", - "loafers", - "oxfords", - "sneakers" - ], - "name": "Shoe Store" -} diff --git a/data/presets/presets/shop/spices.json b/data/presets/presets/shop/spices.json deleted file mode 100644 index 3352ed85bb..0000000000 --- a/data/presets/presets/shop/spices.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-spice_bottle", - "geometry": [ - "point", - "area" - ], - "terms": [ - "chili", - "cinnamon", - "curry", - "ginger", - "herbs", - "pepper", - "saffron", - "salt", - "spice store", - "spices", - "turmeric", - "wasabi" - ], - "tags": { - "shop": "spices" - }, - "name": "Spice Shop" -} diff --git a/data/presets/presets/shop/sports.json b/data/presets/presets/shop/sports.json deleted file mode 100644 index 6b6d9a059b..0000000000 --- a/data/presets/presets/shop/sports.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-futbol", - "fields": [ - "name", - "operator", - "sport", - "{shop}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "sports" - }, - "terms": [ - "athletics" - ], - "name": "Sporting Goods Store" -} diff --git a/data/presets/presets/shop/stationery.json b/data/presets/presets/shop/stationery.json deleted file mode 100644 index eba3c3395f..0000000000 --- a/data/presets/presets/shop/stationery.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "fas-paperclip", - "geometry": [ - "point", - "area" - ], - "terms": [ - "card", - "paper" - ], - "tags": { - "shop": "stationery" - }, - "name": "Stationery Store" -} diff --git a/data/presets/presets/shop/storage_rental.json b/data/presets/presets/shop/storage_rental.json deleted file mode 100644 index 7190b072d7..0000000000 --- a/data/presets/presets/shop/storage_rental.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-storage_rental", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "storage_rental" - }, - "terms": [ - "device storage", - "garages", - "self storage", - "self-service storage", - "storage lockers", - "storage rental", - "storage units" - ], - "name": "Storage Rental" -} diff --git a/data/presets/presets/shop/supermarket.json b/data/presets/presets/shop/supermarket.json deleted file mode 100644 index 8d42dbfc8a..0000000000 --- a/data/presets/presets/shop/supermarket.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-grocery", - "moreFields": [ - "{shop}", - "diet_multi", - "organic" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "grocery", - "store", - "shop", - "grocery store", - "market", - "food market" - ], - "tags": { - "shop": "supermarket" - }, - "name": "Supermarket" -} diff --git a/data/presets/presets/shop/supermarket/organic.json b/data/presets/presets/shop/supermarket/organic.json deleted file mode 100644 index 2cfa71f01a..0000000000 --- a/data/presets/presets/shop/supermarket/organic.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "maki-grocery", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "supermarket", - "organic": "only" - }, - "reference": { - "key": "organic" - }, - "terms": [ - "natural foods" - ], - "name": "Organic Supermarket" -} diff --git a/data/presets/presets/shop/swimming_pool.json b/data/presets/presets/shop/swimming_pool.json deleted file mode 100644 index 620222d785..0000000000 --- a/data/presets/presets/shop/swimming_pool.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "fas-swimmer", - "geometry": [ - "point", - "area" - ], - "terms": [ - "hot tub equipment store", - "hot tub maintenance store", - "hot tub supply store", - "pool shop", - "pool store", - "swimming pool equipment store", - "swimming pool installation store", - "swimming pool maintenance store", - "swimming pool supply shop" - ], - "tags": { - "shop": "swimming_pool" - }, - "name": "Pool Supply Store" -} diff --git a/data/presets/presets/shop/tailor.json b/data/presets/presets/shop/tailor.json deleted file mode 100644 index 46842b7714..0000000000 --- a/data/presets/presets/shop/tailor.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "temaki-needle_and_spool", - "geometry": [ - "point", - "area" - ], - "terms": [ - "clothes", - "suit" - ], - "tags": { - "shop": "tailor" - }, - "name": "Tailor" -} diff --git a/data/presets/presets/shop/tattoo.json b/data/presets/presets/shop/tattoo.json deleted file mode 100644 index cd90354393..0000000000 --- a/data/presets/presets/shop/tattoo.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "temaki-tattoo_machine", - "moreFields": [ - "{shop}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "tattoo" - }, - "terms": [ - "ink" - ], - "name": "Tattoo Parlor" -} diff --git a/data/presets/presets/shop/tea.json b/data/presets/presets/shop/tea.json deleted file mode 100644 index 1cd06b40cd..0000000000 --- a/data/presets/presets/shop/tea.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-teahouse", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "tea" - }, - "name": "Tea Store" -} diff --git a/data/presets/presets/shop/telecommunication.json b/data/presets/presets/shop/telecommunication.json deleted file mode 100644 index fc1b26c4d3..0000000000 --- a/data/presets/presets/shop/telecommunication.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-telephone", - "geometry": [ - "point", - "area" - ], - "terms": [ - "communication", - "internet service provider", - "isp", - "network", - "telephone", - "voice" - ], - "tags": { - "shop": "telecommunication" - }, - "name": "Telecom Retail Store" -} diff --git a/data/presets/presets/shop/ticket.json b/data/presets/presets/shop/ticket.json deleted file mode 100644 index cd9869d5ee..0000000000 --- a/data/presets/presets/shop/ticket.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-ticket-alt", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "ticket" - }, - "terms": [ - "box office" - ], - "name": "Ticket Seller" -} diff --git a/data/presets/presets/shop/tiles.json b/data/presets/presets/shop/tiles.json deleted file mode 100644 index c974f5e8fb..0000000000 --- a/data/presets/presets/shop/tiles.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tiling", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "tiles" - }, - "name": "Tile Shop" -} diff --git a/data/presets/presets/shop/tobacco.json b/data/presets/presets/shop/tobacco.json deleted file mode 100644 index 2651cc1995..0000000000 --- a/data/presets/presets/shop/tobacco.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-pipe", - "moreFields": [ - "{shop}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "tobacco" - }, - "terms": [ - "cigarettes", - "cigars" - ], - "name": "Tobacco Shop" -} diff --git a/data/presets/presets/shop/tool_hire.json b/data/presets/presets/shop/tool_hire.json deleted file mode 100644 index 60f0b36c81..0000000000 --- a/data/presets/presets/shop/tool_hire.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tools", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "tool_hire" - }, - "name": "Tool Rental" -} diff --git a/data/presets/presets/shop/toys.json b/data/presets/presets/shop/toys.json deleted file mode 100644 index 5245f92ed2..0000000000 --- a/data/presets/presets/shop/toys.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "fas-rocket", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "toys" - }, - "terms": [ - "games" - ], - "name": "Toy Store" -} diff --git a/data/presets/presets/shop/trade.json b/data/presets/presets/shop/trade.json deleted file mode 100644 index 17a0d815a3..0000000000 --- a/data/presets/presets/shop/trade.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "temaki-tools", - "fields": [ - "name", - "trade", - "{shop}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "trade" - }, - "name": "Trade Shop" -} diff --git a/data/presets/presets/shop/travel_agency.json b/data/presets/presets/shop/travel_agency.json deleted file mode 100644 index ec607f6786..0000000000 --- a/data/presets/presets/shop/travel_agency.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "fas-suitcase", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "travel_agency" - }, - "terms": [ - "cruises", - "flights", - "hotels", - "tickets", - "travel packages" - ], - "name": "Travel Agency" -} diff --git a/data/presets/presets/shop/trophy.json b/data/presets/presets/shop/trophy.json deleted file mode 100644 index bb18bd70c5..0000000000 --- a/data/presets/presets/shop/trophy.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "icon": "fas-trophy", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "trophy" - }, - "terms": [ - "awards", - "engravings", - "medals", - "plaques", - "trophy store" - ], - "name": "Trophy Shop" -} diff --git a/data/presets/presets/shop/tyres.json b/data/presets/presets/shop/tyres.json deleted file mode 100644 index aa7ed02ee0..0000000000 --- a/data/presets/presets/shop/tyres.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-tire", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "tyres" - }, - "name": "Tire Store" -} diff --git a/data/presets/presets/shop/vacuum_cleaner.json b/data/presets/presets/shop/vacuum_cleaner.json deleted file mode 100644 index 529ee8588a..0000000000 --- a/data/presets/presets/shop/vacuum_cleaner.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-vacuum", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "vacuum_cleaner" - }, - "name": "Vacuum Cleaner Store" -} diff --git a/data/presets/presets/shop/variety_store.json b/data/presets/presets/shop/variety_store.json deleted file mode 100644 index b5b4a4ccde..0000000000 --- a/data/presets/presets/shop/variety_store.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "variety_store" - }, - "name": "Variety Store" -} diff --git a/data/presets/presets/shop/video.json b/data/presets/presets/shop/video.json deleted file mode 100644 index 3a7000d559..0000000000 --- a/data/presets/presets/shop/video.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-movie_rental", - "moreFields": [ - "{shop}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "DVD", - "VHS", - "video cassette", - "video casette" - ], - "tags": { - "shop": "video" - }, - "name": "Video Store" -} diff --git a/data/presets/presets/shop/video_games.json b/data/presets/presets/shop/video_games.json deleted file mode 100644 index 2745520b75..0000000000 --- a/data/presets/presets/shop/video_games.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-gaming", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "video_games" - }, - "name": "Video Game Store" -} diff --git a/data/presets/presets/shop/watches.json b/data/presets/presets/shop/watches.json deleted file mode 100644 index d073f037da..0000000000 --- a/data/presets/presets/shop/watches.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-watch", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "watches" - }, - "name": "Watches Shop" -} diff --git a/data/presets/presets/shop/water.json b/data/presets/presets/shop/water.json deleted file mode 100644 index 9e8aef243a..0000000000 --- a/data/presets/presets/shop/water.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-water_bottle", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "water" - }, - "name": "Drinking Water Shop" -} diff --git a/data/presets/presets/shop/water_sports.json b/data/presets/presets/shop/water_sports.json deleted file mode 100644 index a05ce2b199..0000000000 --- a/data/presets/presets/shop/water_sports.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "fas-swimmer", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "water_sports" - }, - "name": "Watersport/Swim Shop" -} diff --git a/data/presets/presets/shop/weapons.json b/data/presets/presets/shop/weapons.json deleted file mode 100644 index a4416ac123..0000000000 --- a/data/presets/presets/shop/weapons.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-dagger", - "geometry": [ - "point", - "area" - ], - "terms": [ - "ammo", - "gun", - "knife", - "knives" - ], - "tags": { - "shop": "weapons" - }, - "name": "Weapon Shop" -} diff --git a/data/presets/presets/shop/wholesale.json b/data/presets/presets/shop/wholesale.json deleted file mode 100644 index 922ea03d29..0000000000 --- a/data/presets/presets/shop/wholesale.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-warehouse", - "fields": [ - "{shop}", - "wholesale" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "warehouse club", - "cash and carry" - ], - "tags": { - "shop": "wholesale" - }, - "name": "Wholesale Store" -} diff --git a/data/presets/presets/shop/wigs.json b/data/presets/presets/shop/wigs.json deleted file mode 100644 index 8bd82fbd98..0000000000 --- a/data/presets/presets/shop/wigs.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-shop", - "geometry": [ - "point", - "area" - ], - "terms": [ - "hair extensions", - "hair extentions" - ], - "tags": { - "shop": "wigs" - }, - "name": "Wig Shop" -} diff --git a/data/presets/presets/shop/window_blind.json b/data/presets/presets/shop/window_blind.json deleted file mode 100644 index 7203db8af9..0000000000 --- a/data/presets/presets/shop/window_blind.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "temaki-window", - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "window_blind" - }, - "name": "Window Blind Store" -} diff --git a/data/presets/presets/shop/wine.json b/data/presets/presets/shop/wine.json deleted file mode 100644 index 3ab193ad7f..0000000000 --- a/data/presets/presets/shop/wine.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-alcohol-shop", - "moreFields": [ - "{shop}", - "min_age" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "shop": "wine" - }, - "name": "Wine Shop" -} diff --git a/data/presets/presets/telecom/data_center.json b/data/presets/presets/telecom/data_center.json deleted file mode 100644 index 0b30c95924..0000000000 --- a/data/presets/presets/telecom/data_center.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "fas-server", - "fields": [ - "name", - "ref", - "operator", - "building_area" - ], - "moreFields": [ - "address", - "gnis/feature_id", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "telecom": "data_center" - }, - "terms": [ - "computer systems storage", - "information technology", - "server farm", - "the cloud", - "telecommunications" - ], - "name": "Data Center" -} diff --git a/data/presets/presets/telecom/exchange.json b/data/presets/presets/telecom/exchange.json deleted file mode 100644 index 27e0a88617..0000000000 --- a/data/presets/presets/telecom/exchange.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-cable", - "fields": [ - "ref", - "operator", - "telecom/medium", - "address", - "building_area" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "telecom": "exchange" - }, - "terms": [ - "telecommunications", - "telephone exchange", - "telephone switch" - ], - "name": "Telecom Exchange" -} diff --git a/data/presets/presets/tourism/alpine_hut.json b/data/presets/presets/tourism/alpine_hut.json deleted file mode 100644 index 6042c1d6af..0000000000 --- a/data/presets/presets/tourism/alpine_hut.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-cabin", - "fields": [ - "name", - "operator", - "address", - "building_area", - "internet_access", - "internet_access/fee", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access/ssid", - "phone", - "reservation", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "cabin", - "climbing hut", - "lodge", - "lodging", - "overnight accommodations", - "wilderness hut" - ], - "tags": { - "tourism": "alpine_hut" - }, - "name": "Alpine Hut" -} diff --git a/data/presets/presets/tourism/apartment.json b/data/presets/presets/tourism/apartment.json deleted file mode 100644 index f1bbb82369..0000000000 --- a/data/presets/presets/tourism/apartment.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "icon": "maki-lodging", - "fields": [ - "name", - "operator", - "address", - "building_area", - "rooms", - "internet_access", - "internet_access/fee" - ], - "moreFields": [ - "building/levels_building", - "email", - "fax", - "height_building", - "internet_access/ssid", - "level", - "payment_multi", - "phone", - "reservation", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "apartment" - }, - "terms": [ - "bnb", - "holiday rental", - "lodging", - "overnight accommodations", - "vacation rental" - ], - "name": "Guest Apartment / Condo" -} diff --git a/data/presets/presets/tourism/aquarium.json b/data/presets/presets/tourism/aquarium.json deleted file mode 100644 index 316707d0e2..0000000000 --- a/data/presets/presets/tourism/aquarium.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "maki-aquarium", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "charge_fee", - "email", - "fax", - "fee", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "payment_multi_fee", - "phone", - "ref/vatin", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "fish", - "sea", - "water" - ], - "tags": { - "tourism": "aquarium" - }, - "name": "Aquarium" -} diff --git a/data/presets/presets/tourism/artwork.json b/data/presets/presets/tourism/artwork.json deleted file mode 100644 index 57625ee3d1..0000000000 --- a/data/presets/presets/tourism/artwork.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-art-gallery", - "fields": [ - "name", - "artwork_type", - "artist" - ], - "moreFields": [ - "level", - "material", - "website" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "tourism": "artwork" - }, - "terms": [ - "mural", - "sculpture", - "statue" - ], - "name": "Artwork" -} diff --git a/data/presets/presets/tourism/artwork/bust.json b/data/presets/presets/tourism/artwork/bust.json deleted file mode 100644 index 253dcd313e..0000000000 --- a/data/presets/presets/tourism/artwork/bust.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-user-alt", - "fields": [ - "name", - "artist", - "material", - "inscription" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "tourism": "artwork", - "artwork_type": "bust" - }, - "reference": { - "key": "artwork_type", - "value": "bust" - }, - "terms": [ - "figure" - ], - "name": "Bust" -} diff --git a/data/presets/presets/tourism/artwork/graffiti.json b/data/presets/presets/tourism/artwork/graffiti.json deleted file mode 100644 index 1cffe81386..0000000000 --- a/data/presets/presets/tourism/artwork/graffiti.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-art-gallery", - "fields": [ - "name", - "artist" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "tourism": "artwork", - "artwork_type": "graffiti" - }, - "reference": { - "key": "artwork_type", - "value": "graffiti" - }, - "terms": [ - "Street Artwork", - "Guerrilla Artwork", - "Guerilla Artwork", - "Graffiti Artwork" - ], - "name": "Graffiti" -} diff --git a/data/presets/presets/tourism/artwork/installation.json b/data/presets/presets/tourism/artwork/installation.json deleted file mode 100644 index 5c83e92f2a..0000000000 --- a/data/presets/presets/tourism/artwork/installation.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "temaki-sculpture", - "fields": [ - "name", - "artist" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "tourism": "artwork", - "artwork_type": "installation" - }, - "reference": { - "key": "artwork_type", - "value": "installation" - }, - "terms": [ - "interactive art", - "intervention art", - "modern art" - ], - "name": "Art Installation" -} diff --git a/data/presets/presets/tourism/artwork/mural.json b/data/presets/presets/tourism/artwork/mural.json deleted file mode 100644 index 311f846746..0000000000 --- a/data/presets/presets/tourism/artwork/mural.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-art-gallery", - "fields": [ - "name", - "artist" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "tourism": "artwork", - "artwork_type": "mural" - }, - "reference": { - "key": "artwork_type", - "value": "mural" - }, - "terms": [ - "fresco", - "wall painting" - ], - "name": "Mural" -} diff --git a/data/presets/presets/tourism/artwork/sculpture.json b/data/presets/presets/tourism/artwork/sculpture.json deleted file mode 100644 index 84e679938f..0000000000 --- a/data/presets/presets/tourism/artwork/sculpture.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-sculpture", - "fields": [ - "name", - "artist", - "material" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "tourism": "artwork", - "artwork_type": "sculpture" - }, - "reference": { - "key": "artwork_type", - "value": "sculpture" - }, - "terms": [ - "statue", - "figure", - "carving" - ], - "name": "Sculpture" -} diff --git a/data/presets/presets/tourism/artwork/statue.json b/data/presets/presets/tourism/artwork/statue.json deleted file mode 100644 index 52fd787743..0000000000 --- a/data/presets/presets/tourism/artwork/statue.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "temaki-statue", - "fields": [ - "name", - "artist", - "material" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "tourism": "artwork", - "artwork_type": "statue" - }, - "reference": { - "key": "artwork_type", - "value": "statue" - }, - "terms": [ - "sculpture", - "figure", - "carving" - ], - "name": "Statue" -} diff --git a/data/presets/presets/tourism/attraction.json b/data/presets/presets/tourism/attraction.json deleted file mode 100644 index 26d402fc06..0000000000 --- a/data/presets/presets/tourism/attraction.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-star", - "fields": [ - "name", - "operator", - "address" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "tags": { - "tourism": "attraction" - }, - "matchScore": 0.75, - "name": "Tourist Attraction" -} diff --git a/data/presets/presets/tourism/camp_pitch.json b/data/presets/presets/tourism/camp_pitch.json deleted file mode 100644 index c4ef9734e1..0000000000 --- a/data/presets/presets/tourism/camp_pitch.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "maki-campsite", - "fields": [ - "name", - "ref" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "tent", - "rv" - ], - "tags": { - "tourism": "camp_pitch" - }, - "name": "Camp Pitch" -} diff --git a/data/presets/presets/tourism/camp_site.json b/data/presets/presets/tourism/camp_site.json deleted file mode 100644 index fe1d350ca7..0000000000 --- a/data/presets/presets/tourism/camp_site.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "icon": "maki-campsite", - "fields": [ - "name", - "operator", - "address", - "access_simple", - "capacity", - "fee", - "payment_multi_fee", - "charge_fee" - ], - "moreFields": [ - "backcountry", - "dog", - "email", - "fax", - "gnis/feature_id", - "group_only", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "openfire", - "opening_hours", - "opening_hours/covid19", - "phone", - "power_supply", - "ref/vatin", - "reservation", - "sanitary_dump_station", - "shower", - "stars", - "toilets", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "tourism": "camp_site" - }, - "terms": [ - "caravans", - "camp ground", - "camp pitch", - "camp site", - "campers", - "campground", - "campsite", - "mobile homes", - "recreational vehicles", - "rv", - "tenting" - ], - "name": "Campground" -} diff --git a/data/presets/presets/tourism/camp_site/backcountry.json b/data/presets/presets/tourism/camp_site/backcountry.json deleted file mode 100644 index bd463498ba..0000000000 --- a/data/presets/presets/tourism/camp_site/backcountry.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "maki-campsite", - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "tourism": "camp_site", - "backcountry": "yes" - }, - "reference": { - "key": "backcountry" - }, - "terms": [ - "alpine camping", - "backpacking site", - "backwoods camping", - "camp ground", - "camp pitch", - "camp site", - "campground", - "campsite", - "informal camping", - "primitive camping" - ], - "name": "Backcountry Camping Area" -} diff --git a/data/presets/presets/tourism/camp_site/group_only.json b/data/presets/presets/tourism/camp_site/group_only.json deleted file mode 100644 index e063d2c0ec..0000000000 --- a/data/presets/presets/tourism/camp_site/group_only.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-campsite", - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "tourism": "camp_site", - "group_only": "yes" - }, - "reference": { - "key": "group_only" - }, - "terms": [ - "camp ground", - "camp pitch", - "camp site", - "campground", - "campsite", - "scout camping", - "youth camping" - ], - "name": "Group Camping Area" -} diff --git a/data/presets/presets/tourism/caravan_site.json b/data/presets/presets/tourism/caravan_site.json deleted file mode 100644 index 780e93a921..0000000000 --- a/data/presets/presets/tourism/caravan_site.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-camper_trailer", - "fields": [ - "name", - "address", - "capacity", - "sanitary_dump_station", - "power_supply", - "internet_access", - "internet_access/fee" - ], - "moreFields": [ - "charge_fee", - "email", - "fax", - "fee", - "gnis/feature_id", - "internet_access/ssid", - "operator", - "payment_multi_fee", - "phone", - "reservation", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "Motor Home", - "Camper" - ], - "tags": { - "tourism": "caravan_site" - }, - "name": "RV Park" -} diff --git a/data/presets/presets/tourism/chalet.json b/data/presets/presets/tourism/chalet.json deleted file mode 100644 index 4c3342483f..0000000000 --- a/data/presets/presets/tourism/chalet.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "icon": "temaki-cabin", - "fields": [ - "name", - "operator", - "address", - "building_area", - "internet_access", - "internet_access/fee" - ], - "moreFields": [ - "air_conditioning", - "building/levels_building", - "email", - "fax", - "gnis/feature_id", - "height_building", - "internet_access/ssid", - "payment_multi", - "phone", - "reservation", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "chalet", - "holiday cabin", - "holiday cottage", - "holiday home", - "lodge", - "lodging", - "overnight accommodations", - "vacation cabin", - "vacation home" - ], - "tags": { - "tourism": "chalet" - }, - "name": "Holiday Cottage" -} diff --git a/data/presets/presets/tourism/gallery.json b/data/presets/presets/tourism/gallery.json deleted file mode 100644 index 3c1a86a253..0000000000 --- a/data/presets/presets/tourism/gallery.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "icon": "maki-art-gallery", - "fields": [ - "name", - "operator", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "payment_multi", - "phone", - "ref/vatin", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "art*", - "exhibit*", - "paint*", - "photo*", - "sculpt*" - ], - "tags": { - "tourism": "gallery" - }, - "name": "Art Gallery" -} diff --git a/data/presets/presets/tourism/guest_house.json b/data/presets/presets/tourism/guest_house.json deleted file mode 100644 index 88fe69f48b..0000000000 --- a/data/presets/presets/tourism/guest_house.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "icon": "maki-lodging", - "fields": [ - "name", - "operator", - "guest_house", - "address", - "building_area", - "rooms", - "internet_access", - "internet_access/fee" - ], - "moreFields": [ - "air_conditioning", - "building/levels_building", - "email", - "fax", - "gnis/feature_id", - "height_building", - "internet_access/ssid", - "payment_multi", - "phone", - "ref/vatin", - "reservation", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "guest_house" - }, - "terms": [ - "b & b", - "b and b", - "B&B", - "Bed and Breakfast", - "bnb", - "lodging", - "overnight accommodations" - ], - "name": "Guest House" -} diff --git a/data/presets/presets/tourism/hostel.json b/data/presets/presets/tourism/hostel.json deleted file mode 100644 index eb25086558..0000000000 --- a/data/presets/presets/tourism/hostel.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "temaki-bunk_beds", - "fields": [ - "{tourism/guest_house}" - ], - "moreFields": [ - "{tourism/guest_house}" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "hostel" - }, - "terms": [ - "bunk beds", - "dormitories", - "dorms", - "lodging", - "overnight accommodations" - ], - "name": "Hostel" -} diff --git a/data/presets/presets/tourism/hotel.json b/data/presets/presets/tourism/hotel.json deleted file mode 100644 index 86fecdc994..0000000000 --- a/data/presets/presets/tourism/hotel.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "fas-concierge-bell", - "fields": [ - "{tourism/motel}" - ], - "moreFields": [ - "{tourism/motel}", - "bar", - "stars" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "hotel" - }, - "terms": [ - "concierge", - "lodge", - "lodging", - "overnight accommodations" - ], - "name": "Hotel" -} diff --git a/data/presets/presets/tourism/information.json b/data/presets/presets/tourism/information.json deleted file mode 100644 index e0f1c16f53..0000000000 --- a/data/presets/presets/tourism/information.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-information", - "fields": [ - "information", - "operator", - "address", - "building_area" - ], - "moreFields": [ - "level" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "tourism": "information" - }, - "name": "Information" -} diff --git a/data/presets/presets/tourism/information/board.json b/data/presets/presets/tourism/information/board.json deleted file mode 100644 index 1c1c3e7d19..0000000000 --- a/data/presets/presets/tourism/information/board.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-info_board", - "fields": [ - "name", - "operator", - "board_type", - "direction" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "tourism": "information", - "information": "board" - }, - "reference": { - "key": "information", - "value": "board" - }, - "name": "Information Board" -} diff --git a/data/presets/presets/tourism/information/board/welcome_sign.json b/data/presets/presets/tourism/information/board/welcome_sign.json deleted file mode 100644 index e3aa872b0b..0000000000 --- a/data/presets/presets/tourism/information/board/welcome_sign.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "maki-embassy", - "geometry": [ - "point" - ], - "terms": [ - "new location" - ], - "tags": { - "tourism": "information", - "information": "board", - "board_type": "welcome_sign" - }, - "name": "Welcome Sign" -} \ No newline at end of file diff --git a/data/presets/presets/tourism/information/guidepost.json b/data/presets/presets/tourism/information/guidepost.json deleted file mode 100644 index d392a718e0..0000000000 --- a/data/presets/presets/tourism/information/guidepost.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "icon": "fas-map-signs", - "fields": [ - "name", - "ele_node", - "operator", - "ref" - ], - "moreFields": [ - "material" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "signpost" - ], - "tags": { - "tourism": "information", - "information": "guidepost" - }, - "reference": { - "key": "information", - "value": "guidepost" - }, - "name": "Guidepost" -} diff --git a/data/presets/presets/tourism/information/map.json b/data/presets/presets/tourism/information/map.json deleted file mode 100644 index fc6259ce60..0000000000 --- a/data/presets/presets/tourism/information/map.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "fas-map", - "fields": [ - "operator", - "map_type", - "map_size", - "direction" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "tourism": "information", - "information": "map" - }, - "reference": { - "key": "information", - "value": "map" - }, - "name": "Map" -} diff --git a/data/presets/presets/tourism/information/office.json b/data/presets/presets/tourism/information/office.json deleted file mode 100644 index c207fbd48e..0000000000 --- a/data/presets/presets/tourism/information/office.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "icon": "maki-information", - "fields": [ - "name", - "operator", - "address", - "building_area", - "internet_access", - "internet_access/fee" - ], - "moreFields": [ - "building/levels_building", - "email", - "fax", - "gnis/feature_id", - "height_building", - "internet_access/ssid", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "tourism": "information", - "information": "office" - }, - "reference": { - "key": "information", - "value": "office" - }, - "terms": [ - "information office", - "tour guide", - "tourism office", - "tourist information center", - "visitors center", - "visitors information center", - "welcome center" - ], - "name": "Visitor Center" -} diff --git a/data/presets/presets/tourism/information/route_marker.json b/data/presets/presets/tourism/information/route_marker.json deleted file mode 100644 index 0583d21a4c..0000000000 --- a/data/presets/presets/tourism/information/route_marker.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "maki-information", - "fields": [ - "ref", - "operator", - "colour", - "material", - "ele_node" - ], - "geometry": [ - "point", - "vertex" - ], - "terms": [ - "cairn", - "painted blaze", - "route flag", - "route marker", - "stone pile", - "trail blaze", - "trail post", - "way marker" - ], - "tags": { - "tourism": "information", - "information": "route_marker" - }, - "reference": { - "key": "information", - "value": "route_marker" - }, - "name": "Trail Marker" -} diff --git a/data/presets/presets/tourism/information/terminal.json b/data/presets/presets/tourism/information/terminal.json deleted file mode 100644 index 4b1f6f020a..0000000000 --- a/data/presets/presets/tourism/information/terminal.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-app_terminal", - "fields": [ - "operator" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "tourism": "information", - "information": "terminal" - }, - "reference": { - "key": "information", - "value": "terminal" - }, - "name": "Information Terminal" -} diff --git a/data/presets/presets/tourism/motel.json b/data/presets/presets/tourism/motel.json deleted file mode 100644 index 82c2058fe1..0000000000 --- a/data/presets/presets/tourism/motel.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "icon": "maki-lodging", - "fields": [ - "name", - "brand", - "address", - "building_area", - "rooms", - "internet_access", - "internet_access/fee" - ], - "moreFields": [ - "air_conditioning", - "brand", - "building/levels_building", - "email", - "fax", - "gnis/feature_id", - "height_building", - "internet_access/ssid", - "operator", - "payment_multi", - "phone", - "ref/vatin", - "reservation", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "motel" - }, - "terms": [ - "lodging", - "motor hotel", - "overnight accommodations" - ], - "name": "Motel" -} diff --git a/data/presets/presets/tourism/museum.json b/data/presets/presets/tourism/museum.json deleted file mode 100644 index 197bc5e0e6..0000000000 --- a/data/presets/presets/tourism/museum.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "icon": "temaki-museum", - "fields": [ - "name", - "operator", - "operator/type", - "museum", - "address", - "building_area", - "opening_hours", - "opening_hours/covid19" - ], - "moreFields": [ - "air_conditioning", - "building/levels_building", - "charge_fee", - "email", - "fax", - "fee", - "gnis/feature_id", - "height_building", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "payment_multi", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "art*", - "exhibit*", - "gallery", - "foundation", - "hall", - "institution", - "paint*", - "photo*", - "sculpt*" - ], - "tags": { - "tourism": "museum" - }, - "name": "Museum" -} diff --git a/data/presets/presets/tourism/museum/history.json b/data/presets/presets/tourism/museum/history.json deleted file mode 100644 index 8129632965..0000000000 --- a/data/presets/presets/tourism/museum/history.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-museum", - "geometry": [ - "point", - "area" - ], - "terms": [ - "artifacts", - "dioramas", - "exhibits", - "exhibitions", - "foundation", - "hall", - "institution" - ], - "tags": { - "tourism": "museum", - "museum": "history" - }, - "reference": { - "key": "museum", - "value": "history" - }, - "name": "History Museum" -} diff --git a/data/presets/presets/tourism/picnic_site.json b/data/presets/presets/tourism/picnic_site.json deleted file mode 100644 index 81a15d19a5..0000000000 --- a/data/presets/presets/tourism/picnic_site.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "maki-picnic-site", - "fields": [ - "name", - "operator", - "address", - "access_simple", - "capacity" - ], - "moreFields": [ - "charge_fee", - "fee", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "level", - "payment_multi_fee", - "phone", - "reservation", - "smoking", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "camp" - ], - "tags": { - "tourism": "picnic_site" - }, - "name": "Picnic Site" -} diff --git a/data/presets/presets/tourism/theme_park.json b/data/presets/presets/tourism/theme_park.json deleted file mode 100644 index 793ec56366..0000000000 --- a/data/presets/presets/tourism/theme_park.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-amusement-park", - "fields": [ - "name", - "operator", - "address", - "opening_hours", - "opening_hours/covid19", - "website" - ], - "moreFields": [ - "brand", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "payment_multi", - "phone", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "theme_park" - }, - "name": "Theme Park" -} diff --git a/data/presets/presets/tourism/trail_riding_station.json b/data/presets/presets/tourism/trail_riding_station.json deleted file mode 100644 index 5bb74142d0..0000000000 --- a/data/presets/presets/tourism/trail_riding_station.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-horse-riding", - "fields": [ - "name", - "horse_stables", - "horse_riding", - "horse_dressage" - ], - "moreFields": [ - "address", - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "opening_hours", - "opening_hours/covid19", - "phone", - "website" - ], - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "trail_riding_station" - }, - "name": "Trail Riding Station", - "matchScore": 2 -} diff --git a/data/presets/presets/tourism/viewpoint.json b/data/presets/presets/tourism/viewpoint.json deleted file mode 100644 index ab87d8ea94..0000000000 --- a/data/presets/presets/tourism/viewpoint.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "temaki-spotting_scope", - "geometry": [ - "point", - "vertex" - ], - "fields": [ - "direction" - ], - "moreFields": [ - "level" - ], - "tags": { - "tourism": "viewpoint" - }, - "name": "Viewpoint" -} diff --git a/data/presets/presets/tourism/wilderness_hut.json b/data/presets/presets/tourism/wilderness_hut.json deleted file mode 100644 index 58552b7d6c..0000000000 --- a/data/presets/presets/tourism/wilderness_hut.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "icon": "temaki-cabin", - "fields": [ - "name", - "operator", - "address", - "building_area", - "fee", - "payment_multi_fee", - "charge_fee", - "fireplace" - ], - "moreFields": [ - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "reservation", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "alpine hut", - "cabin", - "backcountry hut", - "bothy", - "lodge", - "lodging", - "overnight accommodations", - "sleeping shelter", - "wilderness hut" - ], - "tags": { - "tourism": "wilderness_hut" - }, - "name": "Wilderness Hut" -} diff --git a/data/presets/presets/tourism/zoo.json b/data/presets/presets/tourism/zoo.json deleted file mode 100644 index eacf9a118e..0000000000 --- a/data/presets/presets/tourism/zoo.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "icon": "temaki-zoo", - "fields": [ - "name", - "operator", - "address", - "opening_hours", - "opening_hours/covid19", - "fee", - "charge_fee" - ], - "moreFields": [ - "email", - "fax", - "gnis/feature_id", - "internet_access", - "internet_access/fee", - "internet_access/ssid", - "payment_multi", - "phone", - "ref/vatin", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "area" - ], - "terms": [ - "animal" - ], - "tags": { - "tourism": "zoo" - }, - "name": "Zoo" -} diff --git a/data/presets/presets/tourism/zoo/petting.json b/data/presets/presets/tourism/zoo/petting.json deleted file mode 100644 index f8606383f0..0000000000 --- a/data/presets/presets/tourism/zoo/petting.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "fas-horse", - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "zoo", - "zoo": "petting_zoo" - }, - "reference": { - "key": "zoo", - "value": "petting_zoo" - }, - "terms": [ - "Children's Zoo", - "Children's Farm", - "Petting Farm", - "farm animals" - ], - "name": "Petting Zoo" -} diff --git a/data/presets/presets/tourism/zoo/safari.json b/data/presets/presets/tourism/zoo/safari.json deleted file mode 100644 index 47f5839ca4..0000000000 --- a/data/presets/presets/tourism/zoo/safari.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-zoo", - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "zoo", - "zoo": "safari_park" - }, - "reference": { - "key": "zoo", - "value": "safari_park" - }, - "terms": [ - "Drive-Through Zoo", - "Drive-In Zoo" - ], - "name": "Safari Park" -} diff --git a/data/presets/presets/tourism/zoo/wildlife.json b/data/presets/presets/tourism/zoo/wildlife.json deleted file mode 100644 index 22f52eb7e6..0000000000 --- a/data/presets/presets/tourism/zoo/wildlife.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "fas-frog", - "geometry": [ - "point", - "area" - ], - "tags": { - "tourism": "zoo", - "zoo": "wildlife_park" - }, - "reference": { - "key": "zoo", - "value": "wildlife_park" - }, - "terms": [ - "indigenous animals" - ], - "name": "Wildlife Park" -} diff --git a/data/presets/presets/traffic_calming.json b/data/presets/presets/traffic_calming.json deleted file mode 100644 index c1edbf74ce..0000000000 --- a/data/presets/presets/traffic_calming.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "temaki-diamond", - "fields": [ - "traffic_calming", - "surface", - "direction_vertex" - ], - "geometry": [ - "vertex", - "line", - "area" - ], - "tags": { - "traffic_calming": "*" - }, - "terms": [ - "bump", - "hump", - "slow", - "speed" - ], - "name": "Traffic Calming" -} diff --git a/data/presets/presets/traffic_calming/bump.json b/data/presets/presets/traffic_calming/bump.json deleted file mode 100644 index 1ccac081b6..0000000000 --- a/data/presets/presets/traffic_calming/bump.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-speed_bump", - "fields": [ - "surface", - "direction_vertex" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "hump", - "speed", - "slow" - ], - "tags": { - "traffic_calming": "bump" - }, - "name": "Speed Bump" -} diff --git a/data/presets/presets/traffic_calming/chicane.json b/data/presets/presets/traffic_calming/chicane.json deleted file mode 100644 index 8dfa98df2e..0000000000 --- a/data/presets/presets/traffic_calming/chicane.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-chicane_arrow", - "fields": [ - "surface", - "direction_vertex" - ], - "geometry": [ - "vertex", - "line", - "area" - ], - "terms": [ - "driveway link", - "speed", - "slow" - ], - "tags": { - "traffic_calming": "chicane" - }, - "name": "Traffic Chicane" -} diff --git a/data/presets/presets/traffic_calming/choker.json b/data/presets/presets/traffic_calming/choker.json deleted file mode 100644 index 8c68822967..0000000000 --- a/data/presets/presets/traffic_calming/choker.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-diamond", - "fields": [ - "surface", - "direction_vertex" - ], - "geometry": [ - "vertex", - "line", - "area" - ], - "terms": [ - "speed", - "slow" - ], - "tags": { - "traffic_calming": "choker" - }, - "name": "Traffic Choker" -} diff --git a/data/presets/presets/traffic_calming/cushion.json b/data/presets/presets/traffic_calming/cushion.json deleted file mode 100644 index 69d4a06f41..0000000000 --- a/data/presets/presets/traffic_calming/cushion.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-speed_hump", - "fields": [ - "surface", - "direction_vertex" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "bump", - "hump", - "speed", - "slow" - ], - "tags": { - "traffic_calming": "cushion" - }, - "name": "Speed Cushion" -} diff --git a/data/presets/presets/traffic_calming/dip.json b/data/presets/presets/traffic_calming/dip.json deleted file mode 100644 index 95506613bd..0000000000 --- a/data/presets/presets/traffic_calming/dip.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-speed_dip", - "fields": [ - "surface", - "direction_vertex" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "speed", - "slow" - ], - "tags": { - "traffic_calming": "dip" - }, - "name": "Dip" -} diff --git a/data/presets/presets/traffic_calming/hump.json b/data/presets/presets/traffic_calming/hump.json deleted file mode 100644 index 821153e187..0000000000 --- a/data/presets/presets/traffic_calming/hump.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-speed_hump", - "fields": [ - "surface", - "direction_vertex" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "bump", - "speed", - "slow" - ], - "tags": { - "traffic_calming": "hump" - }, - "name": "Speed Hump" -} diff --git a/data/presets/presets/traffic_calming/island.json b/data/presets/presets/traffic_calming/island.json deleted file mode 100644 index 25da79301e..0000000000 --- a/data/presets/presets/traffic_calming/island.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-diamond", - "fields": [ - "surface" - ], - "geometry": [ - "vertex", - "line", - "area" - ], - "terms": [ - "circle", - "roundabout", - "slow" - ], - "tags": { - "traffic_calming": "island" - }, - "name": "Traffic Island" -} diff --git a/data/presets/presets/traffic_calming/rumble_strip.json b/data/presets/presets/traffic_calming/rumble_strip.json deleted file mode 100644 index 0445032d45..0000000000 --- a/data/presets/presets/traffic_calming/rumble_strip.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "temaki-rumble_strip", - "fields": [ - "direction_vertex" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "audible lines", - "sleeper lines", - "growlers" - ], - "tags": { - "traffic_calming": "rumble_strip" - }, - "name": "Rumble Strip" -} diff --git a/data/presets/presets/traffic_calming/table.json b/data/presets/presets/traffic_calming/table.json deleted file mode 100644 index 7efbd6b05a..0000000000 --- a/data/presets/presets/traffic_calming/table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "temaki-speed_table", - "fields": [ - "surface", - "direction_vertex" - ], - "geometry": [ - "vertex" - ], - "tags": { - "traffic_calming": "table" - }, - "terms": [ - "flat top", - "hump", - "speed", - "slow" - ], - "name": "Speed Table" -} diff --git a/data/presets/presets/traffic_sign.json b/data/presets/presets/traffic_sign.json deleted file mode 100644 index 60d848853f..0000000000 --- a/data/presets/presets/traffic_sign.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "icon": "fas-directions", - "fields": [ - "traffic_sign", - "traffic_sign/direction", - "direction_point" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "traffic_sign": "*" - }, - "terms": [ - "road", - "highway" - ], - "name": "Traffic Sign" -} diff --git a/data/presets/presets/traffic_sign/city_limit.json b/data/presets/presets/traffic_sign/city_limit.json deleted file mode 100644 index 1175311b5a..0000000000 --- a/data/presets/presets/traffic_sign/city_limit.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-square-stroked", - "fields": [ - "{traffic_sign}", - "name" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "traffic_sign": "city_limit" - }, - "terms": [ - "town", - "village", - "hamlet", - "boundary", - "edge", - "border", - "road", - "highway" - ], - "name": "City Limit Sign" -} diff --git a/data/presets/presets/traffic_sign/maxspeed.json b/data/presets/presets/traffic_sign/maxspeed.json deleted file mode 100644 index b5179284ac..0000000000 --- a/data/presets/presets/traffic_sign/maxspeed.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "maki-square-stroked", - "fields": [ - "{traffic_sign}", - "maxspeed" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "traffic_sign": "maxspeed" - }, - "terms": [ - "max speed", - "maximum speed", - "road", - "highway" - ], - "name": "Speed Limit Sign" -} diff --git a/data/presets/presets/type/_multipolygon.json b/data/presets/presets/type/_multipolygon.json deleted file mode 100644 index 68038b797b..0000000000 --- a/data/presets/presets/type/_multipolygon.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "iD-multipolygon", - "geometry": [ - "area", - "relation" - ], - "tags": { - "type": "multipolygon" - }, - "removeTags": {}, - "name": "Multipolygon", - "searchable": false, - "matchScore": 0.1 -} diff --git a/data/presets/presets/type/boundary.json b/data/presets/presets/type/boundary.json deleted file mode 100644 index 6786b604af..0000000000 --- a/data/presets/presets/type/boundary.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "iD-boundary", - "fields": [ - "name", - "boundary" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "boundary" - }, - "name": "Boundary" -} diff --git a/data/presets/presets/type/boundary/administrative.json b/data/presets/presets/type/boundary/administrative.json deleted file mode 100644 index 679e184a7e..0000000000 --- a/data/presets/presets/type/boundary/administrative.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "iD-boundary", - "fields": [ - "name", - "admin_level" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "boundary", - "boundary": "administrative" - }, - "reference": { - "key": "boundary", - "value": "administrative" - }, - "name": "Administrative Boundary" -} diff --git a/data/presets/presets/type/connectivity.json b/data/presets/presets/type/connectivity.json deleted file mode 100644 index 8c85c462d6..0000000000 --- a/data/presets/presets/type/connectivity.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "iD-relation", - "fields": [ - "connectivity" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "connectivity" - }, - "name": "Lane Connectivity" -} diff --git a/data/presets/presets/type/destination_sign.json b/data/presets/presets/type/destination_sign.json deleted file mode 100644 index 1e1a1d2f76..0000000000 --- a/data/presets/presets/type/destination_sign.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "icon": "iD-relation", - "fields": [ - "destination", - "destination/ref", - "destination/symbol", - "distance" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "destination_sign" - }, - "terms": [ - "exit sign" - ], - "name": "Destination Sign" -} diff --git a/data/presets/presets/type/enforcement.json b/data/presets/presets/type/enforcement.json deleted file mode 100644 index e9d1e47f3b..0000000000 --- a/data/presets/presets/type/enforcement.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "icon": "iD-relation", - "fields": [ - "enforcement" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "enforcement" - }, - "name": "Enforcement" -} diff --git a/data/presets/presets/type/enforcement/maxspeed.json b/data/presets/presets/type/enforcement/maxspeed.json deleted file mode 100644 index fe41fd488d..0000000000 --- a/data/presets/presets/type/enforcement/maxspeed.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "iD-relation", - "fields": [ - "maxspeed" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "enforcement", - "enforcement": "maxspeed" - }, - "reference": { - "key": "enforcement", - "value": "maxspeed" - }, - "terms": [ - "maxspeed", - "radar", - "speed camera" - ], - "name": "Speed Limit Enforcement" -} diff --git a/data/presets/presets/type/public_transport/stop_area_group.json b/data/presets/presets/type/public_transport/stop_area_group.json deleted file mode 100644 index 64a493873b..0000000000 --- a/data/presets/presets/type/public_transport/stop_area_group.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "iD-relation", - "fields": [ - "name", - "ref", - "network", - "operator" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "public_transport", - "public_transport": "stop_area_group" - }, - "reference": { - "key": "public_transport", - "value": "stop_area_group" - }, - "name": "Transit Stop Area Group" -} diff --git a/data/presets/presets/type/restriction.json b/data/presets/presets/type/restriction.json deleted file mode 100644 index 439ad405ff..0000000000 --- a/data/presets/presets/type/restriction.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "iD-restriction", - "fields": [ - "restriction", - "except" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction" - }, - "name": "Restriction" -} diff --git a/data/presets/presets/type/restriction/no_left_turn.json b/data/presets/presets/type/restriction/no_left_turn.json deleted file mode 100644 index 521c39371a..0000000000 --- a/data/presets/presets/type/restriction/no_left_turn.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-restriction-no-left-turn", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "no_left_turn" - }, - "reference": { - "key": "restriction", - "value": "no_left_turn" - }, - "name": "No Left Turn" -} diff --git a/data/presets/presets/type/restriction/no_right_turn.json b/data/presets/presets/type/restriction/no_right_turn.json deleted file mode 100644 index 175d1480eb..0000000000 --- a/data/presets/presets/type/restriction/no_right_turn.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-restriction-no-right-turn", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "no_right_turn" - }, - "reference": { - "key": "restriction", - "value": "no_right_turn" - }, - "name": "No Right Turn" -} diff --git a/data/presets/presets/type/restriction/no_straight_on.json b/data/presets/presets/type/restriction/no_straight_on.json deleted file mode 100644 index e990b242e4..0000000000 --- a/data/presets/presets/type/restriction/no_straight_on.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-restriction-no-straight-on", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "no_straight_on" - }, - "reference": { - "key": "restriction", - "value": "no_straight_on" - }, - "name": "No Straight On" -} diff --git a/data/presets/presets/type/restriction/no_u_turn.json b/data/presets/presets/type/restriction/no_u_turn.json deleted file mode 100644 index d7e5938168..0000000000 --- a/data/presets/presets/type/restriction/no_u_turn.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-restriction-no-u-turn", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "no_u_turn" - }, - "reference": { - "key": "restriction", - "value": "no_u_turn" - }, - "name": "No U-turn" -} diff --git a/data/presets/presets/type/restriction/only_left_turn.json b/data/presets/presets/type/restriction/only_left_turn.json deleted file mode 100644 index 6350160377..0000000000 --- a/data/presets/presets/type/restriction/only_left_turn.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-restriction-only-left-turn", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "only_left_turn" - }, - "reference": { - "key": "restriction", - "value": "only_left_turn" - }, - "name": "Only Left Turn" -} diff --git a/data/presets/presets/type/restriction/only_right_turn.json b/data/presets/presets/type/restriction/only_right_turn.json deleted file mode 100644 index 668f7618be..0000000000 --- a/data/presets/presets/type/restriction/only_right_turn.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-restriction-only-right-turn", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "only_right_turn" - }, - "reference": { - "key": "restriction", - "value": "only_right_turn" - }, - "name": "Only Right Turn" -} diff --git a/data/presets/presets/type/restriction/only_straight_on.json b/data/presets/presets/type/restriction/only_straight_on.json deleted file mode 100644 index 478a3cf241..0000000000 --- a/data/presets/presets/type/restriction/only_straight_on.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-restriction-only-straight-on", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "only_straight_on" - }, - "reference": { - "key": "restriction", - "value": "only_straight_on" - }, - "name": "Only Straight On" -} diff --git a/data/presets/presets/type/restriction/only_u_turn.json b/data/presets/presets/type/restriction/only_u_turn.json deleted file mode 100644 index 090c33c980..0000000000 --- a/data/presets/presets/type/restriction/only_u_turn.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "icon": "iD-restriction-only-u-turn", - "geometry": [ - "relation" - ], - "tags": { - "type": "restriction", - "restriction": "only_u_turn" - }, - "reference": { - "key": "restriction", - "value": "only_u_turn" - }, - "name": "Only U-turn" -} diff --git a/data/presets/presets/type/route.json b/data/presets/presets/type/route.json deleted file mode 100644 index 2e0c24c9d0..0000000000 --- a/data/presets/presets/type/route.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "iD-route", - "fields": [ - "name", - "route", - "ref_route", - "operator", - "network", - "network/type" - ], - "moreFields": [ - "distance" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route" - }, - "name": "Route" -} diff --git a/data/presets/presets/type/route/bicycle.json b/data/presets/presets/type/route/bicycle.json deleted file mode 100644 index 0c326d66ee..0000000000 --- a/data/presets/presets/type/route/bicycle.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "maki-bicycle", - "fields": [ - "name", - "ref_route", - "network_bicycle", - "cycle_network", - "network/type", - "from", - "to" - ], - "moreFields": [ - "ascent", - "colour", - "descent", - "distance", - "roundtrip" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "bicycle" - }, - "reference": { - "key": "route", - "value": "bicycle" - }, - "name": "Cycle Route" -} diff --git a/data/presets/presets/type/route/bus.json b/data/presets/presets/type/route/bus.json deleted file mode 100644 index d5cbcb68d2..0000000000 --- a/data/presets/presets/type/route/bus.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-bus", - "fields": [ - "{type/route/train}" - ], - "moreFields": [ - "{type/route/train}" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "bus" - }, - "reference": { - "key": "route", - "value": "bus" - }, - "name": "Bus Route" -} diff --git a/data/presets/presets/type/route/detour.json b/data/presets/presets/type/route/detour.json deleted file mode 100644 index 134370ee66..0000000000 --- a/data/presets/presets/type/route/detour.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "iD-route-detour", - "fields": [ - "name", - "ref_route", - "from", - "to" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "detour" - }, - "reference": { - "key": "route", - "value": "detour" - }, - "name": "Detour Route" -} diff --git a/data/presets/presets/type/route/ferry.json b/data/presets/presets/type/route/ferry.json deleted file mode 100644 index a250d04638..0000000000 --- a/data/presets/presets/type/route/ferry.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-ferry", - "fields": [ - "{route/ferry}" - ], - "moreFields": [ - "{route/ferry}" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "ferry" - }, - "reference": { - "key": "route", - "value": "ferry" - }, - "name": "Ferry Route" -} diff --git a/data/presets/presets/type/route/foot.json b/data/presets/presets/type/route/foot.json deleted file mode 100644 index 7b07cc01ba..0000000000 --- a/data/presets/presets/type/route/foot.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-pedestrian", - "fields": [ - "{type/route/hiking}" - ], - "moreFields": [ - "{type/route/hiking}" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "foot" - }, - "reference": { - "key": "route", - "value": "foot" - }, - "name": "Walking Route" -} diff --git a/data/presets/presets/type/route/hiking.json b/data/presets/presets/type/route/hiking.json deleted file mode 100644 index 934780c5c0..0000000000 --- a/data/presets/presets/type/route/hiking.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "icon": "fas-hiking", - "fields": [ - "name", - "ref_route", - "operator", - "network_foot", - "network/type", - "from", - "to" - ], - "moreFields": [ - "ascent", - "colour", - "descent", - "distance", - "roundtrip" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "hiking" - }, - "reference": { - "key": "route", - "value": "hiking" - }, - "name": "Hiking Route" -} diff --git a/data/presets/presets/type/route/horse.json b/data/presets/presets/type/route/horse.json deleted file mode 100644 index 56c1a7fb28..0000000000 --- a/data/presets/presets/type/route/horse.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "maki-horse-riding", - "fields": [ - "name", - "ref_route", - "operator", - "network_horse", - "network/type", - "from", - "to" - ], - "moreFields": [ - "ascent", - "colour", - "descent", - "distance" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "horse" - }, - "reference": { - "key": "route", - "value": "horse" - }, - "name": "Riding Route" -} diff --git a/data/presets/presets/type/route/light_rail.json b/data/presets/presets/type/route/light_rail.json deleted file mode 100644 index af70d75b5f..0000000000 --- a/data/presets/presets/type/route/light_rail.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-light_rail", - "fields": [ - "{type/route/train}" - ], - "moreFields": [ - "{type/route/train}" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "light_rail" - }, - "reference": { - "key": "route", - "value": "light_rail" - }, - "name": "Light Rail Route" -} diff --git a/data/presets/presets/type/route/monorail.json b/data/presets/presets/type/route/monorail.json deleted file mode 100644 index 480caa35d0..0000000000 --- a/data/presets/presets/type/route/monorail.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-monorail", - "fields": [ - "{type/route/train}" - ], - "moreFields": [ - "{type/route/train}" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "monorail" - }, - "reference": { - "key": "route", - "value": "monorail" - }, - "name": "Monorail Route" -} diff --git a/data/presets/presets/type/route/pipeline.json b/data/presets/presets/type/route/pipeline.json deleted file mode 100644 index 7e3f4394d1..0000000000 --- a/data/presets/presets/type/route/pipeline.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "iD-pipeline-line", - "fields": [ - "{type/route/power}" - ], - "moreFields": [ - "{type/route/power}" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "pipeline" - }, - "reference": { - "key": "route", - "value": "pipeline" - }, - "name": "Pipeline Route" -} diff --git a/data/presets/presets/type/route/piste.json b/data/presets/presets/type/route/piste.json deleted file mode 100644 index 397d688a5c..0000000000 --- a/data/presets/presets/type/route/piste.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "icon": "fas-skiing", - "fields": [ - "name", - "piste/type", - "ref_route", - "operator", - "from", - "to" - ], - "moreFields": [ - "ascent", - "colour", - "descent", - "distance", - "roundtrip" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "piste" - }, - "reference": { - "key": "route", - "value": "piste" - }, - "name": "Piste/Ski Route" -} diff --git a/data/presets/presets/type/route/power.json b/data/presets/presets/type/route/power.json deleted file mode 100644 index 79fc159b72..0000000000 --- a/data/presets/presets/type/route/power.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "iD-power-line", - "fields": [ - "name", - "ref_route", - "operator", - "from", - "to" - ], - "moreFields": [ - "distance" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "power" - }, - "reference": { - "key": "route", - "value": "power" - }, - "name": "Power Route" -} diff --git a/data/presets/presets/type/route/road.json b/data/presets/presets/type/route/road.json deleted file mode 100644 index d0ad0562df..0000000000 --- a/data/presets/presets/type/route/road.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "icon": "iD-highway-unclassified", - "fields": [ - "name", - "ref_route", - "network_road", - "from", - "to" - ], - "moreFields": [ - "colour", - "distance", - "roundtrip" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "road" - }, - "reference": { - "key": "route", - "value": "road" - }, - "name": "Road Route" -} diff --git a/data/presets/presets/type/route/subway.json b/data/presets/presets/type/route/subway.json deleted file mode 100644 index 79946ca4bf..0000000000 --- a/data/presets/presets/type/route/subway.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-subway", - "fields": [ - "{type/route/train}" - ], - "moreFields": [ - "{type/route/train}" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "subway" - }, - "reference": { - "key": "route", - "value": "subway" - }, - "name": "Subway Route" -} diff --git a/data/presets/presets/type/route/train.json b/data/presets/presets/type/route/train.json deleted file mode 100644 index d95579c623..0000000000 --- a/data/presets/presets/type/route/train.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "icon": "temaki-train", - "fields": [ - "name", - "ref_route", - "operator", - "network", - "from", - "to" - ], - "moreFields": [ - "colour", - "distance", - "duration", - "interval", - "opening_hours", - "opening_hours/covid19", - "roundtrip", - "wheelchair" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "train" - }, - "reference": { - "key": "route", - "value": "train" - }, - "name": "Train Route" -} diff --git a/data/presets/presets/type/route/tram.json b/data/presets/presets/type/route/tram.json deleted file mode 100644 index 3d552febd1..0000000000 --- a/data/presets/presets/type/route/tram.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-tram", - "fields": [ - "{type/route/train}" - ], - "moreFields": [ - "{type/route/train}" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "tram" - }, - "reference": { - "key": "route", - "value": "tram" - }, - "name": "Tram Route" -} diff --git a/data/presets/presets/type/route/trolleybus.json b/data/presets/presets/type/route/trolleybus.json deleted file mode 100644 index d8f4fee404..0000000000 --- a/data/presets/presets/type/route/trolleybus.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "icon": "temaki-trolleybus", - "fields": [ - "{type/route/train}" - ], - "moreFields": [ - "{type/route/train}" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route", - "route": "trolleybus" - }, - "reference": { - "key": "route", - "value": "trolleybus" - }, - "name": "Trolleybus Route" -} diff --git a/data/presets/presets/type/route_master.json b/data/presets/presets/type/route_master.json deleted file mode 100644 index d59ddbd6ac..0000000000 --- a/data/presets/presets/type/route_master.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "iD-route-master", - "fields": [ - "name", - "route_master", - "ref", - "operator", - "network" - ], - "moreFields": [ - "colour", - "interval", - "opening_hours", - "opening_hours/covid19", - "wheelchair" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "route_master" - }, - "name": "Route Master" -} diff --git a/data/presets/presets/type/site.json b/data/presets/presets/type/site.json deleted file mode 100644 index a234a7bdc3..0000000000 --- a/data/presets/presets/type/site.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "icon": "iD-relation", - "fields": [ - "name", - "site" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "site" - }, - "name": "Site" -} diff --git a/data/presets/presets/type/waterway.json b/data/presets/presets/type/waterway.json deleted file mode 100644 index 3ed7521752..0000000000 --- a/data/presets/presets/type/waterway.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "iD-waterway-stream", - "fields": [ - "name", - "waterway", - "destination_waterway", - "ref" - ], - "geometry": [ - "relation" - ], - "tags": { - "type": "waterway" - }, - "name": "Waterway" -} diff --git a/data/presets/presets/waterway/_riverbank.json b/data/presets/presets/waterway/_riverbank.json deleted file mode 100644 index 2d80220372..0000000000 --- a/data/presets/presets/waterway/_riverbank.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "icon": "maki-water", - "geometry": [ - "area" - ], - "tags": { - "waterway": "riverbank" - }, - "name": "Riverbank", - "searchable": false -} diff --git a/data/presets/presets/waterway/boatyard.json b/data/presets/presets/waterway/boatyard.json deleted file mode 100644 index 7deb7576b2..0000000000 --- a/data/presets/presets/waterway/boatyard.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "temaki-boat", - "fields": [ - "name", - "operator" - ], - "moreFields": [ - "address", - "email", - "fax", - "gnis/feature_id", - "phone", - "website", - "wheelchair" - ], - "geometry": [ - "area", - "vertex", - "point" - ], - "tags": { - "waterway": "boatyard" - }, - "name": "Boatyard" -} diff --git a/data/presets/presets/waterway/canal.json b/data/presets/presets/waterway/canal.json deleted file mode 100644 index 7b44aafe0d..0000000000 --- a/data/presets/presets/waterway/canal.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "iD-waterway-canal", - "fields": [ - "name", - "structure_waterway", - "width", - "intermittent", - "lock" - ], - "moreFields": [ - "fishing", - "gnis/feature_id", - "salt", - "tidal" - ], - "geometry": [ - "line" - ], - "tags": { - "waterway": "canal" - }, - "name": "Canal" -} diff --git a/data/presets/presets/waterway/canal/lock.json b/data/presets/presets/waterway/canal/lock.json deleted file mode 100644 index 3121b752f1..0000000000 --- a/data/presets/presets/waterway/canal/lock.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "iD-waterway-canal", - "fields": [ - "name", - "width", - "lock" - ], - "moreFields": [ - "gnis/feature_id", - "intermittent", - "salt", - "tidal" - ], - "geometry": [ - "line" - ], - "tags": { - "waterway": "canal", - "lock": "yes" - }, - "name": "Canal Lock" -} diff --git a/data/presets/presets/waterway/dam.json b/data/presets/presets/waterway/dam.json deleted file mode 100644 index f45073cf73..0000000000 --- a/data/presets/presets/waterway/dam.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-dam", - "geometry": [ - "point", - "vertex", - "line", - "area" - ], - "fields": [ - "name", - "operator", - "gnis/feature_id", - "height", - "material" - ], - "moreFields": [ - "seamark/type", - "website" - ], - "tags": { - "waterway": "dam" - }, - "name": "Dam" -} diff --git a/data/presets/presets/waterway/ditch.json b/data/presets/presets/waterway/ditch.json deleted file mode 100644 index d9e493127b..0000000000 --- a/data/presets/presets/waterway/ditch.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "icon": "iD-waterway-ditch", - "fields": [ - "{waterway/drain}" - ], - "moreFields": [ - "{waterway/drain}" - ], - "geometry": [ - "line" - ], - "tags": { - "waterway": "ditch" - }, - "name": "Ditch" -} diff --git a/data/presets/presets/waterway/dock.json b/data/presets/presets/waterway/dock.json deleted file mode 100644 index 8caf3194aa..0000000000 --- a/data/presets/presets/waterway/dock.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "icon": "maki-harbor", - "fields": [ - "name", - "dock", - "operator" - ], - "geometry": [ - "area", - "vertex", - "point" - ], - "terms": [ - "boat", - "ship", - "vessel", - "marine" - ], - "tags": { - "waterway": "dock" - }, - "name": "Wet Dock / Dry Dock" -} diff --git a/data/presets/presets/waterway/drain.json b/data/presets/presets/waterway/drain.json deleted file mode 100644 index 98b309d174..0000000000 --- a/data/presets/presets/waterway/drain.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "icon": "iD-waterway-ditch", - "fields": [ - "structure_waterway", - "intermittent" - ], - "moreFields": [ - "covered" - ], - "geometry": [ - "line" - ], - "tags": { - "waterway": "drain" - }, - "name": "Drain" -} diff --git a/data/presets/presets/waterway/fish_pass.json b/data/presets/presets/waterway/fish_pass.json deleted file mode 100644 index c834c6ac1a..0000000000 --- a/data/presets/presets/waterway/fish_pass.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "temaki-fish_ladder", - "fields": [ - "name", - "structure_waterway", - "width", - "seasonal" - ], - "moreFields": [ - "covered", - "gnis/feature_id", - "salt" - ], - "geometry": [ - "line" - ], - "terms": [ - "eel ladder", - "eel pass", - "fish ladder", - "fish migration", - "fish passage", - "fish siphon", - "fish steps", - "fish way", - "fishladder", - "fishpass", - "fishsteps", - "fishway" - ], - "tags": { - "waterway": "fish_pass" - }, - "name": "Fish Pass" -} diff --git a/data/presets/presets/waterway/fuel.json b/data/presets/presets/waterway/fuel.json deleted file mode 100644 index fcaee0c893..0000000000 --- a/data/presets/presets/waterway/fuel.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "icon": "maki-fuel", - "fields": [ - "name", - "operator", - "address", - "opening_hours", - "opening_hours/covid19", - "fuel_multi" - ], - "moreFields": [ - "brand", - "building", - "email", - "fax", - "payment_multi", - "phone", - "seamark/type", - "website", - "wheelchair" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "petrol", - "gas", - "diesel", - "boat" - ], - "tags": { - "waterway": "fuel" - }, - "name": "Marine Fuel Station" -} diff --git a/data/presets/presets/waterway/lock_gate.json b/data/presets/presets/waterway/lock_gate.json deleted file mode 100644 index abb124d2b6..0000000000 --- a/data/presets/presets/waterway/lock_gate.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "icon": "maki-dam", - "geometry": [ - "vertex", - "line" - ], - "fields": [ - "name", - "ref", - "height", - "material" - ], - "tags": { - "waterway": "lock_gate" - }, - "addTags": { - "waterway": "lock_gate", - "seamark:type": "gate" - }, - "terms": [ - "canal" - ], - "name": "Lock Gate" -} diff --git a/data/presets/presets/waterway/milestone.json b/data/presets/presets/waterway/milestone.json deleted file mode 100644 index be1b30c481..0000000000 --- a/data/presets/presets/waterway/milestone.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "temaki-milestone", - "fields": [ - "distance", - "direction_vertex" - ], - "moreFields": [ - "seamark/type" - ], - "geometry": [ - "point", - "vertex" - ], - "tags": { - "waterway": "milestone" - }, - "terms": [ - "milestone", - "marker" - ], - "name": "Waterway Milestone" -} diff --git a/data/presets/presets/waterway/river.json b/data/presets/presets/waterway/river.json deleted file mode 100644 index 3d5c560134..0000000000 --- a/data/presets/presets/waterway/river.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "iD-waterway-river", - "fields": [ - "name", - "structure_waterway", - "width", - "intermittent", - "tidal" - ], - "moreFields": [ - "covered", - "fishing", - "gnis/feature_id", - "salt" - ], - "geometry": [ - "line" - ], - "terms": [ - "beck", - "branch", - "brook", - "course", - "creek", - "estuary", - "rill", - "rivulet", - "run", - "runnel", - "stream", - "tributary", - "watercourse" - ], - "tags": { - "waterway": "river" - }, - "name": "River" -} diff --git a/data/presets/presets/waterway/sanitary_dump_station.json b/data/presets/presets/waterway/sanitary_dump_station.json deleted file mode 100644 index f5250536f1..0000000000 --- a/data/presets/presets/waterway/sanitary_dump_station.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "icon": "temaki-waste", - "fields": [ - "name", - "operator", - "access_simple", - "fee", - "payment_multi_fee", - "charge_fee", - "water_point" - ], - "moreFields": [ - "opening_hours", - "opening_hours/covid19", - "seamark/type" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "terms": [ - "Boat", - "Watercraft", - "Sanitary", - "Dump Station", - "Pumpout", - "Pump out", - "Elsan", - "CDP", - "CTDP", - "Chemical Toilet" - ], - "tags": { - "waterway": "sanitary_dump_station" - }, - "name": "Marine Toilet Disposal" -} diff --git a/data/presets/presets/waterway/stream.json b/data/presets/presets/waterway/stream.json deleted file mode 100644 index 0750f11195..0000000000 --- a/data/presets/presets/waterway/stream.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "icon": "iD-waterway-stream", - "fields": [ - "name", - "structure_waterway", - "width", - "intermittent" - ], - "moreFields": [ - "covered", - "fishing", - "gnis/feature_id", - "salt", - "tidal" - ], - "geometry": [ - "line" - ], - "terms": [ - "beck", - "branch", - "brook", - "burn", - "course", - "creek", - "current", - "drift", - "flood", - "flow", - "freshet", - "race", - "rill", - "rindle", - "rivulet", - "run", - "runnel", - "rush", - "spate", - "spritz", - "surge", - "tide", - "torrent", - "tributary", - "watercourse" - ], - "tags": { - "waterway": "stream" - }, - "name": "Stream" -} diff --git a/data/presets/presets/waterway/stream_intermittent.json b/data/presets/presets/waterway/stream_intermittent.json deleted file mode 100644 index 831817c0b9..0000000000 --- a/data/presets/presets/waterway/stream_intermittent.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "icon": "iD-waterway-stream", - "fields": [ - "{waterway/stream}" - ], - "moreFields": [ - "{waterway/stream}" - ], - "geometry": [ - "line" - ], - "terms": [ - "arroyo", - "beck", - "branch", - "brook", - "burn", - "course", - "creek", - "drift", - "flood", - "flow", - "gully", - "run", - "runnel", - "rush", - "spate", - "spritz", - "tributary", - "wadi", - "wash", - "watercourse" - ], - "tags": { - "waterway": "stream", - "intermittent": "yes" - }, - "reference": { - "key": "waterway", - "value": "stream" - }, - "name": "Intermittent Stream" -} diff --git a/data/presets/presets/waterway/tidal_channel.json b/data/presets/presets/waterway/tidal_channel.json deleted file mode 100644 index f86987decc..0000000000 --- a/data/presets/presets/waterway/tidal_channel.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "icon": "iD-waterway-stream", - "fields": [ - "name", - "structure_waterway", - "width", - "salt", - "tidal", - "intermittent" - ], - "moreFields": [ - "covered", - "fishing", - "gnis/feature_id" - ], - "geometry": [ - "line" - ], - "terms": [ - "coastal", - "pill", - "intertidal", - "mangroves", - "marine", - "salt marsh", - "tidal creek", - "tidal flat", - "tidal inlet", - "waterway" - ], - "tags": { - "waterway": "tidal_channel" - }, - "name": "Tidal Channel" -} diff --git a/data/presets/presets/waterway/water_point.json b/data/presets/presets/waterway/water_point.json deleted file mode 100644 index f5b34459d2..0000000000 --- a/data/presets/presets/waterway/water_point.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "icon": "maki-drinking-water", - "fields": [ - "{amenity/water_point}" - ], - "moreFields": [ - "{amenity/water_point}" - ], - "geometry": [ - "point", - "vertex", - "area" - ], - "tags": { - "waterway": "water_point" - }, - "terms": [ - "water faucet", - "water point", - "water tap", - "water source", - "water spigot" - ], - "name": "Marine Drinking Water" -} diff --git a/data/presets/presets/waterway/waterfall.json b/data/presets/presets/waterway/waterfall.json deleted file mode 100644 index 0a2467656f..0000000000 --- a/data/presets/presets/waterway/waterfall.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "icon": "maki-waterfall", - "fields": [ - "name", - "height", - "width", - "intermittent" - ], - "moreFields": [ - "gnis/feature_id" - ], - "geometry": [ - "vertex" - ], - "terms": [ - "fall" - ], - "tags": { - "waterway": "waterfall" - }, - "name": "Waterfall" -} diff --git a/data/presets/presets/waterway/weir.json b/data/presets/presets/waterway/weir.json deleted file mode 100644 index 344dcda221..0000000000 --- a/data/presets/presets/waterway/weir.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "icon": "maki-dam", - "fields": [ - "name", - "operator", - "height", - "material" - ], - "moreFields": [ - "gnis/feature_id", - "seamark/type" - ], - "geometry": [ - "vertex", - "line" - ], - "terms": [ - "low-head dam", - "low-rise dam", - "wier" - ], - "tags": { - "waterway": "weir" - }, - "name": "Weir" -} diff --git a/data/presets/schema/field.json b/data/presets/schema/field.json deleted file mode 100644 index 243a421680..0000000000 --- a/data/presets/schema/field.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "title": "Field", - "description": "A reusable form element for presets", - "type": "object", - "properties": { - "key": { - "description": "Tag key whose value is to be displayed", - "type": "string" - }, - "keys": { - "description": "Tag keys whose value is to be displayed", - "type": "array", - "items": { - "type": "string" - } - }, - "reference": { - "description": "Taginfo documentation parameters (to be used when a field manages multiple tags)", - "type": [ - { - "type": "object", - "properties": { - "key": { - "description": "For documentation of a key", - "type": "string", - "required": true - }, - "value": { - "description": "For documentation of a tag (key and value)", - "type": "string" - } - }, - "additionalProperties": false - }, - { - "type": "object", - "properties": { - "rtype": { - "description": "For documentation of a relation type", - "type": "string" - } - }, - "additionalProperties": false - } - ] - }, - "type": { - "description": "Type of field", - "type": "string", - "enum": [ - "access", - "address", - "check", - "combo", - "cycleway", - "defaultCheck", - "email", - "lanes", - "identifier", - "localized", - "manyCombo", - "maxspeed", - "multiCombo", - "networkCombo", - "number", - "onewayCheck", - "radio", - "restrictions", - "semiCombo", - "structureRadio", - "tel", - "textarea", - "text", - "typeCombo", - "url", - "wikidata", - "wikipedia" - ], - "required": true - }, - "label": { - "description": "English label for the field caption", - "type": "string", - "required": true - }, - "geometry": { - "description": "If specified, only show the field for these kinds of geometry", - "type": "array", - "minItems": 1, - "uniqueItems": true, - "items": { - "type": "string", - "enum": ["point", "vertex", "line", "area", "relation"] - } - }, - "default": { - "description": "The default value for this field", - "type": "string" - }, - "options": { - "description": "List of untranslatable string suggestions (combo fields)", - "type": "array", - "items": { - "type": "string" - } - }, - "universal": { - "description": "If true, this field will appear in the Add Field list for all presets", - "type": "boolean", - "default": false - }, - "icon": { - "type": "string" - }, - "placeholder": { - "description": "Placeholder text for this field", - "type": "string" - }, - "strings": { - "description": "Strings sent to transifex for translation", - "type": "object", - "properties": { - "options": { - "description": "Translatable options (combo fields)", - "type": "object" - } - }, - "additionalProperties": { - "description": "Specialized fields can request translation of arbitrary strings", - "type": "object" - } - }, - "snake_case": { - "description": "If true, replace spaces with underscores in the tag value (combo fields only)", - "type": "boolean", - "default": true - }, - "caseSensitive": { - "description": "If true, allow case sensitive field values (combo fields only)", - "type": "boolean", - "default": false - }, - "minValue": { - "description": "Minimum field value (number fields only)", - "type": "integer" - }, - "maxValue": { - "description": "Maximum field value (number fields only)", - "type": "integer" - }, - "increment": { - "description": "The amount the stepper control should add or subtract (number fields only)", - "minimum": 1, - "type": "integer" - }, - "prerequisiteTag": { - "description": "Tagging constraint for showing this field in the editor", - "type": { - "anyOf": [ - { - "type": "object", - "properties": { - "key": { - "description": "The key of the required tag", - "type": "string", - "required": true - }, - "value": { - "description": "The value that the tag must have. (alternative to 'valueNot')", - "type": "string" - }, - "valueNot": { - "description": "The value that the tag cannot have. (alternative to 'value')", - "type": "string" - } - }, - "additionalProperties": false - }, - { - "type": "object", - "properties": { - "keyNot": { - "description": "A key that must not be present", - "type": "string", - "required": true - } - }, - "additionalProperties": false - } - ] - } - }, - "terms": { - "description": "English synonyms or related search terms", - "type": "array", - "items": { - "type": "string" - } - }, - "countryCodes": { - "description": "Countries where to allow the field, as lowercase ISO 3166-1 alpha-2 codes (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)", - "type": "array", - "uniqueItems": true, - "items": { - "type": "string", - "pattern": "^[a-z]{2}$" - } - }, - "notCountryCodes": { - "description": "Countries where NOT to allow the field, as lowercase ISO 3166-1 alpha-2 codes (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)", - "type": "array", - "uniqueItems": true, - "items": { - "type": "string", - "pattern": "^[a-z]{2}$" - } - }, - "urlFormat": { - "description": "Permalink URL for `identifier` fields. Must contain a {value} placeholder", - "type": "string" - }, - "pattern": { - "description": "Regular expression that a valid `identifier` value is expected to match", - "type": "string" - }, - "usage": { - "description": "The manner and context in which the field is used", - "type": "string", - "enum": ["preset", "changeset", "manual", "group"] - } - }, - "additionalProperties": false -} diff --git a/data/presets/schema/preset.json b/data/presets/schema/preset.json deleted file mode 100644 index beaea5e100..0000000000 --- a/data/presets/schema/preset.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "title": "Preset", - "description": "Associates an icon, form fields, and other UI with a set of OSM tags", - "type": "object", - "properties": { - "name": { - "description": "The English name for the feature", - "type": "string", - "required": true - }, - "geometry": { - "description": "Valid geometry types for the feature, in order of preference", - "type": "array", - "minItems": 1, - "uniqueItems": true, - "items": { - "type": "string", - "enum": ["point", "vertex", "line", "area", "relation"] - }, - "required": true - }, - "tags": { - "description": "Tags that must be present for the preset to match", - "type": "object", - "additionalProperties": { - "type": "string" - }, - "required": true - }, - "addTags": { - "description": "Tags that are added when changing to the preset (default is the same value as 'tags')", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "removeTags": { - "description": "Tags that are removed when changing to another preset (default is the same value as 'addTags' which in turn defaults to 'tags')", - "type": "object", - "additionalProperties": { - "type": "string" - } - }, - "fields": { - "description": "Default form fields that are displayed for the preset", - "type": "array", - "items": { - "type": "string" - } - }, - "moreFields": { - "description": "Additional form fields that can be attached with the 'Add field' dropdown", - "type": "array", - "items": { - "type": "string" - } - }, - "icon": { - "description": "Name of preset icon which represents this preset", - "type": "string" - }, - "imageURL": { - "description": "The URL of a remote image that is more specific than 'icon'", - "type": "string" - }, - "terms": { - "description": "English synonyms or related terms", - "type": "array", - "items": { - "type": "string" - } - }, - "searchable": { - "description": "Whether or not the preset will be suggested via search", - "type": "boolean", - "default": true - }, - "matchScore": { - "description": "The quality score this preset will receive when being compared with other matches (higher is better)", - "type": "number", - "default": 1.0 - }, - "reference": { - "description": "Taginfo documentation parameters (to be used when a preset manages multiple tags)", - "type": "object", - "properties": { - "key": { - "description": "For documentation of a key", - "type": "string", - "required": true - }, - "value": { - "description": "For documentation of a tag (key and value)", - "type": "string" - } - }, - "additionalProperties": false - }, - "replacement": { - "description": "The ID of a preset that is preferable to this one", - "type": "string" - }, - "countryCodes": { - "description": "Countries where to display the preset, as lowercase ISO 3166-1 alpha-2 codes (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)", - "type": "array", - "uniqueItems": true, - "items": { - "type": "string", - "pattern": "^[a-z]{2}$" - } - }, - "notCountryCodes": { - "description": "Countries where NOT to display the preset, as lowercase ISO 3166-1 alpha-2 codes (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)", - "type": "array", - "uniqueItems": true, - "items": { - "type": "string", - "pattern": "^[a-z]{2}$" - } - } - }, - "additionalProperties": false -} diff --git a/data/taginfo.json b/data/taginfo.json deleted file mode 100644 index 4923f4fa8c..0000000000 --- a/data/taginfo.json +++ /dev/null @@ -1,2383 +0,0 @@ -{ - "data_format": 1, - "data_url": "https://raw.githubusercontent.com/openstreetmap/iD/develop/data/taginfo.json", - "project": {"name": "iD Editor", "description": "Online editor for OSM data.", "project_url": "https://github.com/openstreetmap/iD", "doc_url": "https://github.com/openstreetmap/iD/blob/develop/data/presets/README.md", "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@release/dist/img/logo.png", "contact_name": "Quincy Morgan", "contact_email": "q@quincylvania.com"}, - "tags": [ - {"key": "aerialway", "description": "🄿 Aerialway Feature (unsearchable), 🄵 Type", "object_types": ["node", "way"]}, - {"key": "aeroway", "description": "🄿 Aeroway Feature (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport-15.svg"}, - {"key": "amenity", "description": "🄿 Amenity (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"]}, - {"key": "attraction", "description": "🄿 Attraction (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/star-15.svg"}, - {"key": "boundary", "description": "🄿 Boundary (unsearchable), 🄵 Type", "object_types": ["way"]}, - {"key": "building", "description": "🄿 Building (unsearchable), 🄿 Building, 🄵 Building", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"}, - {"key": "embankment", "value": "yes", "description": "🄿 Embankment (unsearchable)", "object_types": ["way"]}, - {"key": "emergency", "description": "🄿 Emergency Feature (unsearchable), 🄵 Type, 🄵 Emergency", "object_types": ["node", "area"]}, - {"key": "ford", "description": "🄿 Ford (unsearchable), 🄵 Type, 🄵 Structure", "object_types": ["way"]}, - {"key": "highway", "description": "🄿 Highway Feature (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"]}, - {"key": "indoor", "description": "🄿 Indoor Feature (unsearchable), 🄵 Type, 🄵 Indoor", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/room.svg"}, - {"key": "landuse", "description": "🄿 Land Use Feature (unsearchable), 🄵 Type", "object_types": ["area"]}, - {"key": "leisure", "description": "🄿 Leisure Feature (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "man_made", "description": "🄿 Man Made Feature (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"}, - {"key": "natural", "description": "🄿 Natural Feature (unsearchable), 🄵 Natural", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/natural-15.svg"}, - {"key": "place", "description": "🄿 Place (unsearchable), 🄵 Type", "object_types": ["node", "area"]}, - {"key": "playground", "description": "🄿 Playground Equipment (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "power", "description": "🄿 Power Feature (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"}, - {"key": "railway", "description": "🄿 Railway Feature (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rail_profile.svg"}, - {"key": "seamark:type", "description": "🄿 Seamark (unsearchable), 🄵 Seamark", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"}, - {"key": "telecom", "description": "🄿 Telecom Feature (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable.svg"}, - {"key": "tourism", "description": "🄿 Tourism Feature (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/attraction-15.svg"}, - {"key": "waterway", "description": "🄿 Waterway Feature (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"]}, - {"key": "addr:interpolation", "description": "🄿 Address Interpolation (unsearchable)", "object_types": ["way"]}, - {"key": "addr:*", "description": "🄿 Address", "object_types": ["node", "area"]}, - {"key": "advertising", "value": "billboard", "description": "🄿 Billboard", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/billboard.svg"}, - {"key": "advertising", "value": "board", "description": "🄿 Notice Board", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulletin_board.svg"}, - {"key": "advertising", "value": "column", "description": "🄿 Advertising Column", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"}, - {"key": "advertising", "value": "poster_box", "description": "🄿 Poster Box", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/poster_box.svg"}, - {"key": "advertising", "value": "totem", "description": "🄿 Advertising Totem", "object_types": ["node"]}, - {"key": "aerialway", "value": "cable_car", "description": "🄿 Cable Car", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tram.svg"}, - {"key": "aerialway", "value": "chair_lift", "description": "🄿 Chair Lift", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chairlift.svg"}, - {"key": "aerialway", "value": "drag_lift", "description": "🄿 Drag Lift", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/drag_lift.svg"}, - {"key": "aerialway", "value": "gondola", "description": "🄿 Gondola Lift", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"}, - {"key": "aerialway", "value": "goods", "description": "🄿 Goods Aerialway", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/goods_lift.svg"}, - {"key": "aerialway", "value": "j-bar", "description": "🄿 J-Bar Lift", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/j_bar_lift.svg"}, - {"key": "aerialway", "value": "magic_carpet", "description": "🄿 Magic Carpet Lift", "object_types": ["way"]}, - {"key": "aerialway", "value": "mixed_lift", "description": "🄿 Mixed Lift", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aerialway-15.svg"}, - {"key": "aerialway", "value": "platter", "description": "🄿 Platter Lift", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/platter_lift.svg"}, - {"key": "aerialway", "value": "pylon", "description": "🄿 Aerialway Pylon", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/aerialway_pole.svg"}, - {"key": "aerialway", "value": "rope_tow", "description": "🄿 Rope Tow Lift", "object_types": ["way"]}, - {"key": "aerialway", "value": "t-bar", "description": "🄿 T-Bar Lift", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/t_bar_lift.svg"}, - {"key": "aerialway", "value": "zip_line", "description": "🄿 Zip Line", "object_types": ["way"]}, - {"key": "aeroway", "value": "aerodrome", "description": "🄿 Airport", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/airport.svg"}, - {"key": "aeroway", "value": "apron", "description": "🄿 Airport Apron", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/planes.svg"}, - {"key": "aeroway", "value": "gate", "description": "🄿 Airport Gate", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plane.svg"}, - {"key": "aeroway", "value": "hangar", "description": "🄿 Hangar", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hangar.svg"}, - {"key": "aeroway", "value": "helipad", "description": "🄿 Helipad", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport-15.svg"}, - {"key": "aeroway", "value": "holding_position", "description": "🄿 Aircraft Holding Position", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plane_taxiing.svg"}, - {"key": "aeroway", "value": "jet_bridge", "description": "🄿 Jetway", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_walled.svg"}, - {"key": "aeroway", "value": "parking_position", "description": "🄿 Aircraft Parking Position", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plane_taxiing.svg"}, - {"key": "aeroway", "value": "runway", "description": "🄿 Runway", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plane-departure.svg"}, - {"key": "aeroway", "value": "spaceport", "description": "🄿 Spaceport", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-space-shuttle.svg"}, - {"key": "aeroway", "value": "taxiway", "description": "🄿 Taxiway", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plane_taxiing.svg"}, - {"key": "aeroway", "value": "terminal", "description": "🄿 Airport Terminal", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport-15.svg"}, - {"key": "aeroway", "value": "windsock", "description": "🄿 Windsock", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/windsock.svg"}, - {"key": "allotments", "value": "plot", "description": "🄿 Community Garden Plot", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/garden_bed.svg"}, - {"key": "amenity", "value": "bus_station", "description": "🄿 Bus Station / Terminal (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"}, - {"key": "amenity", "value": "coworking_space", "description": "🄿 Coworking Space (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial-15.svg"}, - {"key": "amenity", "value": "embassy", "description": "🄿 Embassy (unsearchable), 🄳 ➜ office=diplomatic", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"}, - {"key": "amenity", "value": "ferry_terminal", "description": "🄿 Ferry Terminal (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ferry.svg"}, - {"key": "amenity", "value": "nursing_home", "description": "🄿 Nursing Home (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair-15.svg"}, - {"key": "amenity", "value": "recycling", "description": "🄿 Recycling (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"}, - {"key": "amenity", "value": "animal_boarding", "description": "🄿 Animal Boarding Facility", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary-15.svg"}, - {"key": "amenity", "value": "animal_breeding", "description": "🄿 Animal Breeding Facility", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary-15.svg"}, - {"key": "amenity", "value": "animal_shelter", "description": "🄿 Animal Shelter", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary-15.svg"}, - {"key": "amenity", "value": "arts_centre", "description": "🄿 Arts Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre-15.svg"}, - {"key": "amenity", "value": "atm", "description": "🄿 ATM", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank-15.svg"}, - {"key": "amenity", "value": "bank", "description": "🄿 Bank", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank-15.svg"}, - {"key": "amenity", "value": "bar", "description": "🄿 Bar", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bar-15.svg"}, - {"key": "lgbtq", "value": "primary", "description": "🄿 LGBTQ+ Bar, 🄿 LGBTQ+ Community Center, 🄿 LGBTQ+ Nightclub, 🄿 LGBTQ+ Pub, 🄿 LGBTQ+ Erotic Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bar-15.svg"}, - {"key": "amenity", "value": "bbq", "description": "🄿 Barbecue/Grill", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bbq-15.svg"}, - {"key": "amenity", "value": "bench", "description": "🄿 Bench", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bench.svg"}, - {"key": "amenity", "value": "bicycle_parking", "description": "🄿 Bicycle Parking", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"}, - {"key": "bicycle_parking", "value": "building", "description": "🄿 Bicycle Parking Garage", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_structure.svg"}, - {"key": "bicycle_parking", "value": "lockers", "description": "🄿 Bicycle Lockers", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_locker.svg"}, - {"key": "bicycle_parking", "value": "shed", "description": "🄿 Bicycle Shed", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"}, - {"key": "amenity", "value": "bicycle_rental", "description": "🄿 Bicycle Rental", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_rental.svg"}, - {"key": "amenity", "value": "bicycle_repair_station", "description": "🄿 Bicycle Repair Tool Stand", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_repair.svg"}, - {"key": "amenity", "value": "biergarten", "description": "🄿 Biergarten", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-beer.svg"}, - {"key": "amenity", "value": "binoculars", "description": "🄿 Mounted Binoculars", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/binoculars.svg"}, - {"key": "amenity", "value": "boat_rental", "description": "🄿 Boat Rental", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_rental.svg"}, - {"key": "amenity", "value": "boat_storage", "description": "🄿 Boat Storage", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_dry_dock.svg"}, - {"key": "amenity", "value": "bureau_de_change", "description": "🄿 Currency Exchange", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"}, - {"key": "amenity", "value": "cafe", "description": "🄿 Cafe", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cafe-15.svg"}, - {"key": "cuisine", "value": "bubble_tea", "description": "🄿 Bubble Tea Cafe", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bubble_tea.svg"}, - {"key": "cuisine", "value": "coffee_shop", "description": "🄿 Coffeehouse", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hot_drink_cup.svg"}, - {"key": "amenity", "value": "car_pooling", "description": "🄿 Car Pooling Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_pool.svg"}, - {"key": "amenity", "value": "car_rental", "description": "🄿 Car Rental", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-rental-15.svg"}, - {"key": "amenity", "value": "car_sharing", "description": "🄿 Car Sharing Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sign_and_car.svg"}, - {"key": "amenity", "value": "car_wash", "description": "🄿 Car Wash", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_wash.svg"}, - {"key": "amenity", "value": "casino", "description": "🄿 Casino", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/casino-15.svg"}, - {"key": "amenity", "value": "charging_station", "description": "🄿 Charging Station", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-charging-station.svg"}, - {"key": "amenity", "value": "childcare", "description": "🄿 Nursery/Childcare", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-child.svg"}, - {"key": "amenity", "value": "cinema", "description": "🄿 Cinema", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cinema-15.svg"}, - {"key": "amenity", "value": "clinic", "description": "🄿 Clinic", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"}, - {"key": "healthcare:speciality", "value": "abortion", "description": "🄿 Abortion Clinic", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "healthcare:speciality", "value": "fertility", "description": "🄿 Fertility Clinic", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "amenity", "value": "clock", "description": "🄿 Clock", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clock.svg"}, - {"key": "display", "value": "sundial", "description": "🄿 Sundial", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clock.svg"}, - {"key": "amenity", "value": "college", "description": "🄿 College Grounds", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/college-15.svg"}, - {"key": "amenity", "value": "community_centre", "description": "🄿 Community Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall-15.svg"}, - {"key": "amenity", "value": "compressed_air", "description": "🄿 Compressed Air", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tachometer-alt.svg"}, - {"key": "amenity", "value": "conference_centre", "description": "🄿 Convention Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-tie.svg"}, - {"key": "amenity", "value": "courthouse", "description": "🄿 Courthouse", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-gavel.svg"}, - {"key": "amenity", "value": "crematorium", "description": "🄿 Crematorium", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"}, - {"key": "amenity", "value": "dentist", "description": "🄿 Dentist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dentist-15.svg"}, - {"key": "amenity", "value": "dive_centre", "description": "🄿 Dive Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/scuba_diving.svg"}, - {"key": "amenity", "value": "doctors", "description": "🄿 Doctor", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"}, - {"key": "amenity", "value": "dojo", "description": "🄿 Dojo / Martial Arts Academy", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "amenity", "value": "dressing_room", "description": "🄿 Changing Room", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store-15.svg"}, - {"key": "amenity", "value": "drinking_water", "description": "🄿 Drinking Water", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"}, - {"key": "amenity", "value": "driving_school", "description": "🄿 Driving School", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"}, - {"key": "amenity", "value": "events_venue", "description": "🄿 Events Venue", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-users.svg"}, - {"key": "amenity", "value": "exhibition_centre", "description": "🄿 Exposition Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-tie.svg"}, - {"key": "amenity", "value": "fast_food", "description": "🄿 Fast Food", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food-15.svg"}, - {"key": "cuisine", "value": "ice_cream", "description": "🄿 Ice Cream Fast Food (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ice-cream.svg"}, - {"key": "cuisine", "value": "burger", "description": "🄿 Burger Fast Food", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food-15.svg"}, - {"key": "cuisine", "value": "chicken", "description": "🄿 Chicken Fast Food", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-drumstick-bite.svg"}, - {"key": "cuisine", "value": "donut", "description": "🄿 Donut Fast Food", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/donut.svg"}, - {"key": "cuisine", "value": "fish_and_chips", "description": "🄿 Fish & Chips Fast Food", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"}, - {"key": "cuisine", "value": "hot_dog", "description": "🄿 Hot Dog Fast Food", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hotdog.svg"}, - {"key": "cuisine", "value": "juice", "description": "🄿 Juice Fast Food", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/drink_cup.svg"}, - {"key": "cuisine", "value": "kebab", "description": "🄿 Kebab Fast Food", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vertical_rotisserie.svg"}, - {"key": "cuisine", "value": "mexican", "description": "🄿 Mexican Fast Food, 🄿 Mexican Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pepper-hot.svg"}, - {"key": "cuisine", "value": "pizza", "description": "🄿 Pizza Fast Food, 🄿 Pizza Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-pizza-15.svg"}, - {"key": "cuisine", "value": "sandwich", "description": "🄿 Sandwich Fast Food", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sandwich.svg"}, - {"key": "amenity", "value": "fire_station", "description": "🄿 Fire Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fire-station-15.svg"}, - {"key": "amenity", "value": "food_court", "description": "🄿 Food Court", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"}, - {"key": "amenity", "value": "fountain", "description": "🄿 Fountain", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fountain.svg"}, - {"key": "amenity", "value": "fuel", "description": "🄿 Gas Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel-15.svg"}, - {"key": "amenity", "value": "gambling", "description": "🄿 Gambling Hall", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-coins.svg"}, - {"key": "amenity", "value": "give_box", "description": "🄿 Free Box", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-box-open.svg"}, - {"key": "amenity", "value": "grave_yard", "description": "🄿 Graveyard", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"}, - {"key": "amenity", "value": "grit_bin", "description": "🄿 Grit Bin", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-box.svg"}, - {"key": "amenity", "value": "hospital", "description": "🄿 Hospital Grounds", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "amenity", "value": "hunting_stand", "description": "🄿 Hunting Stand", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hunting_blind.svg"}, - {"key": "amenity", "value": "ice_cream", "description": "🄿 Ice Cream Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ice-cream.svg"}, - {"key": "amenity", "value": "internet_cafe", "description": "🄿 Internet Cafe", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/antenna.svg"}, - {"key": "amenity", "value": "karaoke_box", "description": "🄿 Karaoke Box", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/karaoke-15.svg"}, - {"key": "amenity", "value": "kindergarten", "description": "🄿 Preschool / Kindergarten Grounds", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"}, - {"key": "amenity", "value": "kneipp_water_cure", "description": "🄿 Kneipp Water Cure", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "amenity", "value": "language_school", "description": "🄿 Language School", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"}, - {"key": "amenity", "value": "lavoir", "description": "🄿 Lavoir", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/detergent_bottle.svg"}, - {"key": "amenity", "value": "letter_box", "description": "🄿 Letter Box", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/letter_box.svg"}, - {"key": "amenity", "value": "library", "description": "🄿 Library", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library-15.svg"}, - {"key": "amenity", "value": "loading_dock", "description": "🄿 Loading Dock", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-loading.svg"}, - {"key": "amenity", "value": "lounger", "description": "🄿 Lounger", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lounger.svg"}, - {"key": "amenity", "value": "love_hotel", "description": "🄿 Love Hotel", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heart-15.svg"}, - {"key": "amenity", "value": "marketplace", "description": "🄿 Marketplace", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "amenity", "value": "monastery", "description": "🄿 Monastery Grounds", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"}, - {"key": "amenity", "value": "money_transfer", "description": "🄿 Money Transfer Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"}, - {"key": "amenity", "value": "mortuary", "description": "🄿 Morgue", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"}, - {"key": "amenity", "value": "motorcycle_parking", "description": "🄿 Motorcycle Parking", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"}, - {"key": "amenity", "value": "music_school", "description": "🄿 Music School", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"}, - {"key": "amenity", "value": "nightclub", "description": "🄿 Nightclub", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cocktail.svg"}, - {"key": "amenity", "value": "parking_entrance", "description": "🄿 Parking Garage Entrance / Exit", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"}, - {"key": "amenity", "value": "parking_space", "description": "🄿 Parking Space", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/parking_space.svg"}, - {"key": "parking_space", "value": "disabled", "description": "🄿 Accessible Parking Space", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/accessible_space.svg"}, - {"key": "amenity", "value": "parking", "description": "🄿 Parking Lot", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_parked.svg"}, - {"key": "parking", "value": "multi-storey", "description": "🄿 Multilevel Parking Garage, 🄵 Type", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_structure.svg"}, - {"key": "park_ride", "value": "yes", "description": "🄿 Park & Ride Lot", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sign_and_car.svg"}, - {"key": "parking", "value": "underground", "description": "🄿 Underground Parking, 🄵 Type", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_structure.svg"}, - {"key": "amenity", "value": "payment_centre", "description": "🄿 Payment Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"}, - {"key": "amenity", "value": "payment_terminal", "description": "🄿 Payment Terminal", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/far-credit-card.svg"}, - {"key": "amenity", "value": "pharmacy", "description": "🄿 Pharmacy Counter", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pharmacy-15.svg"}, - {"key": "amenity", "value": "photo_booth", "description": "🄿 Photo Booth", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-person-booth.svg"}, - {"key": "amenity", "value": "place_of_worship", "description": "🄿 Place of Worship", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"}, - {"key": "religion", "value": "buddhist", "description": "🄿 Buddhist Temple", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-buddhist-15.svg"}, - {"key": "religion", "value": "christian", "description": "🄿 Christian Church", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"}, - {"key": "denomination", "value": "jehovahs_witness", "description": "🄿 Kingdom Hall of Jehovah's Witnesses", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"}, - {"key": "denomination", "value": "la_luz_del_mundo", "description": "🄿 La Luz del Mundo Temple", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"}, - {"key": "denomination", "value": "quaker", "description": "🄿 Quaker Friends Meeting House", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/quakerism.svg"}, - {"key": "religion", "value": "hindu", "description": "🄿 Hindu Temple", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hinduism.svg"}, - {"key": "religion", "value": "jewish", "description": "🄿 Jewish Synagogue", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-jewish-15.svg"}, - {"key": "religion", "value": "muslim", "description": "🄿 Muslim Mosque", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-muslim-15.svg"}, - {"key": "religion", "value": "shinto", "description": "🄿 Shinto Shrine", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shinto.svg"}, - {"key": "religion", "value": "sikh", "description": "🄿 Sikh Temple", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sikhism.svg"}, - {"key": "religion", "value": "taoist", "description": "🄿 Taoist Temple", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/taoism.svg"}, - {"key": "amenity", "value": "planetarium", "description": "🄿 Planetarium", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/globe-15.svg"}, - {"key": "amenity", "value": "police", "description": "🄿 Police", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/police_officer.svg"}, - {"key": "amenity", "value": "polling_station", "description": "🄿 Permanent Polling Place", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vote-yea.svg"}, - {"key": "amenity", "value": "post_box", "description": "🄿 Mail Drop Box", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/post_box.svg"}, - {"key": "amenity", "value": "post_depot", "description": "🄿 Post Sorting Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mail-bulk.svg"}, - {"key": "amenity", "value": "post_office", "description": "🄿 Post Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/post-15.svg"}, - {"key": "amenity", "value": "prep_school", "description": "🄿 Test Prep / Tutoring School", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"}, - {"key": "amenity", "value": "prison", "description": "🄿 Prison Grounds", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/prison-15.svg"}, - {"key": "amenity", "value": "pub", "description": "🄿 Pub", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer-15.svg"}, - {"key": "theme", "value": "irish", "description": "🄿 Irish Pub", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer-15.svg"}, - {"key": "microbrewery", "value": "yes", "description": "🄿 Brewpub", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer-15.svg"}, - {"key": "amenity", "value": "public_bath", "description": "🄿 Public Bath", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "amenity", "value": "public_bookcase", "description": "🄿 Public Bookcase", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library-15.svg"}, - {"key": "amenity", "value": "ranger_station", "description": "🄿 Ranger Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ranger-station-15.svg"}, - {"key": "recycling_type", "value": "centre", "description": "🄿 Recycling Center, 🄵 Type", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"}, - {"key": "recycling_type", "value": "container", "description": "🄿 Recycling Container, 🄵 Type", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"}, - {"key": "recycling:electrical_items", "value": "yes", "description": "🄿 E-Waste Container", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"}, - {"key": "recycling:green_waste", "value": "yes", "description": "🄿 Green Waste Container", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"}, - {"key": "amenity", "value": "refugee_site", "description": "🄿 Refugee Camp", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tents.svg"}, - {"key": "amenity", "value": "research_institute", "description": "🄿 Research Institute Grounds", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flask.svg"}, - {"key": "amenity", "value": "restaurant", "description": "🄿 Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"}, - {"key": "cuisine", "value": "american", "description": "🄿 American Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"}, - {"key": "cuisine", "value": "asian", "description": "🄿 Asian Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"}, - {"key": "cuisine", "value": "chinese", "description": "🄿 Chinese Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"}, - {"key": "cuisine", "value": "french", "description": "🄿 French Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"}, - {"key": "cuisine", "value": "german", "description": "🄿 German Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"}, - {"key": "cuisine", "value": "greek", "description": "🄿 Greek Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"}, - {"key": "cuisine", "value": "indian", "description": "🄿 Indian Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"}, - {"key": "cuisine", "value": "italian", "description": "🄿 Italian Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"}, - {"key": "cuisine", "value": "japanese", "description": "🄿 Japanese Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"}, - {"key": "cuisine", "value": "noodle", "description": "🄿 Noodle Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"}, - {"key": "cuisine", "value": "seafood", "description": "🄿 Seafood Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-seafood-15.svg"}, - {"key": "cuisine", "value": "steak_house", "description": "🄿 Steakhouse", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slaughterhouse-15.svg"}, - {"key": "cuisine", "value": "sushi", "description": "🄿 Sushi Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/temaki.svg"}, - {"key": "cuisine", "value": "thai", "description": "🄿 Thai Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"}, - {"key": "cuisine", "value": "turkish", "description": "🄿 Turkish Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"}, - {"key": "cuisine", "value": "vietnamese", "description": "🄿 Vietnamese Restaurant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"}, - {"key": "amenity", "value": "sanitary_dump_station", "description": "🄿 RV Toilet Disposal", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/camper_trailer_dump.svg"}, - {"key": "amenity", "value": "school", "description": "🄿 School Grounds", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"}, - {"key": "amenity", "value": "shelter", "description": "🄿 Shelter", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"}, - {"key": "shelter_type", "value": "gazebo", "description": "🄿 Gazebo", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"}, - {"key": "shelter_type", "value": "lean_to", "description": "🄿 Lean-To", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sleep_shelter.svg"}, - {"key": "shelter_type", "value": "picnic_shelter", "description": "🄿 Picnic Shelter", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/picnic_shelter.svg"}, - {"key": "shelter_type", "value": "public_transport", "description": "🄿 Transit Shelter", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/transit_shelter.svg"}, - {"key": "amenity", "value": "shower", "description": "🄿 Shower", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shower.svg"}, - {"key": "amenity", "value": "smoking_area", "description": "🄿 Smoking Area", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-smoking.svg"}, - {"key": "amenity", "value": "social_centre", "description": "🄿 Social Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"}, - {"key": "amenity", "value": "social_facility", "description": "🄿 Social Facility", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/social_facility.svg"}, - {"key": "social_facility", "value": "ambulatory_care", "description": "🄿 Ambulatory Care", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair-15.svg"}, - {"key": "social_facility", "value": "food_bank", "description": "🄿 Food Bank", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/social_facility.svg"}, - {"key": "social_facility:for", "value": "senior", "description": "🄿 Elderly Group Home, 🄿 Nursing Home", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair-15.svg"}, - {"key": "social_facility:for", "value": "homeless", "description": "🄿 Homeless Shelter", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/social_facility.svg"}, - {"key": "amenity", "value": "studio", "description": "🄿 Studio", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"}, - {"key": "studio", "value": "audio", "description": "🄿 Recording Studio", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"}, - {"key": "studio", "value": "radio", "description": "🄿 Radio Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"}, - {"key": "studio", "value": "television", "description": "🄿 Television Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-video.svg"}, - {"key": "studio", "value": "video", "description": "🄿 Film Studio", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-video.svg"}, - {"key": "amenity", "value": "taxi", "description": "🄿 Taxi Stand", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-taxi.svg"}, - {"key": "amenity", "value": "telephone", "description": "🄿 Telephone", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-phone-alt.svg"}, - {"key": "amenity", "value": "theatre", "description": "🄿 Theater", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre-15.svg"}, - {"key": "theatre:type", "value": "amphi", "description": "🄿 Amphitheatre", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre-15.svg"}, - {"key": "amenity", "value": "toilets", "description": "🄿 Toilets", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/toilet-15.svg"}, - {"key": "toilets:disposal", "value": "flush", "description": "🄿 Flush Toilets, 🄵 Disposal", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-toilet.svg"}, - {"key": "toilets:disposal", "value": "pitlatrine", "description": "🄿 Pit Latrine, 🄵 Disposal", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/latrine.svg"}, - {"key": "portable", "value": "yes", "description": "🄿 Portable Toilet", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/latrine.svg"}, - {"key": "amenity", "value": "townhall", "description": "🄿 Town Hall", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"}, - {"key": "townhall:type", "value": "city", "description": "🄿 City Hall", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/capitol.svg"}, - {"key": "amenity", "value": "toy_library", "description": "🄿 Toy Library", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chess-knight.svg"}, - {"key": "amenity", "value": "university", "description": "🄿 University Grounds", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/college-15.svg"}, - {"key": "amenity", "value": "vacuum_cleaner", "description": "🄿 Vacuum Cleaning Station", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vacuum_station.svg"}, - {"key": "amenity", "value": "vehicle_inspection", "description": "🄿 Vehicle Inspection", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"}, - {"key": "amenity", "value": "vending_machine", "description": "🄿 Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"}, - {"key": "vending", "value": "bottle_return", "description": "🄿 Bottle Return Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"}, - {"key": "vending", "value": "bread", "description": "🄿 Bread Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_bread.svg"}, - {"key": "vending", "value": "cigarettes", "description": "🄿 Cigarette Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_cigarettes.svg"}, - {"key": "vending", "value": "coffee", "description": "🄿 Coffee Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_hot_drink.svg"}, - {"key": "vending", "value": "condoms", "description": "🄿 Condom Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_love.svg"}, - {"key": "vending", "value": "drinks", "description": "🄿 Drink Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_cold_drink.svg"}, - {"key": "vending", "value": "eggs", "description": "🄿 Egg Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_eggs.svg"}, - {"key": "vending", "value": "electronics", "description": "🄿 Electronics Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"}, - {"key": "vending", "value": "elongated_coin", "description": "🄿 Flat Coin Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_flat_coin.svg"}, - {"key": "vending", "value": "excrement_bags", "description": "🄿 Excrement Bag Dispenser", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_pet_waste.svg"}, - {"key": "vending", "value": "feminine_hygiene", "description": "🄿 Feminine Hygiene Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_venus.svg"}, - {"key": "vending", "value": "food", "description": "🄿 Food Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"}, - {"key": "vending", "value": "fuel", "description": "🄿 Gas Pump", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel-15.svg"}, - {"key": "vending", "value": "ice_cream", "description": "🄿 Ice Cream Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_ice_cream.svg"}, - {"key": "vending", "value": "ice_cubes", "description": "🄿 Ice Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_ice.svg"}, - {"key": "vending", "value": "newspapers", "description": "🄿 Newspaper Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_newspaper.svg"}, - {"key": "vending", "value": "parcel_pickup;parcel_mail_in", "description": "🄿 Parcel Pickup/Dropoff Locker", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_lockers.svg"}, - {"key": "vending", "value": "parcel_pickup", "description": "🄿 Parcel Pickup Locker", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_lockers.svg"}, - {"key": "vending", "value": "parking_tickets", "description": "🄿 Parking Ticket Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_tickets.svg"}, - {"key": "vending", "value": "public_transport_tickets", "description": "🄿 Transit Ticket Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_tickets.svg"}, - {"key": "vending", "value": "stamps", "description": "🄿 Postage Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_stamps.svg"}, - {"key": "vending", "value": "sweets", "description": "🄿 Snack Vending Machine", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"}, - {"key": "amenity", "value": "veterinary", "description": "🄿 Veterinary", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/veterinary_care.svg"}, - {"key": "amenity", "value": "waste_basket", "description": "🄿 Waste Basket", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waste-basket-15.svg"}, - {"key": "amenity", "value": "waste_disposal", "description": "🄿 Garbage Dumpster", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumpster.svg"}, - {"key": "amenity", "value": "waste_transfer_station", "description": "🄿 Waste Transfer Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-trash-restore.svg"}, - {"key": "waste", "value": "dog_excrement", "description": "🄿 Dog Excrement Bin", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waste-basket-15.svg"}, - {"key": "amenity", "value": "water_point", "description": "🄿 RV Drinking Water", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"}, - {"key": "amenity", "value": "watering_place", "description": "🄿 Animal Watering Place", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"}, - {"key": "amenity", "value": "weighbridge", "description": "🄿 Truck Scale", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-weight.svg"}, - {"key": "area", "value": "yes", "description": "🄿 Area", "object_types": ["area"]}, - {"key": "area:highway", "description": "🄿 Road Area, 🄵 Type", "object_types": ["area"]}, - {"key": "attraction", "value": "amusement_ride", "description": "🄿 Amusement Ride", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park-15.svg"}, - {"key": "attraction", "value": "animal", "description": "🄿 Animal Enclosure", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/zoo-15.svg"}, - {"key": "attraction", "value": "big_wheel", "description": "🄿 Big Wheel", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park-15.svg"}, - {"key": "attraction", "value": "bumper_car", "description": "🄿 Bumper Cars", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-car-crash.svg"}, - {"key": "attraction", "value": "bungee_jumping", "description": "🄿 Bungee Jumping", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "attraction", "value": "carousel", "description": "🄿 Carousel", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/amusement_park.svg"}, - {"key": "attraction", "value": "dark_ride", "description": "🄿 Dark Ride", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/rail-metro-15.svg"}, - {"key": "attraction", "value": "drop_tower", "description": "🄿 Drop Tower Ride", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tower.svg"}, - {"key": "attraction", "value": "kiddie_ride", "description": "🄿 Kiddie Ride", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/amusement_park.svg"}, - {"key": "attraction", "value": "log_flume", "description": "🄿 Log Flume", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ferry-15.svg"}, - {"key": "attraction", "value": "maze", "description": "🄿 Maze", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park-15.svg"}, - {"key": "attraction", "value": "pirate_ship", "description": "🄿 Pirate Ship Ride", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger-15.svg"}, - {"key": "attraction", "value": "river_rafting", "description": "🄿 River Rapids Ride", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ferry-15.svg"}, - {"key": "attraction", "value": "roller_coaster", "description": "🄿 Roller Coaster", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/roller_coaster.svg"}, - {"key": "attraction", "value": "summer_toboggan", "description": "🄿 Summer Toboggan", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sledding.svg"}, - {"key": "attraction", "value": "swing_carousel", "description": "🄿 Swing Carousel", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tower.svg"}, - {"key": "attraction", "value": "train", "description": "🄿 Tourist Train", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_kids.svg"}, - {"key": "attraction", "value": "water_slide", "description": "🄿 Water Slide", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/slide.svg"}, - {"key": "barrier", "description": "🄿 Barrier, 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"}, - {"key": "barrier", "value": "entrance", "description": "🄿 Entrance (unsearchable)", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"}, - {"key": "barrier", "value": "block", "description": "🄿 Block", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cube.svg"}, - {"key": "barrier", "value": "bollard", "description": "🄿 Bollard Row, 🄿 Bollard", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bollard_row.svg"}, - {"key": "barrier", "value": "border_control", "description": "🄿 Border Control", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/passport_checkpoint.svg"}, - {"key": "barrier", "value": "cattle_grid", "description": "🄿 Cattle Grid", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cattle_grid.svg"}, - {"key": "barrier", "value": "chain", "description": "🄿 Chain", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rope_fence.svg"}, - {"key": "barrier", "value": "city_wall", "description": "🄿 City Wall", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"}, - {"key": "barrier", "value": "cycle_barrier", "description": "🄿 Cycle Barrier", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cycle_barrier.svg"}, - {"key": "barrier", "value": "ditch", "description": "🄿 Trench", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trench.svg"}, - {"key": "barrier", "value": "fence", "description": "🄿 Fence", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fence-15.svg"}, - {"key": "fence_type", "value": "railing", "description": "🄿 Railing", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railing.svg"}, - {"key": "barrier", "value": "gate", "description": "🄿 Gate", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"}, - {"key": "barrier", "value": "guard_rail", "description": "🄿 Guard Rail", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/guard_rail.svg"}, - {"key": "barrier", "value": "hedge", "description": "🄿 Hedge", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hedge.svg"}, - {"key": "barrier", "value": "height_restrictor", "description": "🄿 Height Restrictor", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/height_restrictor.svg"}, - {"key": "barrier", "value": "kerb", "description": "🄿 Curb", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-raised.svg"}, - {"key": "kerb", "value": "flush", "description": "🄿 Flush Curb", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-flush.svg"}, - {"key": "kerb", "value": "lowered", "description": "🄿 Lowered Curb", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-lowered.svg"}, - {"key": "kerb", "value": "raised", "description": "🄿 Raised Curb", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-raised.svg"}, - {"key": "kerb", "value": "rolled", "description": "🄿 Rolled Curb", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-rolled.svg"}, - {"key": "barrier", "value": "kissing_gate", "description": "🄿 Kissing Gate", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"}, - {"key": "barrier", "value": "lift_gate", "description": "🄿 Lift Gate", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lift_gate.svg"}, - {"key": "barrier", "value": "retaining_wall", "description": "🄿 Retaining Wall", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"}, - {"key": "barrier", "value": "sally_port", "description": "🄿 Sally Port", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dungeon.svg"}, - {"key": "barrier", "value": "spikes", "description": "🄿 Spike Strip", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spike_strip.svg"}, - {"key": "barrier", "value": "stile", "description": "🄿 Stile", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/stile_squeezer.svg"}, - {"key": "barrier", "value": "swing_gate", "description": "🄿 Swing Gate", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"}, - {"key": "barrier", "value": "toll_booth", "description": "🄿 Toll Booth", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"}, - {"key": "barrier", "value": "turnstile", "description": "🄿 Turnstile", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/turnstile.svg"}, - {"key": "barrier", "value": "wall", "description": "🄿 Wall", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"}, - {"key": "wall", "value": "noise_barrier", "description": "🄿 Noise Barrier", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"}, - {"key": "boundary", "value": "administrative", "description": "🄿 Administrative Boundary", "object_types": ["way"]}, - {"key": "bridge:support", "description": "🄿 Bridge Support, 🄵 Type", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"}, - {"key": "bridge:support", "value": "pier", "description": "🄿 Bridge Pier", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"}, - {"key": "building:part", "description": "🄿 Building Part", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "bunker", "description": "🄿 Bunker (unsearchable)", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunker.svg"}, - {"key": "building", "value": "entrance", "description": "🄿 Entrance/Exit (unsearchable), 🄳 ➜ entrance=*", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"}, - {"key": "building", "value": "train_station", "description": "🄿 Train Station Building (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "apartments", "description": "🄿 Apartment Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "barn", "description": "🄿 Barn", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/barn.svg"}, - {"key": "building", "value": "boathouse", "description": "🄿 Boathouse", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"}, - {"key": "building", "value": "bungalow", "description": "🄿 Bungalow", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"}, - {"key": "building", "value": "cabin", "description": "🄿 Cabin", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"}, - {"key": "building", "value": "carport", "description": "🄿 Carport", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/carport.svg"}, - {"key": "building", "value": "cathedral", "description": "🄿 Cathedral Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-church.svg"}, - {"key": "building", "value": "chapel", "description": "🄿 Chapel Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"}, - {"key": "building", "value": "church", "description": "🄿 Church Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-church.svg"}, - {"key": "building", "value": "civic", "description": "🄿 Civic Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "college", "description": "🄿 College Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"}, - {"key": "building", "value": "commercial", "description": "🄿 Commercial Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "building", "value": "construction", "description": "🄿 Building Under Construction", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "cowshed", "description": "🄿 Cowshed", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/barn.svg"}, - {"key": "building", "value": "detached", "description": "🄿 Detached House", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"}, - {"key": "building", "value": "dormitory", "description": "🄿 Dormitory", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "farm_auxiliary", "description": "🄿 Farm Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"}, - {"key": "building", "value": "farm", "description": "🄿 Farm House", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"}, - {"key": "building", "value": "garage", "description": "🄿 Garage", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"}, - {"key": "building", "value": "garages", "description": "🄿 Garages", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"}, - {"key": "building", "value": "grandstand", "description": "🄿 Grandstand", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "greenhouse", "description": "🄿 Greenhouse", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"}, - {"key": "building", "value": "hangar", "description": "🄿 Hangar Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"}, - {"key": "building", "value": "hospital", "description": "🄿 Hospital Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hospital-alt.svg"}, - {"key": "building", "value": "hotel", "description": "🄿 Hotel Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hotel.svg"}, - {"key": "building", "value": "house", "description": "🄿 House", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"}, - {"key": "building", "value": "houseboat", "description": "🄿 Houseboat", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/houseboat.svg"}, - {"key": "building", "value": "hut", "description": "🄿 Hut", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"}, - {"key": "building", "value": "industrial", "description": "🄿 Industrial Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"}, - {"key": "building", "value": "kindergarten", "description": "🄿 Preschool / Kindergarten Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"}, - {"key": "building", "value": "mosque", "description": "🄿 Mosque Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mosque.svg"}, - {"key": "building", "value": "office", "description": "🄿 Office Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "building", "value": "pavilion", "description": "🄿 Pavilion Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "public", "description": "🄿 Public Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "residential", "description": "🄿 Residential Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community-15.svg"}, - {"key": "building", "value": "retail", "description": "🄿 Retail Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial-15.svg"}, - {"key": "building", "value": "roof", "description": "🄿 Roof", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"}, - {"key": "building", "value": "ruins", "description": "🄿 Building Ruins", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"}, - {"key": "building", "value": "school", "description": "🄿 School Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"}, - {"key": "building", "value": "semidetached_house", "description": "🄿 Semi-Detached House", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"}, - {"key": "building", "value": "service", "description": "🄿 Service Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "shed", "description": "🄿 Shed", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"}, - {"key": "building", "value": "stable", "description": "🄿 Stable", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horse_shelter.svg"}, - {"key": "building", "value": "stadium", "description": "🄿 Stadium Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/stadium-15.svg"}, - {"key": "building", "value": "static_caravan", "description": "🄿 Static Mobile Home", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manufactured_home.svg"}, - {"key": "building", "value": "sty", "description": "🄿 Pigsty", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/barn.svg"}, - {"key": "building", "value": "temple", "description": "🄿 Temple Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"}, - {"key": "building", "value": "terrace", "description": "🄿 Row Houses", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/row_houses.svg"}, - {"key": "building", "value": "transportation", "description": "🄿 Transportation Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"}, - {"key": "building", "value": "university", "description": "🄿 University Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"}, - {"key": "building", "value": "warehouse", "description": "🄿 Warehouse", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/warehouse-15.svg"}, - {"key": "club", "description": "🄿 Club, 🄵 Type", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"}, - {"key": "club", "value": "sport", "description": "🄿 Sports Club", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "craft", "description": "🄿 Craft, 🄵 Type", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "locksmith", "description": "🄿 Locksmith (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/marker-stroked-15.svg"}, - {"key": "craft", "value": "tailor", "description": "🄿 Tailor (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/needle_and_spool.svg"}, - {"key": "craft", "value": "agricultural_engines", "description": "🄿 Agricultural Engines Mechanic", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tools.svg"}, - {"key": "craft", "value": "basket_maker", "description": "🄿 Basket Maker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"}, - {"key": "craft", "value": "beekeeper", "description": "🄿 Beekeeper", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"}, - {"key": "craft", "value": "blacksmith", "description": "🄿 Blacksmith", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/anvil_and_hammer.svg"}, - {"key": "craft", "value": "boatbuilder", "description": "🄿 Boat Builder", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_repair.svg"}, - {"key": "craft", "value": "bookbinder", "description": "🄿 Bookbinder", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library-15.svg"}, - {"key": "craft", "value": "brewery", "description": "🄿 Brewery", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"}, - {"key": "craft", "value": "carpenter", "description": "🄿 Carpenter", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"}, - {"key": "craft", "value": "carpet_layer", "description": "🄿 Carpet Layer", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "caterer", "description": "🄿 Caterer", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/catering.svg"}, - {"key": "craft", "value": "chimney_sweeper", "description": "🄿 Chimney Sweeper", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chimney.svg"}, - {"key": "craft", "value": "cleaning", "description": "🄿 Cleaning Service", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vacuum.svg"}, - {"key": "craft", "value": "clockmaker", "description": "🄿 Clockmaker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clock.svg"}, - {"key": "craft", "value": "confectionery", "description": "🄿 Candy Maker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery-15.svg"}, - {"key": "craft", "value": "distillery", "description": "🄿 Distillery", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"}, - {"key": "craft", "value": "dressmaker", "description": "🄿 Dressmaker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/dress.svg"}, - {"key": "craft", "value": "electrician", "description": "🄿 Electrician", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"}, - {"key": "craft", "value": "electronics_repair", "description": "🄿 Electronics Repair Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-screwdriver.svg"}, - {"key": "craft", "value": "floorer", "description": "🄿 Floorer", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"}, - {"key": "craft", "value": "gardener", "description": "🄿 Gardener", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"}, - {"key": "craft", "value": "glaziery", "description": "🄿 Glaziery", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/window.svg"}, - {"key": "craft", "value": "handicraft", "description": "🄿 Handicraft Workspace", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"}, - {"key": "craft", "value": "hvac", "description": "🄿 HVAC Workplace", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "insulation", "description": "🄿 Insulator", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "joiner", "description": "🄿 Joiner", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"}, - {"key": "craft", "value": "key_cutter", "description": "🄿 Key Cutter", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-key.svg"}, - {"key": "craft", "value": "metal_construction", "description": "🄿 Metalworker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "painter", "description": "🄿 Painter", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paint-roller.svg"}, - {"key": "craft", "value": "parquet_layer", "description": "🄿 Parquet Layer", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"}, - {"key": "craft", "value": "photographer", "description": "🄿 Photographer", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/attraction-15.svg"}, - {"key": "craft", "value": "photographic_laboratory", "description": "🄿 Photographic Laboratory", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-film.svg"}, - {"key": "craft", "value": "plasterer", "description": "🄿 Plasterer", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"}, - {"key": "craft", "value": "plumber", "description": "🄿 Plumber", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plumber.svg"}, - {"key": "craft", "value": "pottery", "description": "🄿 Pottery Maker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"}, - {"key": "craft", "value": "rigger", "description": "🄿 Rigger", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "roofer", "description": "🄿 Roofer", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"}, - {"key": "craft", "value": "saddler", "description": "🄿 Saddler", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "sailmaker", "description": "🄿 Sailmaker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "sawmill", "description": "🄿 Sawmill", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging-15.svg"}, - {"key": "craft", "value": "scaffolder", "description": "🄿 Scaffolder", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/scaffold.svg"}, - {"key": "craft", "value": "sculptor", "description": "🄿 Sculptor", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"}, - {"key": "craft", "value": "shoemaker", "description": "🄿 Shoemaker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shoe-15.svg"}, - {"key": "craft", "value": "signmaker", "description": "🄿 Signmaker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "stonemason", "description": "🄿 Stonemason", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"}, - {"key": "craft", "value": "tiler", "description": "🄿 Tiler", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"}, - {"key": "craft", "value": "tinsmith", "description": "🄿 Tinsmith", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "upholsterer", "description": "🄿 Upholsterer", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "craft", "value": "watchmaker", "description": "🄿 Watchmaker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watch-15.svg"}, - {"key": "craft", "value": "window_construction", "description": "🄿 Window Construction", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/window.svg"}, - {"key": "craft", "value": "winery", "description": "🄿 Winery", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/alcohol-shop-15.svg"}, - {"key": "cycleway", "value": "asl", "description": "🄿 Advanced Stop Line", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"}, - {"key": "demolished:building", "description": "🄿 Recently Demolished Building (unsearchable)", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-house-damage.svg"}, - {"key": "disused:amenity", "description": "🄿 Disused Amenity (unsearchable), 🄵 Type", "object_types": ["node", "area"]}, - {"key": "disused:railway", "description": "🄿 Disused Railway Feature (unsearchable), 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rail_profile.svg"}, - {"key": "disused:shop", "description": "🄿 Disused Shop (unsearchable), 🄵 Type", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store-alt-slash.svg"}, - {"key": "emergency", "value": "designated", "description": "🄿 Emergency Access Designated (unsearchable)", "object_types": ["way"]}, - {"key": "emergency", "value": "destination", "description": "🄿 Emergency Access Destination (unsearchable)", "object_types": ["way"]}, - {"key": "emergency", "value": "no", "description": "🄿 Emergency Access No (unsearchable)", "object_types": ["way"]}, - {"key": "emergency", "value": "official", "description": "🄿 Emergency Access Official (unsearchable)", "object_types": ["way"]}, - {"key": "emergency", "value": "private", "description": "🄿 Emergency Access Private (unsearchable)", "object_types": ["way"]}, - {"key": "emergency", "value": "yes", "description": "🄿 Emergency Access Yes (unsearchable)", "object_types": ["way"]}, - {"key": "emergency", "value": "ambulance_station", "description": "🄿 Ambulance Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ambulance.svg"}, - {"key": "emergency", "value": "defibrillator", "description": "🄿 Defibrillator", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/defibrillator-15.svg"}, - {"key": "emergency", "value": "fire_alarm_box", "description": "🄿 Fire Alarm Call Box", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bell.svg"}, - {"key": "emergency", "value": "fire_extinguisher", "description": "🄿 Fire Extinguisher", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fire-extinguisher.svg"}, - {"key": "emergency", "value": "fire_hose", "description": "🄿 Fire Hose", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"}, - {"key": "emergency", "value": "fire_hydrant", "description": "🄿 Fire Hydrant", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fire_hydrant.svg"}, - {"key": "emergency", "value": "first_aid_kit", "description": "🄿 First Aid Kit", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-medkit.svg"}, - {"key": "emergency", "value": "landing_site", "description": "🄿 Emergency Landing Site", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport-15.svg"}, - {"key": "emergency", "value": "life_ring", "description": "🄿 Life Ring", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-life-ring.svg"}, - {"key": "emergency", "value": "lifeguard", "description": "🄿 Lifeguard", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-life-ring.svg"}, - {"key": "emergency", "value": "mountain_rescue", "description": "🄿 Mountain Rescue", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mountain_rescue.svg"}, - {"key": "emergency", "value": "phone", "description": "🄿 Emergency Phone", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/emergency-phone-15.svg"}, - {"key": "emergency", "value": "siren", "description": "🄿 Siren", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-volume-up.svg"}, - {"key": "emergency", "value": "water_tank", "description": "🄿 Emergency Water Tank", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "entrance", "description": "🄿 Entrance / Exit, 🄵 Type", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"}, - {"key": "emergency", "value": "emergency_ward_entrance", "description": "🄿 Emergency Room Entrance", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "entrance", "value": "emergency", "description": "🄿 Emergency Exit", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"}, - {"key": "ford", "value": "yes", "description": "🄿 Ford", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "golf", "value": "bunker", "description": "🄿 Sand Trap", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"}, - {"key": "golf", "value": "cartpath", "description": "🄿 Golf Cartpath", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_cart.svg"}, - {"key": "golf", "value": "clubhouse", "description": "🄿 Golf Clubhouse", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"}, - {"key": "golf", "value": "driving_range", "description": "🄿 Driving Range", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"}, - {"key": "golf", "value": "fairway", "description": "🄿 Fairway", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"}, - {"key": "golf", "value": "green", "description": "🄿 Putting Green", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_green.svg"}, - {"key": "golf", "value": "hole", "description": "🄿 Golf Hole", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_green.svg"}, - {"key": "golf", "value": "lateral_water_hazard", "description": "🄿 Lateral Water Hazard", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"}, - {"key": "golf", "value": "path", "description": "🄿 Golf Walking Path", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"}, - {"key": "golf", "value": "rough", "description": "🄿 Rough", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"}, - {"key": "golf", "value": "tee", "description": "🄿 Tee Box", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"}, - {"key": "golf", "value": "water_hazard", "description": "🄿 Water Hazard", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"}, - {"key": "healthcare", "description": "🄿 Healthcare Facility, 🄵 Type", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "healthcare", "value": "alternative", "description": "🄿 Alternative Medicine", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "healthcare:speciality", "value": "chiropractic", "description": "🄿 Chiropractor", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "healthcare", "value": "audiologist", "description": "🄿 Audiologist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "healthcare", "value": "birthing_center", "description": "🄿 Birthing Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"}, - {"key": "healthcare", "value": "blood_donation", "description": "🄿 Blood Donor Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/blood-bank-15.svg"}, - {"key": "healthcare", "value": "counselling", "description": "🄿 Counselling Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comments.svg"}, - {"key": "healthcare:speciality", "value": "orthodontics", "description": "🄿 Orthodontist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-teeth.svg"}, - {"key": "healthcare", "value": "hospice", "description": "🄿 Hospice", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "healthcare", "value": "laboratory", "description": "🄿 Medical Laboratory", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vial.svg"}, - {"key": "healthcare", "value": "midwife", "description": "🄿 Midwife", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"}, - {"key": "healthcare", "value": "occupational_therapist", "description": "🄿 Occupational Therapist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "healthcare", "value": "optometrist", "description": "🄿 Optometrist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-eye.svg"}, - {"key": "healthcare", "value": "physiotherapist", "description": "🄿 Physiotherapist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/physiotherapist.svg"}, - {"key": "healthcare", "value": "podiatrist", "description": "🄿 Podiatrist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "healthcare", "value": "psychotherapist", "description": "🄿 Psychotherapist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "healthcare", "value": "rehabilitation", "description": "🄿 Rehabilitation Facility", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"}, - {"key": "healthcare", "value": "speech_therapist", "description": "🄿 Speech Therapist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comment.svg"}, - {"key": "highway", "value": "bus_stop", "description": "🄿 Bus Stop (unsearchable)", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"}, - {"key": "highway", "value": "crossing", "description": "🄿 Crossing (unsearchable)", "object_types": ["node"]}, - {"key": "highway", "value": "bridleway", "description": "🄿 Bridle Path", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"}, - {"key": "highway", "value": "bus_guideway", "description": "🄿 Bus Guideway", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus_guided.svg"}, - {"key": "access", "value": "no", "description": "🄿 Closed Road, 🄵 Allowed Access", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/barrier-15.svg"}, - {"key": "highway", "value": "corridor", "description": "🄿 Indoor Corridor", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_walled.svg"}, - {"key": "traffic_calming", "value": "table", "description": "🄿 Marked Crosswalk (Raised) (unsearchable), 🄿 Marked Crosswalk (Raised), 🄿 Unmarked Crossing (Raised), 🄿 Speed Table", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_crosswalk.svg"}, - {"key": "crossing", "value": "zebra", "description": "🄿 Marked Crosswalk (unsearchable)", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_crosswalk.svg"}, - {"key": "crossing", "value": "marked", "description": "🄿 Marked Crosswalk, 🄿 Marked Cycle Crossing", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_crosswalk.svg"}, - {"key": "crossing", "value": "unmarked", "description": "🄿 Unmarked Crossing, 🄿 Unmarked Cycle Crossing", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "highway", "value": "cycleway", "description": "🄿 Cycle Path", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-biking.svg"}, - {"key": "cycleway", "value": "crossing", "description": "🄿 Cycle Crossing (unsearchable)", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cyclist_crosswalk.svg"}, - {"key": "foot", "value": "designated", "description": "🄿 Cycle & Foot Path, 🄿 Cycle & Foot Crossing, 🄵 Allowed Access", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_and_cyclist.svg"}, - {"key": "highway", "value": "elevator", "description": "🄿 Elevator", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/elevator.svg"}, - {"key": "highway", "value": "emergency_bay", "description": "🄿 Emergency Stopping Place", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"}, - {"key": "highway", "value": "footway", "description": "🄿 Foot Path", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "footway", "value": "crossing", "description": "🄿 Pedestrian Crossing (unsearchable)", "object_types": ["way"]}, - {"key": "footway", "value": "access_aisle", "description": "🄿 Access Aisle", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/striped_zone.svg"}, - {"key": "conveying", "description": "🄿 Moving Walkway, 🄿 Escalator, 🄵 Escalator", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "footway", "value": "sidewalk", "description": "🄿 Sidewalk", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "highway", "value": "give_way", "description": "🄿 Yield Sign", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/yield.svg"}, - {"key": "highway", "value": "living_street", "description": "🄿 Living Street", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-living-street.svg"}, - {"key": "highway", "value": "milestone", "description": "🄿 Highway Milestone", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"}, - {"key": "highway", "value": "mini_roundabout", "description": "🄿 Mini-Roundabout", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"}, - {"key": "highway", "value": "motorway_junction", "description": "🄿 Motorway Junction / Exit", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junction.svg"}, - {"key": "highway", "value": "motorway_link", "description": "🄿 Motorway Link", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-motorway-link.svg"}, - {"key": "highway", "value": "motorway", "description": "🄿 Motorway", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-motorway.svg"}, - {"key": "highway", "value": "passing_place", "description": "🄿 Passing Place", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"}, - {"key": "highway", "value": "path", "description": "🄿 Path", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"}, - {"key": "bridge", "value": "boardwalk", "description": "🄿 Boardwalk", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "informal", "value": "yes", "description": "🄿 Informal Path", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"}, - {"key": "highway", "value": "pedestrian", "description": "🄿 Pedestrian Area, 🄿 Pedestrian Street", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "highway", "value": "primary_link", "description": "🄿 Primary Link", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-primary-link.svg"}, - {"key": "highway", "value": "primary", "description": "🄿 Primary Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-primary.svg"}, - {"key": "highway", "value": "raceway", "description": "🄿 Motorsport Racetrack", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speedway_oval.svg"}, - {"key": "sport", "value": "karting", "description": "🄿 Karting Racetrack", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speedway_8.svg"}, - {"key": "sport", "value": "motocross", "description": "🄿 Motocross Racetrack", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"}, - {"key": "highway", "value": "residential", "description": "🄿 Residential Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-residential.svg"}, - {"key": "highway", "value": "rest_area", "description": "🄿 Rest Area", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"}, - {"key": "highway", "value": "road", "description": "🄿 Unknown Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"}, - {"key": "bridge", "description": "🄿 Unknown Road Bridge, 🄵 Type, 🄵 Structure", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"}, - {"key": "highway", "value": "secondary_link", "description": "🄿 Secondary Link", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-secondary-link.svg"}, - {"key": "highway", "value": "secondary", "description": "🄿 Secondary Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-secondary.svg"}, - {"key": "highway", "value": "service", "description": "🄿 Service Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"}, - {"key": "service", "value": "alley", "description": "🄿 Alley", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"}, - {"key": "service", "value": "drive-through", "description": "🄿 Drive-Through", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"}, - {"key": "service", "value": "driveway", "description": "🄿 Driveway", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"}, - {"key": "service", "value": "emergency_access", "description": "🄿 Emergency Access", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"}, - {"key": "service", "value": "parking_aisle", "description": "🄿 Parking Aisle", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"}, - {"key": "highway", "value": "services", "description": "🄿 Service Area", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"}, - {"key": "highway", "value": "speed_camera", "description": "🄿 Speed Camera", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/security_camera.svg"}, - {"key": "highway", "value": "steps", "description": "🄿 Steps", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-steps.svg"}, - {"key": "highway", "value": "stop", "description": "🄿 Stop Sign", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/stop.svg"}, - {"key": "highway", "value": "street_lamp", "description": "🄿 Street Lamp", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/street_lamp_arm.svg"}, - {"key": "highway", "value": "tertiary_link", "description": "🄿 Tertiary Link", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary-link.svg"}, - {"key": "highway", "value": "tertiary", "description": "🄿 Tertiary Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary.svg"}, - {"key": "highway", "value": "toll_gantry", "description": "🄿 Open Road Toll", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/toll_gantry.svg"}, - {"key": "highway", "value": "track", "description": "🄿 Unmaintained Track Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-monster.svg"}, - {"key": "highway", "value": "traffic_mirror", "description": "🄿 Traffic Mirror", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"}, - {"key": "highway", "value": "traffic_signals", "description": "🄿 Traffic Signals", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/traffic_signals.svg"}, - {"key": "highway", "value": "trailhead", "description": "🄿 Trailhead", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hiking.svg"}, - {"key": "highway", "value": "trunk_link", "description": "🄿 Trunk Link", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-trunk-link.svg"}, - {"key": "highway", "value": "trunk", "description": "🄿 Trunk Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-trunk.svg"}, - {"key": "highway", "value": "turning_circle", "description": "🄿 Turning Circle", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"}, - {"key": "highway", "value": "turning_loop", "description": "🄿 Turning Loop (Island)", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-15.svg"}, - {"key": "highway", "value": "unclassified", "description": "🄿 Minor/Unclassified Road", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-unclassified.svg"}, - {"key": "historic", "description": "🄿 Historic Site, 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"}, - {"key": "historic", "value": "archaeological_site", "description": "🄿 Archaeological Site", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"}, - {"key": "historic", "value": "boundary_stone", "description": "🄿 Boundary Stone", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"}, - {"key": "historic", "value": "building", "description": "🄿 Historic Building", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"}, - {"key": "historic", "value": "castle", "description": "🄿 Castle", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"}, - {"key": "castle_type", "value": "fortress", "description": "🄿 Historic Fortress", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"}, - {"key": "castle_type", "value": "palace", "description": "🄿 Palace", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crown.svg"}, - {"key": "castle_type", "value": "stately", "description": "🄿 Château", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crown.svg"}, - {"key": "historic", "value": "city_gate", "description": "🄿 City Gate", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"}, - {"key": "historic", "value": "fort", "description": "🄿 Historic Fort", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"}, - {"key": "historic", "value": "manor", "description": "🄿 Manor House", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"}, - {"key": "historic", "value": "memorial", "description": "🄿 Memorial", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument-15.svg"}, - {"key": "memorial", "value": "plaque", "description": "🄿 Commemorative Plaque", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plaque.svg"}, - {"key": "historic", "value": "monument", "description": "🄿 Monument", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument-15.svg"}, - {"key": "historic", "value": "pillory", "description": "🄿 Historic Pillory", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument-15.svg"}, - {"key": "historic", "value": "ruins", "description": "🄿 Ruins", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"}, - {"key": "historic", "value": "tomb", "description": "🄿 Tomb", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"}, - {"key": "historic", "value": "wayside_cross", "description": "🄿 Wayside Cross", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"}, - {"key": "historic", "value": "wayside_shrine", "description": "🄿 Wayside Shrine", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/landmark-15.svg"}, - {"key": "historic", "value": "wreck", "description": "🄿 Shipwreck", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"}, - {"key": "indoor", "value": "corridor", "description": "🄿 Indoor Corridor (unsearchable), 🄿 Indoor Corridor", "object_types": ["way"]}, - {"key": "indoor", "value": "area", "description": "🄿 Indoor Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/room.svg"}, - {"key": "indoor", "value": "door", "description": "🄿 Indoor Door", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"}, - {"key": "elevator", "value": "yes", "description": "🄿 Indoor Elevator Shaft", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/elevator.svg"}, - {"key": "indoor", "value": "room", "description": "🄿 Room", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/room.svg"}, - {"key": "stairs", "value": "yes", "description": "🄿 Indoor Stairwell", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-steps.svg"}, - {"key": "indoor", "value": "wall", "description": "🄿 Indoor Wall", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"}, - {"key": "internet_access", "value": "wlan", "description": "🄿 Wi-Fi Hotspot, 🄵 Internet Connection", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-wifi.svg"}, - {"key": "junction", "value": "yes", "description": "🄿 Junction", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junction.svg"}, - {"key": "landuse", "value": "basin", "description": "🄿 Basin (unsearchable), 🄳 ➜ natural=water + water=basin", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "landuse", "value": "churchyard", "description": "🄿 Churchyard (unsearchable)", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"}, - {"key": "landuse", "value": "farm", "description": "🄿 Farmland (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"}, - {"key": "landuse", "value": "pond", "description": "🄿 Pond (unsearchable), 🄳 ➜ natural=water + water=pond", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "landuse", "value": "reservoir", "description": "🄿 Reservoir (unsearchable), 🄳 ➜ natural=water + water=reservoir", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "landuse", "value": "allotments", "description": "🄿 Garden Allotments", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"}, - {"key": "landuse", "value": "aquaculture", "description": "🄿 Aquaculture", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aquarium-15.svg"}, - {"key": "landuse", "value": "brownfield", "description": "🄿 Brownfield", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"}, - {"key": "landuse", "value": "cemetery", "description": "🄿 Cemetery", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"}, - {"key": "landuse", "value": "commercial", "description": "🄿 Commercial Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "landuse", "value": "construction", "description": "🄿 Construction Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"}, - {"key": "landuse", "value": "farmland", "description": "🄿 Farmland", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"}, - {"key": "landuse", "value": "farmyard", "description": "🄿 Farmyard", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"}, - {"key": "landuse", "value": "flowerbed", "description": "🄿 Flowerbed", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"}, - {"key": "landuse", "value": "forest", "description": "🄿 Managed Forest", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-alt1-15.svg"}, - {"key": "landuse", "value": "garages", "description": "🄿 Garage Landuse", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"}, - {"key": "landuse", "value": "grass", "description": "🄿 Grass", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lawn.svg"}, - {"key": "landuse", "value": "greenfield", "description": "🄿 Greenfield", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"}, - {"key": "landuse", "value": "greenhouse_horticulture", "description": "🄿 Greenhouse Horticulture", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"}, - {"key": "landuse", "value": "harbour", "description": "🄿 Harbor", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"}, - {"key": "landuse", "value": "industrial", "description": "🄿 Industrial Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"}, - {"key": "industrial", "value": "scrap_yard", "description": "🄿 Scrap Yard", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junk_car.svg"}, - {"key": "industrial", "value": "slaughterhouse", "description": "🄿 Slaughterhouse", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slaughterhouse-15.svg"}, - {"key": "landuse", "value": "landfill", "description": "🄿 Landfill", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"}, - {"key": "landuse", "value": "meadow", "description": "🄿 Meadow", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"}, - {"key": "landuse", "value": "military", "description": "🄿 Military Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"}, - {"key": "military", "value": "airfield", "description": "🄿 Military Airfield", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fighter_jet.svg"}, - {"key": "military", "value": "barracks", "description": "🄿 Barracks", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/army_tent.svg"}, - {"key": "military", "value": "danger_area", "description": "🄿 Danger Area", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger-15.svg"}, - {"key": "military", "value": "naval_base", "description": "🄿 Naval Base", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/anchor_medal.svg"}, - {"key": "military", "value": "obstacle_course", "description": "🄿 Military Obstacle Course", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tire_course.svg"}, - {"key": "military", "value": "range", "description": "🄿 Military Range", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bullseye.svg"}, - {"key": "military", "value": "training_area", "description": "🄿 Military Training Area", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"}, - {"key": "landuse", "value": "orchard", "description": "🄿 Orchard", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-15.svg"}, - {"key": "landuse", "value": "plant_nursery", "description": "🄿 Plant Nursery", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-seedling.svg"}, - {"key": "landuse", "value": "quarry", "description": "🄿 Quarry", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pick_hammer.svg"}, - {"key": "landuse", "value": "railway", "description": "🄿 Railway Corridor", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"}, - {"key": "landuse", "value": "recreation_ground", "description": "🄿 Recreation Ground", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "landuse", "value": "religious", "description": "🄿 Religious Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"}, - {"key": "landuse", "value": "residential", "description": "🄿 Residential Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community-15.svg"}, - {"key": "residential", "value": "apartments", "description": "🄿 Apartment Complex", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community-15.svg"}, - {"key": "landuse", "value": "retail", "description": "🄿 Retail Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial-15.svg"}, - {"key": "landuse", "value": "vineyard", "description": "🄿 Vineyard", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/grapes.svg"}, - {"key": "landuse", "value": "winter_sports", "description": "🄿 Winter Sports Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"}, - {"key": "leisure", "value": "adult_gaming_centre", "description": "🄿 Adult Gaming Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/casino.svg"}, - {"key": "leisure", "value": "amusement_arcade", "description": "🄿 Amusement Arcade", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gaming-15.svg"}, - {"key": "leisure", "value": "bandstand", "description": "🄿 Bandstand", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"}, - {"key": "leisure", "value": "beach_resort", "description": "🄿 Beach Resort", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-umbrella-beach.svg"}, - {"key": "leisure", "value": "bird_hide", "description": "🄿 Bird Hide", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/binoculars.svg"}, - {"key": "leisure", "value": "bleachers", "description": "🄿 Bleachers", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bleachers.svg"}, - {"key": "leisure", "value": "bowling_alley", "description": "🄿 Bowling Alley", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bowling.svg"}, - {"key": "leisure", "value": "common", "description": "🄿 Common", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "leisure", "value": "dance", "description": "🄿 Dance Hall", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"}, - {"key": "dance:teaching", "value": "yes", "description": "🄿 Dance School", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"}, - {"key": "leisure", "value": "disc_golf_course", "description": "🄿 Disc Golf Course", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/disc_golf_basket.svg"}, - {"key": "leisure", "value": "dog_park", "description": "🄿 Dog Park", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dog-park-15.svg"}, - {"key": "leisure", "value": "escape_game", "description": "🄿 Escape Room", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-puzzle-piece.svg"}, - {"key": "leisure", "value": "firepit", "description": "🄿 Fire Pit", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/campfire.svg"}, - {"key": "leisure", "value": "fishing", "description": "🄿 Fishing Spot", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"}, - {"key": "leisure", "value": "fitness_centre", "description": "🄿 Gym / Fitness Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumbbell.svg"}, - {"key": "sport", "value": "yoga", "description": "🄿 Yoga Studio", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "leisure", "value": "fitness_station", "description": "🄿 Outdoor Fitness Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "balance_beam", "description": "🄿 Exercise Balance Beam", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "box", "description": "🄿 Exercise Box", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "horizontal_bar", "description": "🄿 Exercise Horizontal Bar", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "horizontal_ladder", "description": "🄿 Exercise Monkey Bars", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "hyperextension", "description": "🄿 Hyperextension Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "parallel_bars", "description": "🄿 Parallel Bars", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "push-up", "description": "🄿 Push-Up Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "rings", "description": "🄿 Exercise Rings", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "sign", "description": "🄿 Exercise Instruction Sign", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "sit-up", "description": "🄿 Sit-Up Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "fitness_station", "value": "stairs", "description": "🄿 Exercise Stairs", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "leisure", "value": "garden", "description": "🄿 Garden", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"}, - {"key": "garden:type", "value": "botanical", "description": "🄿 Botanical Garden", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"}, - {"key": "garden:type", "value": "community", "description": "🄿 Community Garden", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"}, - {"key": "leisure", "value": "golf_course", "description": "🄿 Golf Course", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"}, - {"key": "leisure", "value": "hackerspace", "description": "🄿 Hackerspace", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-code.svg"}, - {"key": "leisure", "value": "horse_riding", "description": "🄿 Horseback Riding Facility, 🄵 Horseback Riding", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"}, - {"key": "leisure", "value": "ice_rink", "description": "🄿 Ice Rink", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skating.svg"}, - {"key": "leisure", "value": "marina", "description": "🄿 Marina", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sailboat.svg"}, - {"key": "leisure", "value": "miniature_golf", "description": "🄿 Miniature Golf", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_green.svg"}, - {"key": "leisure", "value": "nature_reserve", "description": "🄿 Nature Reserve", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-15.svg"}, - {"key": "leisure", "value": "outdoor_seating", "description": "🄿 Outdoor Seating Area", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"}, - {"key": "leisure", "value": "park", "description": "🄿 Park", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tree_and_bench.svg"}, - {"key": "leisure", "value": "picnic_table", "description": "🄿 Picnic Table", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"}, - {"key": "sport", "value": "chess", "description": "🄿 Chess Table, 🄿 Giant Chess Board", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chess-pawn.svg"}, - {"key": "leisure", "value": "pitch", "description": "🄿 Sport Pitch", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "sport", "value": "american_football", "description": "🄿 American Football Field", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"}, - {"key": "sport", "value": "australian_football", "description": "🄿 Australian Football Field", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"}, - {"key": "sport", "value": "badminton", "description": "🄿 Badminton Court", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis-15.svg"}, - {"key": "sport", "value": "baseball", "description": "🄿 Baseball Field", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/baseball-15.svg"}, - {"key": "sport", "value": "basketball", "description": "🄿 Basketball Court", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/basketball-15.svg"}, - {"key": "sport", "value": "beachvolleyball", "description": "🄿 Beach Volleyball Court", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball-15.svg"}, - {"key": "sport", "value": "boules", "description": "🄿 Boules/Bocce Court", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "sport", "value": "bowls", "description": "🄿 Bowling Green", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "sport", "value": "cricket", "description": "🄿 Cricket Field", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cricket-15.svg"}, - {"key": "sport", "value": "equestrian", "description": "🄿 Riding Arena, 🄵 Dressage Riding", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"}, - {"key": "sport", "value": "field_hockey", "description": "🄿 Field Hockey Pitch", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/field_hockey.svg"}, - {"key": "sport", "value": "horseshoes", "description": "🄿 Horseshoes Pit", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horseshoes.svg"}, - {"key": "sport", "value": "netball", "description": "🄿 Netball Court", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball-15.svg"}, - {"key": "sport", "value": "rugby_league", "description": "🄿 Rugby League Field", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"}, - {"key": "sport", "value": "rugby_union", "description": "🄿 Rugby Union Field", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"}, - {"key": "sport", "value": "shuffleboard", "description": "🄿 Shuffleboard Court", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shuffleboard.svg"}, - {"key": "sport", "value": "skateboard", "description": "🄿 Skate Park", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/skateboard-15.svg"}, - {"key": "sport", "value": "soccer", "description": "🄿 Soccer Field", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/soccer-15.svg"}, - {"key": "sport", "value": "softball", "description": "🄿 Softball Field", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/baseball-15.svg"}, - {"key": "sport", "value": "table_tennis", "description": "🄿 Ping Pong Table", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-table-tennis.svg"}, - {"key": "sport", "value": "tennis", "description": "🄿 Tennis Court", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis-15.svg"}, - {"key": "sport", "value": "volleyball", "description": "🄿 Volleyball Court", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball-15.svg"}, - {"key": "leisure", "value": "playground", "description": "🄿 Playground", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "leisure", "value": "resort", "description": "🄿 Resort", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"}, - {"key": "leisure", "value": "sauna", "description": "🄿 Sauna", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-thermometer-three-quarters.svg"}, - {"key": "leisure", "value": "slipway", "description": "🄿 Slipway", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slipway-15.svg"}, - {"key": "leisure", "value": "sports_centre", "description": "🄿 Sports Center / Complex", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "sport", "value": "climbing", "description": "🄿 Climbing Gym", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/abseiling.svg"}, - {"key": "sport", "value": "swimming", "description": "🄿 Swimming Pool Facility", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"}, - {"key": "leisure", "value": "sports_hall", "description": "🄿 Gymnasium", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "leisure", "value": "stadium", "description": "🄿 Stadium", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "leisure", "value": "swimming_area", "description": "🄿 Natural Swimming Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"}, - {"key": "leisure", "value": "swimming_pool", "description": "🄿 Swimming Pool", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimming-pool.svg"}, - {"key": "leisure", "value": "track", "description": "🄿 Racetrack (Non-Motorsport)", "object_types": ["way", "node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/racetrack_oval.svg"}, - {"key": "sport", "value": "cycling", "description": "🄿 Cycling Track", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-biking.svg"}, - {"key": "sport", "value": "horse_racing", "description": "🄿 Horse Racing Track", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"}, - {"key": "sport", "value": "running", "description": "🄿 Running Track", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "leisure", "value": "trampoline_park", "description": "🄿 Trampoline Park", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chevron-circle-up.svg"}, - {"key": "leisure", "value": "water_park", "description": "🄿 Water Park", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"}, - {"key": "man_made", "value": "adit", "description": "🄿 Adit", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/adit_profile.svg"}, - {"key": "man_made", "value": "antenna", "description": "🄿 Antenna", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/antenna.svg"}, - {"key": "man_made", "value": "beacon", "description": "🄿 Beacon", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/communications-tower-15.svg"}, - {"key": "man_made", "value": "beehive", "description": "🄿 Beehive", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archive.svg"}, - {"key": "man_made", "value": "breakwater", "description": "🄿 Breakwater", "object_types": ["way", "area"]}, - {"key": "man_made", "value": "bridge", "description": "🄿 Bridge Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bridge-15.svg"}, - {"key": "man_made", "value": "bunker_silo", "description": "🄿 Bunker Silo", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunker_silo.svg"}, - {"key": "man_made", "value": "cairn", "description": "🄿 Cairn", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cairn.svg"}, - {"key": "man_made", "value": "chimney", "description": "🄿 Chimney", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chimney.svg"}, - {"key": "man_made", "value": "clearcut", "description": "🄿 Clearcut Forest", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging-15.svg"}, - {"key": "man_made", "value": "courtyard", "description": "🄿 Courtyard", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"}, - {"key": "man_made", "value": "crane", "description": "🄿 Crane", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crane.svg"}, - {"key": "man_made", "value": "cross", "description": "🄿 Cross", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"}, - {"key": "man_made", "value": "cutline", "description": "🄿 Cut line", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging-15.svg"}, - {"key": "man_made", "value": "dovecote", "description": "🄿 Dovecote", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dove.svg"}, - {"key": "man_made", "value": "dyke", "description": "🄿 Levee", "object_types": ["way"]}, - {"key": "man_made", "value": "embankment", "description": "🄿 Embankment", "object_types": ["way"]}, - {"key": "man_made", "value": "flagpole", "description": "🄿 Flagpole", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/embassy-15.svg"}, - {"key": "man_made", "value": "gasometer", "description": "🄿 Gasometer", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"}, - {"key": "man_made", "value": "goods_conveyor", "description": "🄿 Goods Conveyor", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/conveyor.svg"}, - {"key": "man_made", "value": "groyne", "description": "🄿 Groin", "object_types": ["way", "area"]}, - {"key": "man_made", "value": "lighthouse", "description": "🄿 Lighthouse", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lighthouse-15.svg"}, - {"key": "manhole", "description": "🄿 Manhole, 🄵 Type", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manhole.svg"}, - {"key": "manhole", "value": "drain", "description": "🄿 Storm Drain", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manhole.svg"}, - {"key": "manhole", "value": "gas", "description": "🄿 Gas Utility Manhole", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gas_manhole.svg"}, - {"key": "manhole", "value": "power", "description": "🄿 Power Utility Manhole", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_manhole.svg"}, - {"key": "manhole", "value": "sewer", "description": "🄿 Sewer Utility Manhole", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste_manhole.svg"}, - {"key": "manhole", "value": "telecom", "description": "🄿 Telecom Utility Manhole", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable_manhole.svg"}, - {"key": "manhole", "value": "water", "description": "🄿 Water Utility Manhole", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste_manhole.svg"}, - {"key": "man_made", "value": "mast", "description": "🄿 Mast", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast.svg"}, - {"key": "tower:type", "value": "communication", "description": "🄿 Communication Mast, 🄿 Communication Tower", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"}, - {"key": "communication:mobile_phone", "value": "yes", "description": "🄿 Mobile Phone Mast", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"}, - {"key": "communication:radio", "value": "yes", "description": "🄿 Radio Broadcast Mast", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"}, - {"key": "communication:television", "value": "yes", "description": "🄿 Television Broadcast Mast", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"}, - {"key": "man_made", "value": "mineshaft", "description": "🄿 Mineshaft", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mineshaft_cage.svg"}, - {"key": "man_made", "value": "monitoring_station", "description": "🄿 Monitoring Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/antenna.svg"}, - {"key": "man_made", "value": "obelisk", "description": "🄿 Obelisk", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument-15.svg"}, - {"key": "man_made", "value": "observatory", "description": "🄿 Observatory", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/telescope.svg"}, - {"key": "man_made", "value": "petroleum_well", "description": "🄿 Oil Well", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/oil_well.svg"}, - {"key": "man_made", "value": "pier", "description": "🄿 Pier", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pier_fixed.svg"}, - {"key": "floating", "value": "yes", "description": "🄿 Floating Pier", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pier_floating.svg"}, - {"key": "man_made", "value": "pipeline", "description": "🄿 Pipeline", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"}, - {"key": "location", "value": "underground", "description": "🄿 Underground Pipeline, 🄿 Underground Power Cable", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"}, - {"key": "pipeline", "value": "valve", "description": "🄿 Pipeline Valve", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wheel.svg"}, - {"key": "man_made", "value": "pumping_station", "description": "🄿 Pumping Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/powered_pump.svg"}, - {"key": "man_made", "value": "reservoir_covered", "description": "🄿 Covered Reservoir", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "man_made", "value": "silo", "description": "🄿 Silo", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"}, - {"key": "man_made", "value": "storage_tank", "description": "🄿 Storage Tank", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"}, - {"key": "content", "value": "water", "description": "🄿 Water Tank", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"}, - {"key": "man_made", "value": "street_cabinet", "description": "🄿 Street Cabinet", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"}, - {"key": "man_made", "value": "surveillance", "description": "🄿 Surveillance", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/security_camera.svg"}, - {"key": "surveillance:type", "value": "camera", "description": "🄿 Surveillance Camera, 🄵 Surveillance Type", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/security_camera.svg"}, - {"key": "man_made", "value": "survey_point", "description": "🄿 Survey Point", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/benchmark_disk.svg"}, - {"key": "man_made", "value": "torii", "description": "🄿 Torii", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shinto.svg"}, - {"key": "man_made", "value": "tower", "description": "🄿 Tower", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tower.svg"}, - {"key": "tower:type", "value": "bell_tower", "description": "🄿 Bell Tower", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bell.svg"}, - {"key": "tower:type", "value": "cooling", "description": "🄿 Cooling Tower", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cooling_tower.svg"}, - {"key": "tower:type", "value": "defensive", "description": "🄿 Fortified Tower", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"}, - {"key": "tower:type", "value": "minaret", "description": "🄿 Minaret", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/domed_tower.svg"}, - {"key": "tower:type", "value": "observation", "description": "🄿 Observation Tower", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tower.svg"}, - {"key": "man_made", "value": "tunnel", "description": "🄿 Tunnel Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tunnel.svg"}, - {"key": "man_made", "value": "utility_pole", "description": "🄿 Utility Pole", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/utility_pole.svg"}, - {"key": "man_made", "value": "wastewater_plant", "description": "🄿 Wastewater Plant", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste.svg"}, - {"key": "man_made", "value": "water_tap", "description": "🄿 Water Tap", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water_tap.svg"}, - {"key": "man_made", "value": "water_tower", "description": "🄿 Water Tower", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water_tower.svg"}, - {"key": "man_made", "value": "water_well", "description": "🄿 Water Well", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/well_pump_manual.svg"}, - {"key": "man_made", "value": "water_works", "description": "🄿 Water Works", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/powered_pump.svg"}, - {"key": "man_made", "value": "watermill", "description": "🄿 Watermill", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watermill-15.svg"}, - {"key": "man_made", "value": "windmill", "description": "🄿 Windmill", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/windmill-15.svg"}, - {"key": "man_made", "value": "windpump", "description": "🄿 Windpump", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/windpump.svg"}, - {"key": "man_made", "value": "works", "description": "🄿 Factory", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"}, - {"key": "marker", "description": "🄿 Marker, 🄵 Type", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"}, - {"key": "utility", "description": "🄿 Utility Marker, 🄵 Utilities, 🄵 Utility", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"}, - {"key": "utility", "value": "power", "description": "🄿 Power Marker", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"}, - {"key": "military", "value": "bunker", "description": "🄿 Military Bunker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunker.svg"}, - {"key": "military", "value": "checkpoint", "description": "🄿 Military Checkpoint", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military_checkpoint.svg"}, - {"key": "military", "value": "nuclear_explosion_site", "description": "🄿 Nuclear Explosion Site", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger-15.svg"}, - {"key": "military", "value": "office", "description": "🄿 Military Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"}, - {"key": "military", "value": "trench", "description": "🄿 Military Trench", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trench.svg"}, - {"key": "natural", "value": "bare_rock", "description": "🄿 Bare Rock", "object_types": ["area"]}, - {"key": "natural", "value": "bay", "description": "🄿 Bay", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"}, - {"key": "natural", "value": "beach", "description": "🄿 Beach", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"}, - {"key": "natural", "value": "cape", "description": "🄿 Cape", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"}, - {"key": "natural", "value": "cave_entrance", "description": "🄿 Cave Entrance", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-15.svg"}, - {"key": "natural", "value": "cliff", "description": "🄿 Cliff", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cliff_falling_rocks.svg"}, - {"key": "natural", "value": "coastline", "description": "🄿 Coastline", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"}, - {"key": "natural", "value": "fell", "description": "🄿 Fell", "object_types": ["area"]}, - {"key": "natural", "value": "geyser", "description": "🄿 Geyser", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "natural", "value": "glacier", "description": "🄿 Glacier", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/snow.svg"}, - {"key": "natural", "value": "grassland", "description": "🄿 Grassland", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/grass.svg"}, - {"key": "natural", "value": "heath", "description": "🄿 Heath", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shrub_low.svg"}, - {"key": "natural", "value": "hot_spring", "description": "🄿 Hot Spring", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "natural", "value": "mud", "description": "🄿 Mud", "object_types": ["area"]}, - {"key": "natural", "value": "peak", "description": "🄿 Peak", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/mountain-15.svg"}, - {"key": "natural", "value": "reef", "description": "🄿 Reef", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"}, - {"key": "natural", "value": "ridge", "description": "🄿 Ridge", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mountain_range.svg"}, - {"key": "natural", "value": "rock", "description": "🄿 Attached Rock / Boulder", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boulder2.svg"}, - {"key": "natural", "value": "saddle", "description": "🄿 Saddle", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/saddle.svg"}, - {"key": "natural", "value": "sand", "description": "🄿 Sand", "object_types": ["area"]}, - {"key": "natural", "value": "scree", "description": "🄿 Scree", "object_types": ["area"]}, - {"key": "natural", "value": "scrub", "description": "🄿 Scrub", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shrub.svg"}, - {"key": "natural", "value": "shingle", "description": "🄿 Shingle", "object_types": ["area"]}, - {"key": "natural", "value": "shrub", "description": "🄿 Shrub", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shrub.svg"}, - {"key": "natural", "value": "spring", "description": "🄿 Spring", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "natural", "value": "stone", "description": "🄿 Unattached Stone / Boulder", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boulder1.svg"}, - {"key": "natural", "value": "tree_row", "description": "🄿 Tree Row", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tree_row.svg"}, - {"key": "natural", "value": "tree", "description": "🄿 Tree", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-15.svg"}, - {"key": "natural", "value": "valley", "description": "🄿 Valley", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/valley.svg"}, - {"key": "natural", "value": "volcano", "description": "🄿 Volcano", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volcano-15.svg"}, - {"key": "natural", "value": "water", "description": "🄿 Water", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "water", "value": "basin", "description": "🄿 Basin", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "water", "value": "canal", "description": "🄿 Canal Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"}, - {"key": "water", "value": "lake", "description": "🄿 Lake", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "water", "value": "moat", "description": "🄿 Moat", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "water", "value": "pond", "description": "🄿 Pond", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "water", "value": "reservoir", "description": "🄿 Reservoir", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "water", "value": "river", "description": "🄿 River Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"}, - {"key": "water", "value": "stream", "description": "🄿 Stream Area", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"}, - {"key": "water", "value": "wastewater", "description": "🄿 Wastewater Basin", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste.svg"}, - {"key": "natural", "value": "wetland", "description": "🄿 Wetland", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"}, - {"key": "natural", "value": "wood", "description": "🄿 Natural Wood", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-alt1-15.svg"}, - {"key": "network:type", "value": "node_network", "description": "🄿 Recreational Network Node", "object_types": ["node"]}, - {"key": "noexit", "value": "yes", "description": "🄿 No Exit", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/barrier-15.svg"}, - {"key": "office", "description": "🄿 Office, 🄵 Type", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "administrative", "description": "🄿 Administrative Office (unsearchable), 🄳 ➜ office=government", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "physician", "description": "🄿 Physician (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "travel_agent", "description": "🄿 Travel Agency (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "accountant", "description": "🄿 Accountant Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/accounting.svg"}, - {"key": "office", "value": "adoption_agency", "description": "🄿 Adoption Agency", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "advertising_agency", "description": "🄿 Advertising Agency", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "architect", "description": "🄿 Architect Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-drafting-compass.svg"}, - {"key": "office", "value": "association", "description": "🄿 Nonprofit Organization Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "bail_bond_agent", "description": "🄿 Bail Bond Agent", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank-15.svg"}, - {"key": "office", "value": "charity", "description": "🄿 Charity Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "company", "description": "🄿 Corporate Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "consulting", "description": "🄿 Consultancy Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "coworking", "description": "🄿 Coworking Space", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "diplomatic", "description": "🄿 Diplomatic Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"}, - {"key": "diplomatic", "value": "consulate", "description": "🄿 Consulate", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"}, - {"key": "diplomatic", "value": "embassy", "description": "🄿 Embassy", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"}, - {"key": "diplomatic", "value": "liaison", "description": "🄿 Liaison Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"}, - {"key": "office", "value": "educational_institution", "description": "🄿 Educational Institution", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/school-15.svg"}, - {"key": "office", "value": "employment_agency", "description": "🄿 Employment Agency", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "energy_supplier", "description": "🄿 Energy Supplier Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/briefcase_bolt.svg"}, - {"key": "office", "value": "estate_agent", "description": "🄿 Real Estate Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/real_estate_agency.svg"}, - {"key": "office", "value": "financial_advisor", "description": "🄿 Financial Advisor", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "financial", "description": "🄿 Financial Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "forestry", "description": "🄿 Forestry Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "foundation", "description": "🄿 Foundation Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "government", "description": "🄿 Government Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"}, - {"key": "government", "value": "prosecutor", "description": "🄿 Public Prosecutor's Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "government", "value": "register_office", "description": "🄿 Register Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"}, - {"key": "government", "value": "tax", "description": "🄿 Tax and Revenue Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"}, - {"key": "office", "value": "guide", "description": "🄿 Tour Guide Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "insurance", "description": "🄿 Insurance Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/briefcase_shield.svg"}, - {"key": "office", "value": "it", "description": "🄿 Information Technology Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "lawyer", "description": "🄿 Law Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-balance-scale.svg"}, - {"key": "lawyer", "value": "notary", "description": "🄿 Notary Office (unsearchable), 🄳 ➜ office=notary", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "moving_company", "description": "🄿 Moving Company Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-people-carry.svg"}, - {"key": "office", "value": "newspaper", "description": "🄿 Newspaper Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-newspaper.svg"}, - {"key": "office", "value": "ngo", "description": "🄿 NGO Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "notary", "description": "🄿 Notary Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-stamp.svg"}, - {"key": "office", "value": "political_party", "description": "🄿 Political Party Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall-15.svg"}, - {"key": "office", "value": "private_investigator", "description": "🄿 Private Investigator Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-secret.svg"}, - {"key": "office", "value": "quango", "description": "🄿 Quasi-NGO Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "religion", "description": "🄿 Religious Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "research", "description": "🄿 Research Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flask.svg"}, - {"key": "office", "value": "surveyor", "description": "🄿 Surveyor Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vest.svg"}, - {"key": "office", "value": "tax_advisor", "description": "🄿 Tax Advisor Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "telecommunication", "description": "🄿 Telecom Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/telephone-15.svg"}, - {"key": "office", "value": "therapist", "description": "🄿 Therapist Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "office", "value": "water_utility", "description": "🄿 Water Utility Office", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"}, - {"key": "piste:type", "value": "downhill", "description": "🄿 Downhill Ski Run, 🄵 Type", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"}, - {"key": "man_made", "value": "piste:halfpipe", "description": "🄿 Snowsports Half-Pipe", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-snowboarding.svg"}, - {"key": "piste:type", "value": "hike", "description": "🄿 Snowshoeing / Winter Hiking Trail, 🄵 Type", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/snow_shoeing.svg"}, - {"key": "piste:type", "value": "ice_skate", "description": "🄿 Ice Skating Trail, 🄵 Type", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skating.svg"}, - {"key": "piste:type", "value": "nordic", "description": "🄿 Cross-Country Ski Trail, 🄵 Type", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing-nordic.svg"}, - {"key": "piste:type", "description": "🄿 Snowsports Trail / Piste", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"}, - {"key": "piste:type", "value": "skitour", "description": "🄿 Ski Touring Trail, 🄵 Type", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing-nordic.svg"}, - {"key": "piste:type", "value": "sled", "description": "🄿 Sled Run, 🄵 Type", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sledding.svg"}, - {"key": "piste:type", "value": "sleigh", "description": "🄿 Sleigh Trail, 🄵 Type", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-sleigh.svg"}, - {"key": "place", "value": "farm", "description": "🄿 Farm (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"}, - {"key": "place", "value": "city_block", "description": "🄿 City Block", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"}, - {"key": "place", "value": "city", "description": "🄿 City", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/city-15.svg"}, - {"key": "place", "value": "hamlet", "description": "🄿 Hamlet", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"}, - {"key": "place", "value": "island", "description": "🄿 Island", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/island_trees_building.svg"}, - {"key": "place", "value": "islet", "description": "🄿 Islet", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/islet_tree.svg"}, - {"key": "place", "value": "isolated_dwelling", "description": "🄿 Isolated Dwelling", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"}, - {"key": "place", "value": "locality", "description": "🄿 Locality", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"}, - {"key": "place", "value": "neighbourhood", "description": "🄿 Neighborhood", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"}, - {"key": "place", "value": "plot", "description": "🄿 Plot", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"}, - {"key": "place", "value": "quarter", "description": "🄿 Sub-Borough / Quarter", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"}, - {"key": "place", "value": "square", "description": "🄿 Square", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "place", "value": "suburb", "description": "🄿 Borough / Suburb", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"}, - {"key": "place", "value": "town", "description": "🄿 Town", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-15.svg"}, - {"key": "place", "value": "village", "description": "🄿 Village", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/village-15.svg"}, - {"key": "playground", "value": "balancebeam", "description": "🄿 Play Balance Beam", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "playground", "value": "basketrotator", "description": "🄿 Basket Spinner", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "playground", "value": "basketswing", "description": "🄿 Basket Swing", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "playground", "value": "climbingframe", "description": "🄿 Play Climbing Frame", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "playground", "value": "cushion", "description": "🄿 Bouncy Cushion", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "playground", "value": "horizontal_bar", "description": "🄿 Play Horizontal Bar", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"}, - {"key": "playground", "value": "springy", "description": "🄿 Spring Rider", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "playground", "value": "roundabout", "description": "🄿 Play Roundabout", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/stadium-15.svg"}, - {"key": "playground", "value": "sandpit", "description": "🄿 Play Sandbox", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "playground", "value": "seesaw", "description": "🄿 Seesaw", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "playground", "value": "slide", "description": "🄿 Slide", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/slide.svg"}, - {"key": "playground", "value": "structure", "description": "🄿 Play Structure", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/play_structure.svg"}, - {"key": "playground", "value": "swing", "description": "🄿 Swing", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "playground", "value": "zipwire", "description": "🄿 Play Zip Line", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"}, - {"key": "polling_station", "description": "🄿 Temporary Polling Place, 🄵 Polling Place", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vote-yea.svg"}, - {"key": "power", "value": "cable", "description": "🄿 Power Cable (unsearchable)", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable.svg"}, - {"key": "power", "value": "generator", "description": "🄿 Power Generator", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"}, - {"key": "generator:method", "value": "photovoltaic", "description": "🄿 Solar Panel", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"}, - {"key": "generator:source", "value": "hydro", "description": "🄿 Water Turbine", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"}, - {"key": "generator:method", "value": "fission", "description": "🄿 Nuclear Reactor", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/radiation.svg"}, - {"key": "generator:method", "value": "wind_turbine", "description": "🄿 Wind Turbine", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wind_turbine.svg"}, - {"key": "power", "value": "line", "description": "🄿 Power Line", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_tower.svg"}, - {"key": "power", "value": "minor_line", "description": "🄿 Minor Power Line", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/power-line.svg"}, - {"key": "power", "value": "plant", "description": "🄿 Power Station Grounds", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"}, - {"key": "plant:source", "value": "coal", "description": "🄿 Coal-Fired Power Plant", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"}, - {"key": "plant:source", "value": "gas", "description": "🄿 Gas-Fired Power Plant", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gas.svg"}, - {"key": "plant:source", "value": "hydro", "description": "🄿 Hydroelectric Power Station", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"}, - {"key": "plant:source", "value": "nuclear", "description": "🄿 Nuclear Power Plant", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/radiation.svg"}, - {"key": "plant:source", "value": "solar", "description": "🄿 Solar Farm", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"}, - {"key": "plant:source", "value": "wind", "description": "🄿 Wind Farm", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wind_turbine.svg"}, - {"key": "power", "value": "pole", "description": "🄿 Power Pole", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_pole.svg"}, - {"key": "power", "value": "substation", "description": "🄿 Substation", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"}, - {"key": "power", "value": "switch", "description": "🄿 Power Switch", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_switch.svg"}, - {"key": "power", "value": "tower", "description": "🄿 High-Voltage Tower", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_tower.svg"}, - {"key": "power", "value": "transformer", "description": "🄿 Transformer", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_transformer.svg"}, - {"key": "public_transport", "value": "platform", "description": "🄿 Transit Stop / Platform, 🄿 Transit Platform", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sign_and_bench.svg"}, - {"key": "aerialway", "value": "yes", "description": "🄿 Aerialway Stop / Platform (unsearchable), 🄿 Aerialway Platform, 🄿 Aerialway Stopping Location", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"}, - {"key": "ferry", "value": "yes", "description": "🄿 Ferry Stop / Platform (unsearchable), 🄿 Ferry Platform, 🄿 Ferry Terminal, 🄿 Ferry Stopping Location", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ferry.svg"}, - {"key": "light_rail", "value": "yes", "description": "🄿 Light Rail Stop / Platform (unsearchable), 🄿 Light Rail Platform, 🄿 Light Rail Station, 🄿 Light Rail Stopping Location", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/light_rail.svg"}, - {"key": "monorail", "value": "yes", "description": "🄿 Monorail Stop / Platform (unsearchable), 🄿 Monorail Platform, 🄿 Monorail Station, 🄿 Monorail Stopping Location", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/monorail.svg"}, - {"key": "subway", "value": "yes", "description": "🄿 Subway Stop / Platform (unsearchable), 🄿 Subway Platform, 🄿 Subway Station, 🄿 Subway Stopping Location", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/subway.svg"}, - {"key": "train", "value": "yes", "description": "🄿 Train Stop / Platform (unsearchable), 🄿 Train Platform, 🄿 Train Station, 🄿 Train Stopping Location", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"}, - {"key": "bus", "value": "yes", "description": "🄿 Bus Stop, 🄿 Bus Platform, 🄿 Bus Station / Terminal, 🄿 Bus Stopping Location", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"}, - {"key": "tram", "value": "yes", "description": "🄿 Tram & Bus Stop, 🄿 Tram Stop / Platform, 🄿 Tram Platform, 🄿 Tram Station, 🄿 Tram Stopping Location", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"}, - {"key": "trolleybus", "value": "yes", "description": "🄿 Trolleybus Stop, 🄿 Trolleybus Platform, 🄿 Trolleybus Station / Terminal, 🄿 Trolleybus Stopping Location", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trolleybus.svg"}, - {"key": "aerialway", "value": "station", "description": "🄿 Aerialway Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"}, - {"key": "railway", "value": "halt", "description": "🄿 Train Station (Halt / Request), 🄿 Train Station (Halt / Request) (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rail_flag.svg"}, - {"key": "public_transport", "value": "station", "description": "🄿 Transit Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/transit.svg"}, - {"key": "public_transport", "value": "stop_area", "description": "🄿 Transit Stop Area", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"}, - {"key": "public_transport", "value": "stop_position", "description": "🄿 Transit Stopping Location", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/transit.svg"}, - {"key": "railway", "value": "platform", "description": "🄿 Train Platform (unsearchable), 🄳 ➜ railway=platform + public_transport=platform", "object_types": ["way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/board_train.svg"}, - {"key": "railway", "value": "station", "description": "🄿 Train Station (unsearchable), 🄳 ➜ railway=station + public_transport=station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"}, - {"key": "railway", "value": "tram_stop", "description": "🄿 Tram Stopping Position (unsearchable), 🄳 ➜ railway=tram_stop + public_transport=stop_position + tram=yes", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"}, - {"key": "railway", "value": "abandoned", "description": "🄿 Abandoned Railway", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_askew.svg"}, - {"key": "railway", "value": "buffer_stop", "description": "🄿 Buffer Stop", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buffer_stop.svg"}, - {"key": "railway", "value": "construction", "description": "🄿 Railway Under Construction", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_partial.svg"}, - {"key": "railway", "value": "crossing", "description": "🄿 Railway-Path Crossing", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "railway", "value": "derail", "description": "🄿 Railway Derailer", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"}, - {"key": "railway", "value": "disused", "description": "🄿 Disused Railway", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track.svg"}, - {"key": "railway", "value": "funicular", "description": "🄿 Funicular Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_cable_track.svg"}, - {"key": "railway", "value": "level_crossing", "description": "🄿 Railway-Road Crossing", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cross-15.svg"}, - {"key": "railway", "value": "light_rail", "description": "🄿 Light Rail Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/light_rail.svg"}, - {"key": "railway", "value": "milestone", "description": "🄿 Railway Milestone", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"}, - {"key": "railway", "value": "miniature", "description": "🄿 Miniature Train Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_mini.svg"}, - {"key": "railway", "value": "monorail", "description": "🄿 Monorail Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/monorail.svg"}, - {"key": "monorail", "value": "hanging", "description": "🄿 Hanging Monorail Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hanging_rail.svg"}, - {"key": "railway", "value": "narrow_gauge", "description": "🄿 Narrow Gauge Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_narrow.svg"}, - {"key": "railway:preserved", "value": "yes", "description": "🄿 Heritage Railway Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_steam.svg"}, - {"key": "railway", "value": "rail", "description": "🄿 Train Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track.svg"}, - {"key": "highspeed", "value": "yes", "description": "🄿 High-Speed Train Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_bullet.svg"}, - {"key": "railway", "value": "railway_crossing", "description": "🄿 Railway-Railway Crossing", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/x_oblique.svg"}, - {"key": "railway", "value": "signal", "description": "🄿 Railway Signal", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_signals.svg"}, - {"key": "railway", "value": "subway_entrance", "description": "🄿 Subway Entrance", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-15.svg"}, - {"key": "railway", "value": "subway", "description": "🄿 Subway Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/subway.svg"}, - {"key": "railway", "value": "switch", "description": "🄿 Railway Switch", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junction.svg"}, - {"key": "railway", "value": "wash", "description": "🄿 Train Wash", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_wash.svg"}, - {"key": "railway", "value": "tram_crossing", "description": "🄿 Tram-Path Crossing", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crossing_tram_striped.svg"}, - {"key": "railway", "value": "tram_level_crossing", "description": "🄿 Tram-Road Crossing", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crossing_tram_solid.svg"}, - {"key": "railway", "value": "tram", "description": "🄿 Tram Track", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"}, - {"key": "railway", "value": "yard", "description": "🄿 Rail Yard", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/freight_car.svg"}, - {"key": "route", "value": "ferry", "description": "🄿 Ferry Route", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ferry.svg"}, - {"key": "seamark:type", "value": "beacon_isolated_danger", "description": "🄿 Danger Beacon", "object_types": ["node"]}, - {"key": "seamark:type", "value": "beacon_lateral", "description": "🄿 Channel Beacon", "object_types": ["node"]}, - {"key": "seamark:type", "value": "buoy_lateral", "description": "🄿 Channel Buoy", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buoy.svg"}, - {"key": "seamark:buoy_lateral:colour", "value": "green", "description": "🄿 Green Buoy, 🄵 Color", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buoy.svg"}, - {"key": "seamark:buoy_lateral:colour", "value": "red", "description": "🄿 Red Buoy, 🄵 Color", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buoy.svg"}, - {"key": "seamark:type", "value": "mooring", "description": "🄿 Mooring", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horn_cleat.svg"}, - {"key": "shop", "description": "🄿 Shop, 🄵 Type", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "boutique", "description": "🄿 Boutique (unsearchable), 🄳 ➜ shop=clothes", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "fashion", "description": "🄿 Fashion Store (unsearchable), 🄳 ➜ shop=clothes", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "vacant", "description": "🄿 Vacant Shop (unsearchable)", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "agrarian", "description": "🄿 Farm Supply Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"}, - {"key": "shop", "value": "alcohol", "description": "🄿 Liquor Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-wine-bottle.svg"}, - {"key": "shop", "value": "anime", "description": "🄿 Anime / Manga Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dragon.svg"}, - {"key": "shop", "value": "antiques", "description": "🄿 Antiques Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/furniture.svg"}, - {"key": "shop", "value": "appliance", "description": "🄿 Appliance Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/laundry.svg"}, - {"key": "shop", "value": "art", "description": "🄿 Art Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "baby_goods", "description": "🄿 Baby Goods Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby-carriage.svg"}, - {"key": "shop", "value": "bag", "description": "🄿 Bag/Luggage Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-suitcase-rolling.svg"}, - {"key": "shop", "value": "bakery", "description": "🄿 Bakery", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bakery-15.svg"}, - {"key": "shop", "value": "bathroom_furnishing", "description": "🄿 Bathroom Furnishing Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bath.svg"}, - {"key": "shop", "value": "beauty", "description": "🄿 Beauty Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lipstick.svg"}, - {"key": "beauty", "value": "nails", "description": "🄿 Nail Salon", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/polished_nail.svg"}, - {"key": "beauty", "value": "tanning", "description": "🄿 Tanning Salon", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tanning.svg"}, - {"key": "shop", "value": "bed", "description": "🄿 Bedding/Mattress Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"}, - {"key": "shop", "value": "beverages", "description": "🄿 Beverage Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bottles.svg"}, - {"key": "shop", "value": "bicycle", "description": "🄿 Bicycle Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"}, - {"key": "shop", "value": "boat", "description": "🄿 Boat Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat.svg"}, - {"key": "shop", "value": "bookmaker", "description": "🄿 Bookmaker", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"}, - {"key": "shop", "value": "books", "description": "🄿 Book Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-book.svg"}, - {"key": "shop", "value": "brewing_supplies", "description": "🄿 Brewing Supply Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"}, - {"key": "shop", "value": "butcher", "description": "🄿 Butcher", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cleaver.svg"}, - {"key": "shop", "value": "camera", "description": "🄿 Camera Equipment Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-camera-retro.svg"}, - {"key": "shop", "value": "candles", "description": "🄿 Candle Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-burn.svg"}, - {"key": "shop", "value": "cannabis", "description": "🄿 Cannabis Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cannabis.svg"}, - {"key": "shop", "value": "car_parts", "description": "🄿 Car Parts Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-car-battery.svg"}, - {"key": "shop", "value": "car_repair", "description": "🄿 Car Repair Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-repair-15.svg"}, - {"key": "shop", "value": "car", "description": "🄿 Car Dealership", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"}, - {"key": "second_hand", "value": "only", "description": "🄿 Used Car Dealership, 🄿 Secondhand Clothing Store, 🄵 Sells Used", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"}, - {"key": "shop", "value": "caravan", "description": "🄿 RV Dealership", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/camper_trailer.svg"}, - {"key": "shop", "value": "carpet", "description": "🄿 Carpet Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"}, - {"key": "shop", "value": "catalogue", "description": "🄿 Catalog Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "charity", "description": "🄿 Charity Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "cheese", "description": "🄿 Cheese Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cheese.svg"}, - {"key": "shop", "value": "chemist", "description": "🄿 Drugstore", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-basket.svg"}, - {"key": "shop", "value": "chocolate", "description": "🄿 Chocolate Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery-15.svg"}, - {"key": "shop", "value": "clothes", "description": "🄿 Clothing Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store-15.svg"}, - {"key": "clothes", "value": "underwear", "description": "🄿 Underwear Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store-15.svg"}, - {"key": "clothes", "value": "wedding", "description": "🄿 Wedding Clothes Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gown.svg"}, - {"key": "shop", "value": "coffee", "description": "🄿 Coffee Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/coffee.svg"}, - {"key": "shop", "value": "collector", "description": "🄿 Collectibles Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-th.svg"}, - {"key": "shop", "value": "computer", "description": "🄿 Computer Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-laptop.svg"}, - {"key": "shop", "value": "confectionery", "description": "🄿 Candy Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery-15.svg"}, - {"key": "shop", "value": "convenience", "description": "🄿 Convenience Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-basket.svg"}, - {"key": "shop", "value": "copyshop", "description": "🄿 Copy Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-print.svg"}, - {"key": "shop", "value": "cosmetics", "description": "🄿 Cosmetics Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lipstick.svg"}, - {"key": "shop", "value": "country_store", "description": "🄿 Country Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hat-cowboy-side.svg"}, - {"key": "shop", "value": "craft", "description": "🄿 Arts & Crafts Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cut.svg"}, - {"key": "shop", "value": "curtain", "description": "🄿 Curtain Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/curtains.svg"}, - {"key": "shop", "value": "dairy", "description": "🄿 Dairy Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cheese.svg"}, - {"key": "shop", "value": "deli", "description": "🄿 Deli", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/meat.svg"}, - {"key": "shop", "value": "department_store", "description": "🄿 Department Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "doityourself", "description": "🄿 DIY Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "shop", "value": "doors", "description": "🄿 Door Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-open.svg"}, - {"key": "shop", "value": "dry_cleaning", "description": "🄿 Dry Cleaner", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clothes_hanger.svg"}, - {"key": "shop", "value": "e-cigarette", "description": "🄿 E-Cigarette Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "electrical", "description": "🄿 Electrical Equipment Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"}, - {"key": "shop", "value": "electronics", "description": "🄿 Electronics Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plug.svg"}, - {"key": "shop", "value": "erotic", "description": "🄿 Erotic Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "fabric", "description": "🄿 Fabric Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"}, - {"key": "shop", "value": "farm", "description": "🄿 Produce Stand", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-apple-alt.svg"}, - {"key": "shop", "value": "fashion_accessories", "description": "🄿 Fashion Accessories Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fashion_accessories.svg"}, - {"key": "shop", "value": "fireplace", "description": "🄿 Fireplace Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fireplace.svg"}, - {"key": "shop", "value": "fishing", "description": "🄿 Fishing Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ice_fishing.svg"}, - {"key": "shop", "value": "flooring", "description": "🄿 Flooring Supply Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "shop", "value": "florist", "description": "🄿 Florist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/florist-15.svg"}, - {"key": "shop", "value": "frame", "description": "🄿 Framing Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vector-square.svg"}, - {"key": "shop", "value": "frozen_food", "description": "🄿 Frozen Food Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "fuel", "description": "🄿 Fuel Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/propane_tank.svg"}, - {"key": "shop", "value": "funeral_directors", "description": "🄿 Funeral Home", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"}, - {"key": "shop", "value": "furniture", "description": "🄿 Furniture Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-couch.svg"}, - {"key": "shop", "value": "games", "description": "🄿 Tabletop Game Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dice.svg"}, - {"key": "shop", "value": "garden_centre", "description": "🄿 Garden Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"}, - {"key": "shop", "value": "gas", "description": "🄿 Bottled Gas Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/propane_tank.svg"}, - {"key": "shop", "value": "general", "description": "🄿 General Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "gift", "description": "🄿 Gift Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gift-15.svg"}, - {"key": "shop", "value": "greengrocer", "description": "🄿 Greengrocer", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-carrot.svg"}, - {"key": "shop", "value": "hairdresser_supply", "description": "🄿 Hairdresser Supply Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hair_care.svg"}, - {"key": "shop", "value": "hairdresser", "description": "🄿 Hairdresser", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beauty_salon.svg"}, - {"key": "shop", "value": "hardware", "description": "🄿 Hardware Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "shop", "value": "health_food", "description": "🄿 Health Food Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "hearing_aids", "description": "🄿 Hearing Aids Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hearing_aid.svg"}, - {"key": "shop", "value": "herbalist", "description": "🄿 Herbalist", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-leaf.svg"}, - {"key": "shop", "value": "hifi", "description": "🄿 Hifi Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speaker.svg"}, - {"key": "shop", "value": "hobby", "description": "🄿 Hobby Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dragon.svg"}, - {"key": "shop", "value": "household_linen", "description": "🄿 Household Linen Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cloth.svg"}, - {"key": "shop", "value": "houseware", "description": "🄿 Houseware Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-blender.svg"}, - {"key": "shop", "value": "hunting", "description": "🄿 Hunting Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bow_and_arrow.svg"}, - {"key": "shop", "value": "interior_decoration", "description": "🄿 Interior Decoration Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "jewelry", "description": "🄿 Jewelry Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/jewelry-store-15.svg"}, - {"key": "shop", "value": "kiosk", "description": "🄿 Kiosk", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store.svg"}, - {"key": "shop", "value": "kitchen", "description": "🄿 Kitchen Design Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kitchen_sink.svg"}, - {"key": "shop", "value": "laundry", "description": "🄿 Laundry", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/laundry.svg"}, - {"key": "self_service", "value": "yes", "description": "🄿 Self-Service Laundry", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/laundry.svg"}, - {"key": "shop", "value": "leather", "description": "🄿 Leather Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/handbag.svg"}, - {"key": "shop", "value": "lighting", "description": "🄿 Lighting Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/desk_lamp.svg"}, - {"key": "shop", "value": "locksmith", "description": "🄿 Locksmith", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-key.svg"}, - {"key": "shop", "value": "lottery", "description": "🄿 Lottery Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ticket-alt.svg"}, - {"key": "shop", "value": "mall", "description": "🄿 Mall", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "massage", "description": "🄿 Massage Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spa.svg"}, - {"key": "shop", "value": "medical_supply", "description": "🄿 Medical Supply Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crutch.svg"}, - {"key": "shop", "value": "military_surplus", "description": "🄿 Military Surplus Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"}, - {"key": "shop", "value": "mobile_phone", "description": "🄿 Mobile Phone Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mobile-alt.svg"}, - {"key": "shop", "value": "model", "description": "🄿 Model Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "money_lender", "description": "🄿 Money Lender", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"}, - {"key": "shop", "value": "motorcycle_repair", "description": "🄿 Motorcycle Repair Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/motorcycle_repair.svg"}, - {"key": "shop", "value": "motorcycle", "description": "🄿 Motorcycle Dealership", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"}, - {"key": "shop", "value": "music", "description": "🄿 Music Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compact-disc.svg"}, - {"key": "shop", "value": "musical_instrument", "description": "🄿 Musical Instrument Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-guitar.svg"}, - {"key": "shop", "value": "newsagent", "description": "🄿 Newspaper/Magazine Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-newspaper.svg"}, - {"key": "shop", "value": "nutrition_supplements", "description": "🄿 Nutrition Supplements Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pills.svg"}, - {"key": "shop", "value": "optician", "description": "🄿 Optician", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/optician-15.svg"}, - {"key": "shop", "value": "outdoor", "description": "🄿 Outdoors Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/compass.svg"}, - {"key": "shop", "value": "outpost", "description": "🄿 Online Retailer Outpost", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "paint", "description": "🄿 Paint Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paint-roller.svg"}, - {"key": "shop", "value": "party", "description": "🄿 Party Supply Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/balloon.svg"}, - {"key": "shop", "value": "pastry", "description": "🄿 Pastry Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bakery-15.svg"}, - {"key": "shop", "value": "pawnbroker", "description": "🄿 Pawn Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"}, - {"key": "shop", "value": "perfumery", "description": "🄿 Perfume Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/perfume.svg"}, - {"key": "shop", "value": "pet_grooming", "description": "🄿 Pet Grooming Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pet_grooming.svg"}, - {"key": "shop", "value": "pet", "description": "🄿 Pet Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cat.svg"}, - {"key": "shop", "value": "photo", "description": "🄿 Photography Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-camera-retro.svg"}, - {"key": "shop", "value": "pottery", "description": "🄿 Pottery Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"}, - {"key": "shop", "value": "printer_ink", "description": "🄿 Printer Ink Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-print.svg"}, - {"key": "shop", "value": "psychic", "description": "🄿 Psychic", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/psychic.svg"}, - {"key": "shop", "value": "pyrotechnics", "description": "🄿 Fireworks Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rocket_firework.svg"}, - {"key": "shop", "value": "radiotechnics", "description": "🄿 Radio/Electronic Component Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microchip.svg"}, - {"key": "shop", "value": "religion", "description": "🄿 Religious Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "rental", "description": "🄿 Rental Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dolly.svg"}, - {"key": "shop", "value": "scuba_diving", "description": "🄿 Scuba Diving Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/scuba_diving.svg"}, - {"key": "shop", "value": "seafood", "description": "🄿 Seafood Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fish_cleaning.svg"}, - {"key": "shop", "value": "second_hand", "description": "🄿 Consignment/Thrift Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "sewing", "description": "🄿 Sewing Supply Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/needle_and_spool.svg"}, - {"key": "shop", "value": "shoe_repair", "description": "🄿 Shoe Repair Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shoe-15.svg"}, - {"key": "shop", "value": "shoes", "description": "🄿 Shoe Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shoe-15.svg"}, - {"key": "shop", "value": "spices", "description": "🄿 Spice Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spice_bottle.svg"}, - {"key": "shop", "value": "sports", "description": "🄿 Sporting Goods Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-futbol.svg"}, - {"key": "shop", "value": "stationery", "description": "🄿 Stationery Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paperclip.svg"}, - {"key": "shop", "value": "storage_rental", "description": "🄿 Storage Rental", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_rental.svg"}, - {"key": "shop", "value": "supermarket", "description": "🄿 Supermarket", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/grocery-15.svg"}, - {"key": "organic", "value": "only", "description": "🄿 Organic Supermarket, 🄵 Organic Products", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/grocery-15.svg"}, - {"key": "shop", "value": "swimming_pool", "description": "🄿 Pool Supply Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"}, - {"key": "shop", "value": "tailor", "description": "🄿 Tailor", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/needle_and_spool.svg"}, - {"key": "shop", "value": "tattoo", "description": "🄿 Tattoo Parlor", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tattoo_machine.svg"}, - {"key": "shop", "value": "tea", "description": "🄿 Tea Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/teahouse-15.svg"}, - {"key": "shop", "value": "telecommunication", "description": "🄿 Telecom Retail Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/telephone-15.svg"}, - {"key": "shop", "value": "ticket", "description": "🄿 Ticket Seller", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ticket-alt.svg"}, - {"key": "shop", "value": "tiles", "description": "🄿 Tile Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tiling.svg"}, - {"key": "shop", "value": "tobacco", "description": "🄿 Tobacco Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pipe.svg"}, - {"key": "shop", "value": "tool_hire", "description": "🄿 Tool Rental", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "shop", "value": "toys", "description": "🄿 Toy Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-rocket.svg"}, - {"key": "shop", "value": "trade", "description": "🄿 Trade Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"}, - {"key": "shop", "value": "travel_agency", "description": "🄿 Travel Agency", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-suitcase.svg"}, - {"key": "shop", "value": "trophy", "description": "🄿 Trophy Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-trophy.svg"}, - {"key": "shop", "value": "tyres", "description": "🄿 Tire Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tire.svg"}, - {"key": "shop", "value": "vacuum_cleaner", "description": "🄿 Vacuum Cleaner Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vacuum.svg"}, - {"key": "shop", "value": "variety_store", "description": "🄿 Variety Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "video_games", "description": "🄿 Video Game Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gaming-15.svg"}, - {"key": "shop", "value": "video", "description": "🄿 Video Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/movie_rental.svg"}, - {"key": "shop", "value": "watches", "description": "🄿 Watches Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watch-15.svg"}, - {"key": "shop", "value": "water_sports", "description": "🄿 Watersport/Swim Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"}, - {"key": "shop", "value": "water", "description": "🄿 Drinking Water Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water_bottle.svg"}, - {"key": "shop", "value": "weapons", "description": "🄿 Weapon Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/dagger.svg"}, - {"key": "shop", "value": "wholesale", "description": "🄿 Wholesale Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/warehouse-15.svg"}, - {"key": "shop", "value": "wigs", "description": "🄿 Wig Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"}, - {"key": "shop", "value": "window_blind", "description": "🄿 Window Blind Store", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/window.svg"}, - {"key": "shop", "value": "wine", "description": "🄿 Wine Shop", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/alcohol-shop-15.svg"}, - {"key": "telecom", "value": "data_center", "description": "🄿 Data Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-server.svg"}, - {"key": "telecom", "value": "exchange", "description": "🄿 Telecom Exchange", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable.svg"}, - {"key": "tourism", "value": "alpine_hut", "description": "🄿 Alpine Hut", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"}, - {"key": "tourism", "value": "apartment", "description": "🄿 Guest Apartment / Condo", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"}, - {"key": "tourism", "value": "aquarium", "description": "🄿 Aquarium", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aquarium-15.svg"}, - {"key": "tourism", "value": "artwork", "description": "🄿 Artwork", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"}, - {"key": "artwork_type", "value": "bust", "description": "🄿 Bust", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-alt.svg"}, - {"key": "artwork_type", "value": "graffiti", "description": "🄿 Graffiti", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"}, - {"key": "artwork_type", "value": "installation", "description": "🄿 Art Installation", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sculpture.svg"}, - {"key": "artwork_type", "value": "mural", "description": "🄿 Mural", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"}, - {"key": "artwork_type", "value": "sculpture", "description": "🄿 Sculpture", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sculpture.svg"}, - {"key": "artwork_type", "value": "statue", "description": "🄿 Statue", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/statue.svg"}, - {"key": "tourism", "value": "attraction", "description": "🄿 Tourist Attraction", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/star-15.svg"}, - {"key": "tourism", "value": "camp_pitch", "description": "🄿 Camp Pitch", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"}, - {"key": "tourism", "value": "camp_site", "description": "🄿 Campground", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"}, - {"key": "backcountry", "value": "yes", "description": "🄿 Backcountry Camping Area", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"}, - {"key": "group_only", "value": "yes", "description": "🄿 Group Camping Area", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"}, - {"key": "tourism", "value": "caravan_site", "description": "🄿 RV Park", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/camper_trailer.svg"}, - {"key": "tourism", "value": "chalet", "description": "🄿 Holiday Cottage", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"}, - {"key": "tourism", "value": "gallery", "description": "🄿 Art Gallery", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"}, - {"key": "tourism", "value": "guest_house", "description": "🄿 Guest House", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"}, - {"key": "tourism", "value": "hostel", "description": "🄿 Hostel", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunk_beds.svg"}, - {"key": "tourism", "value": "hotel", "description": "🄿 Hotel", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-concierge-bell.svg"}, - {"key": "tourism", "value": "information", "description": "🄿 Information", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information-15.svg"}, - {"key": "information", "value": "board", "description": "🄿 Information Board", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/info_board.svg"}, - {"key": "board_type", "value": "welcome_sign", "description": "🄿 Welcome Sign", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/embassy-15.svg"}, - {"key": "information", "value": "guidepost", "description": "🄿 Guidepost", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-map-signs.svg"}, - {"key": "information", "value": "map", "description": "🄿 Map", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-map.svg"}, - {"key": "information", "value": "office", "description": "🄿 Visitor Center", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information-15.svg"}, - {"key": "information", "value": "route_marker", "description": "🄿 Trail Marker", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information-15.svg"}, - {"key": "information", "value": "terminal", "description": "🄿 Information Terminal", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/app_terminal.svg"}, - {"key": "tourism", "value": "motel", "description": "🄿 Motel", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"}, - {"key": "tourism", "value": "museum", "description": "🄿 Museum", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/museum.svg"}, - {"key": "museum", "value": "history", "description": "🄿 History Museum", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/museum.svg"}, - {"key": "tourism", "value": "picnic_site", "description": "🄿 Picnic Site", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"}, - {"key": "tourism", "value": "theme_park", "description": "🄿 Theme Park", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park-15.svg"}, - {"key": "tourism", "value": "trail_riding_station", "description": "🄿 Trail Riding Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"}, - {"key": "tourism", "value": "viewpoint", "description": "🄿 Viewpoint", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spotting_scope.svg"}, - {"key": "tourism", "value": "wilderness_hut", "description": "🄿 Wilderness Hut", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"}, - {"key": "tourism", "value": "zoo", "description": "🄿 Zoo", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/zoo.svg"}, - {"key": "zoo", "value": "petting_zoo", "description": "🄿 Petting Zoo", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-horse.svg"}, - {"key": "zoo", "value": "safari_park", "description": "🄿 Safari Park", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/zoo.svg"}, - {"key": "zoo", "value": "wildlife_park", "description": "🄿 Wildlife Park", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-frog.svg"}, - {"key": "traffic_calming", "description": "🄿 Traffic Calming, 🄵 Type", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"}, - {"key": "traffic_calming", "value": "bump", "description": "🄿 Speed Bump", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_bump.svg"}, - {"key": "traffic_calming", "value": "chicane", "description": "🄿 Traffic Chicane", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chicane_arrow.svg"}, - {"key": "traffic_calming", "value": "choker", "description": "🄿 Traffic Choker", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"}, - {"key": "traffic_calming", "value": "cushion", "description": "🄿 Speed Cushion", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_hump.svg"}, - {"key": "traffic_calming", "value": "dip", "description": "🄿 Dip", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_dip.svg"}, - {"key": "traffic_calming", "value": "hump", "description": "🄿 Speed Hump", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_hump.svg"}, - {"key": "traffic_calming", "value": "island", "description": "🄿 Traffic Island", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"}, - {"key": "traffic_calming", "value": "rumble_strip", "description": "🄿 Rumble Strip", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rumble_strip.svg"}, - {"key": "traffic_sign", "description": "🄿 Traffic Sign, 🄵 Traffic Sign", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-directions.svg"}, - {"key": "traffic_sign", "value": "city_limit", "description": "🄿 City Limit Sign", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"}, - {"key": "traffic_sign", "value": "maxspeed", "description": "🄿 Speed Limit Sign", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"}, - {"key": "type", "value": "multipolygon", "description": "🄿 Multipolygon (unsearchable)", "object_types": ["area", "relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/multipolygon.svg"}, - {"key": "type", "value": "boundary", "description": "🄿 Boundary", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/boundary.svg"}, - {"key": "type", "value": "connectivity", "description": "🄿 Lane Connectivity", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"}, - {"key": "type", "value": "destination_sign", "description": "🄿 Destination Sign", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"}, - {"key": "type", "value": "enforcement", "description": "🄿 Enforcement", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"}, - {"key": "enforcement", "value": "maxspeed", "description": "🄿 Speed Limit Enforcement", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"}, - {"key": "public_transport", "value": "stop_area_group", "description": "🄿 Transit Stop Area Group", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"}, - {"key": "type", "value": "restriction", "description": "🄿 Restriction", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction.svg"}, - {"key": "restriction", "value": "no_left_turn", "description": "🄿 No Left Turn", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-left-turn.svg"}, - {"key": "restriction", "value": "no_right_turn", "description": "🄿 No Right Turn", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-right-turn.svg"}, - {"key": "restriction", "value": "no_straight_on", "description": "🄿 No Straight On", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-straight-on.svg"}, - {"key": "restriction", "value": "no_u_turn", "description": "🄿 No U-turn", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-u-turn.svg"}, - {"key": "restriction", "value": "only_left_turn", "description": "🄿 Only Left Turn", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-left-turn.svg"}, - {"key": "restriction", "value": "only_right_turn", "description": "🄿 Only Right Turn", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-right-turn.svg"}, - {"key": "restriction", "value": "only_straight_on", "description": "🄿 Only Straight On", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-straight-on.svg"}, - {"key": "restriction", "value": "only_u_turn", "description": "🄿 Only U-turn", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-u-turn.svg"}, - {"key": "type", "value": "route_master", "description": "🄿 Route Master", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route-master.svg"}, - {"key": "type", "value": "route", "description": "🄿 Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route.svg"}, - {"key": "route", "value": "bicycle", "description": "🄿 Cycle Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"}, - {"key": "route", "value": "bus", "description": "🄿 Bus Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"}, - {"key": "route", "value": "detour", "description": "🄿 Detour Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route-detour.svg"}, - {"key": "route", "value": "foot", "description": "🄿 Walking Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"}, - {"key": "route", "value": "hiking", "description": "🄿 Hiking Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hiking.svg"}, - {"key": "route", "value": "horse", "description": "🄿 Riding Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"}, - {"key": "route", "value": "light_rail", "description": "🄿 Light Rail Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/light_rail.svg"}, - {"key": "route", "value": "monorail", "description": "🄿 Monorail Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/monorail.svg"}, - {"key": "route", "value": "pipeline", "description": "🄿 Pipeline Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"}, - {"key": "route", "value": "piste", "description": "🄿 Piste/Ski Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"}, - {"key": "route", "value": "power", "description": "🄿 Power Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/power-line.svg"}, - {"key": "route", "value": "road", "description": "🄿 Road Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-unclassified.svg"}, - {"key": "route", "value": "subway", "description": "🄿 Subway Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/subway.svg"}, - {"key": "route", "value": "train", "description": "🄿 Train Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"}, - {"key": "route", "value": "tram", "description": "🄿 Tram Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"}, - {"key": "route", "value": "trolleybus", "description": "🄿 Trolleybus Route", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trolleybus.svg"}, - {"key": "type", "value": "site", "description": "🄿 Site", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"}, - {"key": "type", "value": "waterway", "description": "🄿 Waterway", "object_types": ["relation"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"}, - {"key": "waterway", "value": "riverbank", "description": "🄿 Riverbank (unsearchable), 🄳 ➜ natural=water + water=river", "object_types": ["area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"}, - {"key": "waterway", "value": "boatyard", "description": "🄿 Boatyard", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat.svg"}, - {"key": "waterway", "value": "canal", "description": "🄿 Canal", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"}, - {"key": "lock", "value": "yes", "description": "🄿 Canal Lock", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"}, - {"key": "waterway", "value": "dam", "description": "🄿 Dam", "object_types": ["node", "way", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"}, - {"key": "waterway", "value": "ditch", "description": "🄿 Ditch", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-ditch.svg"}, - {"key": "waterway", "value": "dock", "description": "🄿 Wet Dock / Dry Dock", "object_types": ["area", "node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"}, - {"key": "waterway", "value": "drain", "description": "🄿 Drain", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-ditch.svg"}, - {"key": "waterway", "value": "fish_pass", "description": "🄿 Fish Pass", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fish_ladder.svg"}, - {"key": "waterway", "value": "fuel", "description": "🄿 Marine Fuel Station", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel-15.svg"}, - {"key": "waterway", "value": "lock_gate", "description": "🄿 Lock Gate", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"}, - {"key": "waterway", "value": "milestone", "description": "🄿 Waterway Milestone", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"}, - {"key": "waterway", "value": "river", "description": "🄿 River", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"}, - {"key": "waterway", "value": "sanitary_dump_station", "description": "🄿 Marine Toilet Disposal", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste.svg"}, - {"key": "intermittent", "value": "yes", "description": "🄿 Intermittent Stream", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"}, - {"key": "waterway", "value": "stream", "description": "🄿 Stream", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"}, - {"key": "waterway", "value": "tidal_channel", "description": "🄿 Tidal Channel", "object_types": ["way"], "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"}, - {"key": "waterway", "value": "water_point", "description": "🄿 Marine Drinking Water", "object_types": ["node", "area"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"}, - {"key": "waterway", "value": "waterfall", "description": "🄿 Waterfall", "object_types": ["node"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waterfall-15.svg"}, - {"key": "waterway", "value": "weir", "description": "🄿 Weir", "object_types": ["node", "way"], "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"}, - {"key": "access_aisle", "description": "🄵 Type"}, - {"key": "access", "description": "🄵 Allowed Access"}, - {"key": "access", "value": "yes", "description": "🄵 Allowed Access"}, - {"key": "access", "value": "permissive", "description": "🄵 Allowed Access"}, - {"key": "access", "value": "private", "description": "🄵 Allowed Access"}, - {"key": "access", "value": "designated", "description": "🄵 Allowed Access"}, - {"key": "access", "value": "destination", "description": "🄵 Allowed Access"}, - {"key": "access", "value": "dismount", "description": "🄵 Allowed Access"}, - {"key": "access", "value": "permit", "description": "🄵 Allowed Access"}, - {"key": "foot", "value": "yes", "description": "🄵 Allowed Access"}, - {"key": "foot", "value": "no", "description": "🄵 Allowed Access"}, - {"key": "foot", "value": "permissive", "description": "🄵 Allowed Access"}, - {"key": "foot", "value": "private", "description": "🄵 Allowed Access"}, - {"key": "foot", "value": "destination", "description": "🄵 Allowed Access"}, - {"key": "foot", "value": "dismount", "description": "🄵 Allowed Access"}, - {"key": "foot", "value": "permit", "description": "🄵 Allowed Access"}, - {"key": "motor_vehicle", "value": "yes", "description": "🄵 Allowed Access"}, - {"key": "motor_vehicle", "value": "no", "description": "🄵 Allowed Access"}, - {"key": "motor_vehicle", "value": "permissive", "description": "🄵 Allowed Access"}, - {"key": "motor_vehicle", "value": "private", "description": "🄵 Allowed Access"}, - {"key": "motor_vehicle", "value": "designated", "description": "🄵 Allowed Access"}, - {"key": "motor_vehicle", "value": "destination", "description": "🄵 Allowed Access"}, - {"key": "motor_vehicle", "value": "dismount", "description": "🄵 Allowed Access"}, - {"key": "motor_vehicle", "value": "permit", "description": "🄵 Allowed Access"}, - {"key": "bicycle", "value": "yes", "description": "🄵 Allowed Access"}, - {"key": "bicycle", "value": "no", "description": "🄵 Allowed Access"}, - {"key": "bicycle", "value": "permissive", "description": "🄵 Allowed Access"}, - {"key": "bicycle", "value": "private", "description": "🄵 Allowed Access"}, - {"key": "bicycle", "value": "designated", "description": "🄵 Allowed Access"}, - {"key": "bicycle", "value": "destination", "description": "🄵 Allowed Access"}, - {"key": "bicycle", "value": "dismount", "description": "🄵 Allowed Access"}, - {"key": "bicycle", "value": "permit", "description": "🄵 Allowed Access"}, - {"key": "horse", "value": "yes", "description": "🄵 Allowed Access"}, - {"key": "horse", "value": "no", "description": "🄵 Allowed Access"}, - {"key": "horse", "value": "permissive", "description": "🄵 Allowed Access"}, - {"key": "horse", "value": "private", "description": "🄵 Allowed Access"}, - {"key": "horse", "value": "designated", "description": "🄵 Allowed Access"}, - {"key": "horse", "value": "destination", "description": "🄵 Allowed Access"}, - {"key": "horse", "value": "dismount", "description": "🄵 Allowed Access"}, - {"key": "horse", "value": "permit", "description": "🄵 Allowed Access"}, - {"key": "addr:interpolation", "value": "all", "description": "🄵 Type"}, - {"key": "addr:interpolation", "value": "even", "description": "🄵 Type"}, - {"key": "addr:interpolation", "value": "odd", "description": "🄵 Type"}, - {"key": "addr:interpolation", "value": "alphabetic", "description": "🄵 Type"}, - {"key": "addr:block_number", "description": "🄵 Address"}, - {"key": "addr:city", "description": "🄵 Address"}, - {"key": "addr:conscriptionnumber", "description": "🄵 Address"}, - {"key": "addr:county", "description": "🄵 Address"}, - {"key": "addr:country", "description": "🄵 Address"}, - {"key": "addr:district", "description": "🄵 Address"}, - {"key": "addr:floor", "description": "🄵 Address"}, - {"key": "addr:hamlet", "description": "🄵 Address"}, - {"key": "addr:housename", "description": "🄵 Address"}, - {"key": "addr:housenumber", "description": "🄵 Address"}, - {"key": "addr:neighbourhood", "description": "🄵 Address"}, - {"key": "addr:place", "description": "🄵 Address"}, - {"key": "addr:postcode", "description": "🄵 Address"}, - {"key": "addr:province", "description": "🄵 Address"}, - {"key": "addr:quarter", "description": "🄵 Address"}, - {"key": "addr:state", "description": "🄵 Address"}, - {"key": "addr:street", "description": "🄵 Address"}, - {"key": "addr:subdistrict", "description": "🄵 Address"}, - {"key": "addr:suburb", "description": "🄵 Address"}, - {"key": "addr:unit", "description": "🄵 Address"}, - {"key": "admin_level", "description": "🄵 Admin Level"}, - {"key": "aerialway:access", "value": "entry", "description": "🄵 Access"}, - {"key": "aerialway:access", "value": "exit", "description": "🄵 Access"}, - {"key": "aerialway:access", "value": "both", "description": "🄵 Access"}, - {"key": "aerialway:bubble", "description": "🄵 Bubble"}, - {"key": "aerialway:capacity", "description": "🄵 Capacity (per hour)"}, - {"key": "aerialway:duration", "description": "🄵 Duration (minutes)"}, - {"key": "aerialway:heating", "description": "🄵 Heated"}, - {"key": "aerialway:occupancy", "description": "🄵 Occupancy"}, - {"key": "aerialway:summer:access", "value": "entry", "description": "🄵 Access (summer)"}, - {"key": "aerialway:summer:access", "value": "exit", "description": "🄵 Access (summer)"}, - {"key": "aerialway:summer:access", "value": "both", "description": "🄵 Access (summer)"}, - {"key": "agrarian", "description": "🄵 Products"}, - {"key": "air_conditioning", "description": "🄵 Air Conditioning"}, - {"key": "animal_boarding", "description": "🄵 For Animals"}, - {"key": "animal_breeding", "description": "🄵 For Animals"}, - {"key": "animal_shelter", "description": "🄵 For Animals"}, - {"key": "architect", "description": "🄵 Architect"}, - {"key": "artist_name", "description": "🄵 Artist"}, - {"key": "artwork_type", "description": "🄵 Type"}, - {"key": "ascent", "description": "🄵 Total Ascent"}, - {"key": "atm", "description": "🄵 ATM"}, - {"key": "automated", "description": "🄵 Automated"}, - {"key": "baby_feeding", "value": "room", "description": "🄵 Baby Nursing Area"}, - {"key": "baby_feeding", "value": "yes", "description": "🄵 Baby Nursing Area"}, - {"key": "baby_feeding", "value": "no", "description": "🄵 Baby Nursing Area"}, - {"key": "baby", "description": "🄵 Baby Seat"}, - {"key": "backcountry", "description": "🄵 Backcountry"}, - {"key": "backrest", "description": "🄵 Backrest"}, - {"key": "bar", "description": "🄵 Bar"}, - {"key": "basin", "description": "🄵 Type"}, - {"key": "bath:open_air", "description": "🄵 Open Air"}, - {"key": "bath:sand_bath", "description": "🄵 Sand Bath"}, - {"key": "bath:type", "description": "🄵 Specialty"}, - {"key": "beauty", "description": "🄵 Services"}, - {"key": "bench", "description": "🄵 Bench"}, - {"key": "bicycle_parking", "description": "🄵 Type"}, - {"key": "bin", "description": "🄵 Waste Bin"}, - {"key": "blind", "description": "🄵 Blind Person Access"}, - {"key": "blood:whole", "description": "🄵 Blood Components"}, - {"key": "blood:plasma", "description": "🄵 Blood Components"}, - {"key": "blood:platelets", "description": "🄵 Blood Components"}, - {"key": "blood:stemcells", "description": "🄵 Blood Components"}, - {"key": "board_type", "description": "🄵 Type"}, - {"key": "bollard", "description": "🄵 Type"}, - {"key": "booth", "description": "🄵 Booth"}, - {"key": "bottle", "description": "🄵 Bottle Filling"}, - {"key": "boules", "description": "🄵 Type"}, - {"key": "brand", "description": "🄵 Brand"}, - {"key": "brewery", "description": "🄵 Draft Beers"}, - {"key": "building:flats", "description": "🄵 Units"}, - {"key": "building:levels", "description": "🄵 Building Levels, 🄵 Levels"}, - {"key": "building:levels:underground", "description": "🄵 Underground Levels"}, - {"key": "building:material", "description": "🄵 Material"}, - {"key": "bunker_type", "description": "🄵 Type"}, - {"key": "cables", "description": "🄵 Cables"}, - {"key": "camera:direction", "description": "🄵 Direction (Degrees Clockwise)"}, - {"key": "camera:mount", "description": "🄵 Camera Mount"}, - {"key": "camera:type", "value": "fixed", "description": "🄵 Camera Type"}, - {"key": "camera:type", "value": "panning", "description": "🄵 Camera Type"}, - {"key": "camera:type", "value": "dome", "description": "🄵 Camera Type"}, - {"key": "capacity", "description": "🄵 Total Spaces, 🄵 Capacity (Cubic Meters), 🄵 Capacity"}, - {"key": "capacity:disabled", "description": "🄵 Accessible Spaces"}, - {"key": "cash_in", "description": "🄵 Cash In"}, - {"key": "castle_type", "description": "🄵 Type"}, - {"key": "changing_table", "description": "🄵 Diaper Changing Table"}, - {"key": "charge", "description": "🄵 Fee Amount, 🄵 Toll Amount"}, - {"key": "check_date", "description": "🄵 Last Checked Date"}, - {"key": "circumference", "description": "🄵 Circumference"}, - {"key": "clothes", "description": "🄵 Clothes"}, - {"key": "collection_times", "description": "🄵 Collection Times"}, - {"key": "collector", "description": "🄵 Items"}, - {"key": "colour", "description": "🄵 Color"}, - {"key": "comment", "description": "🄵 Changeset Comment"}, - {"key": "communication:", "description": "🄵 Communication Types"}, - {"key": "connectivity", "description": "🄵 Connectivity"}, - {"key": "construction", "description": "🄵 Type"}, - {"key": "consulate", "description": "🄵 Type"}, - {"key": "consulting", "description": "🄵 Expertise"}, - {"key": "contact:webcam", "description": "🄵 Webcam URL"}, - {"key": "content", "description": "🄵 Content"}, - {"key": "conveying", "value": "forward", "description": "🄵 Movement Direction"}, - {"key": "conveying", "value": "backward", "description": "🄵 Movement Direction"}, - {"key": "conveying", "value": "reversible", "description": "🄵 Movement Direction"}, - {"key": "country", "description": "🄵 Flag Country, 🄵 Country"}, - {"key": "couplings", "description": "🄵 Couplings"}, - {"key": "covered", "description": "🄵 Covered"}, - {"key": "crane:type", "value": "portal_crane", "description": "🄵 Crane Type"}, - {"key": "crane:type", "value": "floor-mounted_crane", "description": "🄵 Crane Type"}, - {"key": "crane:type", "value": "travel_lift", "description": "🄵 Crane Type"}, - {"key": "crop", "description": "🄵 Crops"}, - {"key": "crossing", "description": "🄵 Type"}, - {"key": "crossing:island", "description": "🄵 Refuge Island"}, - {"key": "cuisine", "description": "🄵 Cuisines"}, - {"key": "currency:", "description": "🄵 Currency Types"}, - {"key": "cutting", "description": "🄵 Type, 🄵 Structure"}, - {"key": "cycle_network", "description": "🄵 Network"}, - {"key": "cycleway", "value": "none", "description": "🄵 Bike Lanes"}, - {"key": "cycleway", "value": "lane", "description": "🄵 Bike Lanes"}, - {"key": "cycleway", "value": "shared_lane", "description": "🄵 Bike Lanes"}, - {"key": "cycleway", "value": "track", "description": "🄵 Bike Lanes"}, - {"key": "cycleway", "value": "share_busway", "description": "🄵 Bike Lanes"}, - {"key": "cycleway", "value": "opposite_lane", "description": "🄵 Bike Lanes"}, - {"key": "cycleway", "value": "opposite", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:left", "value": "none", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:left", "value": "lane", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:left", "value": "shared_lane", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:left", "value": "track", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:left", "value": "share_busway", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:left", "value": "opposite_lane", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:left", "value": "opposite", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:right", "value": "none", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:right", "value": "lane", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:right", "value": "shared_lane", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:right", "value": "track", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:right", "value": "share_busway", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:right", "value": "opposite_lane", "description": "🄵 Bike Lanes"}, - {"key": "cycleway:right", "value": "opposite", "description": "🄵 Bike Lanes"}, - {"key": "dance:style", "description": "🄵 Dance Styles"}, - {"key": "date", "description": "🄵 Date"}, - {"key": "defibrillator:location", "description": "🄵 Location Description"}, - {"key": "delivery", "description": "🄵 Delivery"}, - {"key": "denomination", "description": "🄵 Denomination"}, - {"key": "denotation", "description": "🄵 Denotation"}, - {"key": "departures_board", "value": "yes", "description": "🄵 Departures Board"}, - {"key": "departures_board", "value": "timetable", "description": "🄵 Departures Board"}, - {"key": "departures_board", "value": "realtime", "description": "🄵 Departures Board"}, - {"key": "departures_board", "value": "no", "description": "🄵 Departures Board"}, - {"key": "depth", "description": "🄵 Depth (Meters)"}, - {"key": "descent", "description": "🄵 Total Descent"}, - {"key": "description", "description": "🄵 Description"}, - {"key": "design", "description": "🄵 Design"}, - {"key": "destination", "description": "🄵 Destinations, 🄵 Destination"}, - {"key": "destination:ref", "description": "🄵 Destination Road Numbers"}, - {"key": "destination:symbol", "description": "🄵 Destination Symbols"}, - {"key": "devices", "description": "🄵 Devices"}, - {"key": "diameter", "description": "🄵 Diameter"}, - {"key": "diet:", "description": "🄵 Diet Types"}, - {"key": "diplomatic", "description": "🄵 Type"}, - {"key": "diplomatic:services:", "description": "🄵 Services"}, - {"key": "direction", "value": "clockwise", "description": "🄵 Direction"}, - {"key": "direction", "value": "anticlockwise", "description": "🄵 Direction"}, - {"key": "direction", "description": "🄵 Direction (Degrees Clockwise)"}, - {"key": "direction", "value": "forward", "description": "🄵 Direction Affected"}, - {"key": "direction", "value": "backward", "description": "🄵 Direction Affected"}, - {"key": "direction", "value": "both", "description": "🄵 Direction Affected"}, - {"key": "dispensing", "description": "🄵 Dispenses Prescriptions"}, - {"key": "display", "description": "🄵 Display"}, - {"key": "distance", "description": "🄵 Distance"}, - {"key": "dock", "description": "🄵 Type"}, - {"key": "dog", "value": "yes", "description": "🄵 Dogs"}, - {"key": "dog", "value": "leashed", "description": "🄵 Dogs"}, - {"key": "dog", "value": "no", "description": "🄵 Dogs"}, - {"key": "door", "description": "🄵 Type, 🄵 Door"}, - {"key": "drink:", "description": "🄵 Drinks"}, - {"key": "drinking_water", "description": "🄵 Drinkable"}, - {"key": "drive_through", "description": "🄵 Drive-Through"}, - {"key": "duration", "description": "🄵 Duration"}, - {"key": "ele", "description": "🄵 Elevation"}, - {"key": "electrified", "value": "contact_line", "description": "🄵 Electrification"}, - {"key": "electrified", "value": "rail", "description": "🄵 Electrification"}, - {"key": "electrified", "value": "yes", "description": "🄵 Electrification"}, - {"key": "electrified", "value": "no", "description": "🄵 Electrification"}, - {"key": "email", "description": "🄵 Email"}, - {"key": "embankment", "description": "🄵 Type, 🄵 Structure"}, - {"key": "embassy", "description": "🄵 Type"}, - {"key": "emergency_ward_entrance", "description": "🄵 Type"}, - {"key": "enforcement", "description": "🄵 Type"}, - {"key": "except", "description": "🄵 Exceptions"}, - {"key": "expected_rcn_route_relations", "description": "🄵 Adjacent Cycling Nodes"}, - {"key": "expected_rwn_route_relations", "description": "🄵 Adjacent Walking Nodes"}, - {"key": "faces", "description": "🄵 Faces"}, - {"key": "fax", "description": "🄵 Fax"}, - {"key": "fee", "description": "🄵 Fee"}, - {"key": "fence_type", "description": "🄵 Type"}, - {"key": "fire_hydrant:diameter", "description": "🄵 Diameter (mm, in, or letters)"}, - {"key": "fire_hydrant:pressure", "description": "🄵 Pressure (bar)"}, - {"key": "fire_hydrant:type", "value": "pillar", "description": "🄵 Shape"}, - {"key": "fire_hydrant:type", "value": "underground", "description": "🄵 Shape"}, - {"key": "fire_hydrant:type", "value": "wall", "description": "🄵 Shape"}, - {"key": "fire_hydrant:type", "value": "pipe", "description": "🄵 Shape"}, - {"key": "fireplace", "description": "🄵 Fireplace"}, - {"key": "fishing", "description": "🄵 Fishing"}, - {"key": "fitness_station", "description": "🄵 Equipment Type"}, - {"key": "fixme", "description": "🄵 Fix Me"}, - {"key": "flag:type", "description": "🄵 Flag Type"}, - {"key": "floating", "description": "🄵 Floating"}, - {"key": "flood_prone", "description": "🄵 Flood Prone"}, - {"key": "fountain", "description": "🄵 Type"}, - {"key": "frequency", "description": "🄵 Operating Frequency"}, - {"key": "from", "description": "🄵 From"}, - {"key": "fuel:", "description": "🄵 Fuel Types"}, - {"key": "fuel", "description": "🄵 Fuel"}, - {"key": "gambling", "description": "🄵 Games"}, - {"key": "garden:type", "description": "🄵 Garden Type"}, - {"key": "gauge", "description": "🄵 Gauge"}, - {"key": "male", "description": "🄵 Gender"}, - {"key": "female", "description": "🄵 Gender"}, - {"key": "unisex", "description": "🄵 Gender"}, - {"key": "generator:method", "description": "🄵 Method"}, - {"key": "generator:output:electricity", "description": "🄵 Power Output"}, - {"key": "generator:source", "description": "🄵 Source"}, - {"key": "generator:type", "description": "🄵 Type"}, - {"key": "geyser:height", "description": "🄵 Eruption Height"}, - {"key": "gnis:feature_id", "description": "🄵 GNIS Feature ID"}, - {"key": "government", "description": "🄵 Type"}, - {"key": "grades", "description": "🄵 Grade Levels"}, - {"key": "grape_variety", "description": "🄵 Grape Varieties"}, - {"key": "group_only", "description": "🄵 Groups Only"}, - {"key": "guest_house", "description": "🄵 Type"}, - {"key": "handicap", "description": "🄵 Handicap"}, - {"key": "handrail", "description": "🄵 Handrail"}, - {"key": "hashtags", "description": "🄵 Hashtags"}, - {"key": "healthcare:speciality", "description": "🄵 Specialties"}, - {"key": "heating", "description": "🄵 Heating"}, - {"key": "height", "description": "🄵 Building Height (Meters), 🄵 Height (Meters)"}, - {"key": "highspeed", "description": "🄵 High-Speed"}, - {"key": "historic:civilization", "description": "🄵 Historic Civilization"}, - {"key": "wreck:date_sunk", "description": "🄵 Date Sunk"}, - {"key": "wreck:visible_at_high_tide", "description": "🄵 Visible At High Tide"}, - {"key": "wreck:visible_at_low_tide", "description": "🄵 Visible At Low Tide"}, - {"key": "hoops", "description": "🄵 Hoops"}, - {"key": "horse_scale", "value": "common", "description": "🄵 Horseback Riding Difficulty"}, - {"key": "horse_scale", "value": "demanding", "description": "🄵 Horseback Riding Difficulty"}, - {"key": "horse_scale", "value": "difficult", "description": "🄵 Horseback Riding Difficulty"}, - {"key": "horse_scale", "value": "critical", "description": "🄵 Horseback Riding Difficulty"}, - {"key": "horse_scale", "value": "dangerous", "description": "🄵 Horseback Riding Difficulty"}, - {"key": "horse_scale", "value": "impossible", "description": "🄵 Horseback Riding Difficulty"}, - {"key": "amenity", "value": "stables", "description": "🄵 Riding Stable"}, - {"key": "hot_water", "description": "🄵 Hot Water"}, - {"key": "iata", "description": "🄵 IATA Airport Code"}, - {"key": "icao", "description": "🄵 ICAO Airport Code"}, - {"key": "image", "description": "🄵 Image"}, - {"key": "incline", "value": "up", "description": "🄵 Incline"}, - {"key": "incline", "value": "down", "description": "🄵 Incline"}, - {"key": "incline", "description": "🄵 Incline"}, - {"key": "industrial", "description": "🄵 Type"}, - {"key": "informal", "description": "🄵 Informal"}, - {"key": "information", "description": "🄵 Type"}, - {"key": "inscription", "description": "🄵 Inscription"}, - {"key": "intermittent", "description": "🄵 Intermittent"}, - {"key": "internet_access", "value": "yes", "description": "🄵 Internet Connection"}, - {"key": "internet_access", "value": "no", "description": "🄵 Internet Connection"}, - {"key": "internet_access", "value": "wired", "description": "🄵 Internet Connection"}, - {"key": "internet_access", "value": "terminal", "description": "🄵 Internet Connection"}, - {"key": "internet_access:fee", "value": "no", "description": "🄵 Internet Access"}, - {"key": "internet_access:fee", "value": "yes", "description": "🄵 Internet Access"}, - {"key": "internet_access:fee", "value": "customers", "description": "🄵 Internet Access"}, - {"key": "internet_access:ssid", "description": "🄵 Wifi Network Name"}, - {"key": "interval", "description": "🄵 Interval"}, - {"key": "junction", "value": "roundabout", "description": "🄵 Junction"}, - {"key": "junction", "value": "circular", "description": "🄵 Junction"}, - {"key": "junction", "value": "jughandle", "description": "🄵 Junction"}, - {"key": "junction:ref", "description": "🄵 Junction Number"}, - {"key": "kerb", "description": "🄵 Curb"}, - {"key": "kerb:height", "description": "🄵 Height"}, - {"key": "kneipp_water_cure:", "description": "🄵 Basin Types"}, - {"key": "label", "description": "🄵 Label"}, - {"key": "lamp_mount", "description": "🄵 Mount"}, - {"key": "lamp_type", "description": "🄵 Type"}, - {"key": "lanes", "description": "🄵 Lanes"}, - {"key": "language:", "description": "🄵 Languages"}, - {"key": "layer", "description": "🄵 Layer"}, - {"key": "leaf_cycle", "value": "evergreen", "description": "🄵 Leaf Cycle"}, - {"key": "leaf_cycle", "value": "deciduous", "description": "🄵 Leaf Cycle"}, - {"key": "leaf_cycle", "value": "semi_evergreen", "description": "🄵 Leaf Cycle"}, - {"key": "leaf_cycle", "value": "semi_deciduous", "description": "🄵 Leaf Cycle"}, - {"key": "leaf_cycle", "value": "mixed", "description": "🄵 Leaf Cycle"}, - {"key": "leaf_type", "value": "broadleaved", "description": "🄵 Leaf Type"}, - {"key": "leaf_type", "value": "needleleaved", "description": "🄵 Leaf Type"}, - {"key": "leaf_type", "value": "leafless", "description": "🄵 Leaf Type"}, - {"key": "leaf_type", "value": "mixed", "description": "🄵 Leaf Type"}, - {"key": "length", "description": "🄵 Length (Meters)"}, - {"key": "level", "description": "🄵 Levels, 🄵 Level"}, - {"key": "liaison", "description": "🄵 Type"}, - {"key": "line_attachment", "description": "🄵 Line Attachment"}, - {"key": "line_management", "description": "🄵 Line Management"}, - {"key": "lit", "description": "🄵 Lit"}, - {"key": "location", "value": "outdoor", "description": "🄵 Location"}, - {"key": "location", "value": "indoor", "description": "🄵 Location"}, - {"key": "location", "value": "roof", "description": "🄵 Location"}, - {"key": "location", "description": "🄵 Location"}, - {"key": "lock", "description": "🄵 Lock"}, - {"key": "lockable", "description": "🄵 Lockable"}, - {"key": "manufacturer", "description": "🄵 Manufacturer"}, - {"key": "map_size", "description": "🄵 Coverage"}, - {"key": "map_type", "description": "🄵 Type"}, - {"key": "mapillary", "description": "🄵 Mapillary Image ID"}, - {"key": "material", "description": "🄵 Material"}, - {"key": "max_age", "description": "🄵 Maximum Age"}, - {"key": "maxheight", "description": "🄵 Max Height"}, - {"key": "maxspeed", "description": "🄵 Speed Limit"}, - {"key": "maxspeed:advisory", "description": "🄵 Advisory Speed Limit"}, - {"key": "maxstay", "description": "🄵 Max Stay"}, - {"key": "maxweight", "description": "🄵 Max Weight"}, - {"key": "memorial", "description": "🄵 Type"}, - {"key": "microbrewery", "description": "🄵 Microbrewery"}, - {"key": "mimics", "description": "🄵 Mimics"}, - {"key": "min_age", "description": "🄵 Minimum Age"}, - {"key": "minspeed", "description": "🄵 Minimum Speed Limit"}, - {"key": "monitoring:", "description": "🄵 Monitoring"}, - {"key": "mtb:scale", "value": "0", "description": "🄵 Mountain Biking Difficulty"}, - {"key": "mtb:scale", "value": "1", "description": "🄵 Mountain Biking Difficulty"}, - {"key": "mtb:scale", "value": "2", "description": "🄵 Mountain Biking Difficulty"}, - {"key": "mtb:scale", "value": "3", "description": "🄵 Mountain Biking Difficulty"}, - {"key": "mtb:scale", "value": "4", "description": "🄵 Mountain Biking Difficulty"}, - {"key": "mtb:scale", "value": "5", "description": "🄵 Mountain Biking Difficulty"}, - {"key": "mtb:scale", "value": "6", "description": "🄵 Mountain Biking Difficulty"}, - {"key": "mtb:scale:imba", "value": "0", "description": "🄵 IMBA Trail Difficulty"}, - {"key": "mtb:scale:imba", "value": "1", "description": "🄵 IMBA Trail Difficulty"}, - {"key": "mtb:scale:imba", "value": "2", "description": "🄵 IMBA Trail Difficulty"}, - {"key": "mtb:scale:imba", "value": "3", "description": "🄵 IMBA Trail Difficulty"}, - {"key": "mtb:scale:imba", "value": "4", "description": "🄵 IMBA Trail Difficulty"}, - {"key": "mtb:scale:uphill", "value": "0", "description": "🄵 Mountain Biking Uphill Difficulty"}, - {"key": "mtb:scale:uphill", "value": "1", "description": "🄵 Mountain Biking Uphill Difficulty"}, - {"key": "mtb:scale:uphill", "value": "2", "description": "🄵 Mountain Biking Uphill Difficulty"}, - {"key": "mtb:scale:uphill", "value": "3", "description": "🄵 Mountain Biking Uphill Difficulty"}, - {"key": "mtb:scale:uphill", "value": "4", "description": "🄵 Mountain Biking Uphill Difficulty"}, - {"key": "mtb:scale:uphill", "value": "5", "description": "🄵 Mountain Biking Uphill Difficulty"}, - {"key": "museum", "description": "🄵 Type"}, - {"key": "name", "description": "🄵 Name"}, - {"key": "network", "value": "lcn", "description": "🄵 Network Class"}, - {"key": "network", "value": "rcn", "description": "🄵 Network Class"}, - {"key": "network", "value": "ncn", "description": "🄵 Network Class"}, - {"key": "network", "value": "icn", "description": "🄵 Network Class"}, - {"key": "network", "value": "lwn", "description": "🄵 Network Class"}, - {"key": "network", "value": "rwn", "description": "🄵 Network Class"}, - {"key": "network", "value": "nwn", "description": "🄵 Network Class"}, - {"key": "network", "value": "iwn", "description": "🄵 Network Class"}, - {"key": "network", "value": "lhn", "description": "🄵 Network Class"}, - {"key": "network", "value": "rhn", "description": "🄵 Network Class"}, - {"key": "network", "value": "nhn", "description": "🄵 Network Class"}, - {"key": "network", "value": "ihn", "description": "🄵 Network Class"}, - {"key": "network", "description": "🄵 Network"}, - {"key": "network:type", "description": "🄵 Network Type"}, - {"key": "not:name", "description": "🄵 Incorrect Names"}, - {"key": "note", "description": "🄵 Note"}, - {"key": "oneway", "value": "yes", "description": "🄵 One Way"}, - {"key": "oneway", "value": "no", "description": "🄵 One Way"}, - {"key": "oneway", "value": "reversible", "description": "🄵 One Way"}, - {"key": "oneway", "value": "alternating", "description": "🄵 One Way"}, - {"key": "oneway:bicycle", "description": "🄵 One Way (Bicycles)"}, - {"key": "openfire", "description": "🄵 Open Fires Allowed"}, - {"key": "opening_date", "description": "🄵 Expected Opening Date"}, - {"key": "opening_hours", "description": "🄵 Hours"}, - {"key": "opening_hours:covid19", "description": "🄵 COVID-19 Pandemic Hours"}, - {"key": "operator", "description": "🄵 Operator"}, - {"key": "operator:type", "description": "🄵 Operator Type"}, - {"key": "organic", "value": "no", "description": "🄵 Organic Products"}, - {"key": "organic", "value": "yes", "description": "🄵 Organic Products"}, - {"key": "outdoor_seating", "description": "🄵 Outdoor Seating"}, - {"key": "par", "description": "🄵 Par"}, - {"key": "park_ride", "description": "🄵 Park and Ride"}, - {"key": "parking_space", "description": "🄵 Type"}, - {"key": "parking", "value": "surface", "description": "🄵 Type"}, - {"key": "parking", "value": "lane", "description": "🄵 Type"}, - {"key": "parking", "value": "carports", "description": "🄵 Type"}, - {"key": "parking", "value": "garage_boxes", "description": "🄵 Type"}, - {"key": "parking", "value": "rooftop", "description": "🄵 Type"}, - {"key": "parking", "value": "sheds", "description": "🄵 Type"}, - {"key": "payment:", "description": "🄵 Payment Types"}, - {"key": "phases", "description": "🄵 Phases"}, - {"key": "phone", "description": "🄵 Telephone"}, - {"key": "piste:difficulty", "value": "novice", "description": "🄵 Difficulty"}, - {"key": "piste:difficulty", "value": "easy", "description": "🄵 Difficulty"}, - {"key": "piste:difficulty", "value": "intermediate", "description": "🄵 Difficulty"}, - {"key": "piste:difficulty", "value": "advanced", "description": "🄵 Difficulty"}, - {"key": "piste:difficulty", "value": "expert", "description": "🄵 Difficulty"}, - {"key": "piste:difficulty", "value": "freeride", "description": "🄵 Difficulty"}, - {"key": "piste:difficulty", "value": "extreme", "description": "🄵 Difficulty"}, - {"key": "piste:grooming", "value": "classic", "description": "🄵 Grooming"}, - {"key": "piste:grooming", "value": "mogul", "description": "🄵 Grooming"}, - {"key": "piste:grooming", "value": "backcountry", "description": "🄵 Grooming"}, - {"key": "piste:grooming", "value": "classic+skating", "description": "🄵 Grooming"}, - {"key": "piste:grooming", "value": "scooter", "description": "🄵 Grooming"}, - {"key": "piste:grooming", "value": "skating", "description": "🄵 Grooming"}, - {"key": "piste:type", "value": "snow_park", "description": "🄵 Type"}, - {"key": "piste:type", "value": "playground", "description": "🄵 Type"}, - {"key": "piste:type", "value": "connection", "description": "🄵 Type"}, - {"key": "plant", "description": "🄵 Plant"}, - {"key": "plant:method", "description": "🄵 Generation Method"}, - {"key": "plant:output:electricity", "description": "🄵 Power Output"}, - {"key": "plant:source", "description": "🄵 Energy Source"}, - {"key": "playground:theme", "description": "🄵 Theme"}, - {"key": "plots", "description": "🄵 Plots"}, - {"key": "population", "description": "🄵 Population"}, - {"key": "portable", "description": "🄵 Portable"}, - {"key": "post:block_number", "description": "🄵 Delivery Address"}, - {"key": "post:city", "description": "🄵 Delivery Address"}, - {"key": "post:conscriptionnumber", "description": "🄵 Delivery Address"}, - {"key": "post:county", "description": "🄵 Delivery Address"}, - {"key": "post:country", "description": "🄵 Delivery Address"}, - {"key": "post:district", "description": "🄵 Delivery Address"}, - {"key": "post:floor", "description": "🄵 Delivery Address"}, - {"key": "post:hamlet", "description": "🄵 Delivery Address"}, - {"key": "post:housename", "description": "🄵 Delivery Address"}, - {"key": "post:housenumber", "description": "🄵 Delivery Address"}, - {"key": "post:neighbourhood", "description": "🄵 Delivery Address"}, - {"key": "post:place", "description": "🄵 Delivery Address"}, - {"key": "post:postcode", "description": "🄵 Delivery Address"}, - {"key": "post:province", "description": "🄵 Delivery Address"}, - {"key": "post:quarter", "description": "🄵 Delivery Address"}, - {"key": "post:state", "description": "🄵 Delivery Address"}, - {"key": "post:street", "description": "🄵 Delivery Address"}, - {"key": "post:subdistrict", "description": "🄵 Delivery Address"}, - {"key": "post:suburb", "description": "🄵 Delivery Address"}, - {"key": "post:unit", "description": "🄵 Delivery Address"}, - {"key": "power_supply", "description": "🄵 Power Supply"}, - {"key": "preschool", "description": "🄵 Preschool"}, - {"key": "produce", "description": "🄵 Produce"}, - {"key": "product", "description": "🄵 Products"}, - {"key": "public_bookcase:type", "description": "🄵 Type"}, - {"key": "pump", "value": "yes", "description": "🄵 Pump"}, - {"key": "pump", "value": "manual", "description": "🄵 Pump"}, - {"key": "pump", "value": "powered", "description": "🄵 Pump"}, - {"key": "pump", "value": "no", "description": "🄵 Pump"}, - {"key": "railway:position", "description": "🄵 Milestone Position"}, - {"key": "railway:signal:direction", "value": "forward", "description": "🄵 Direction Affected"}, - {"key": "railway:signal:direction", "value": "backward", "description": "🄵 Direction Affected"}, - {"key": "railway:signal:direction", "value": "both", "description": "🄵 Direction Affected"}, - {"key": "ramp", "description": "🄵 Embedded Ramp"}, - {"key": "rating", "description": "🄵 Power Rating"}, - {"key": "rcn_ref", "description": "🄵 Cycling Code"}, - {"key": "real_fire", "description": "🄵 Real Fire"}, - {"key": "recycling:", "description": "🄵 Accepts"}, - {"key": "ref", "description": "🄵 Gate Number, 🄵 Hole Number, 🄵 Junction Number, 🄵 Platform Number, 🄵 Road Number, 🄵 Room Number, 🄵 Route Number, 🄵 Runway Number, 🄵 Stop Number, 🄵 Taxiway Name, 🄵 Reference Code"}, - {"key": "ref:isil", "description": "🄵 ISIL Code"}, - {"key": "ref:vatin", "description": "🄵 VAT ID Number"}, - {"key": "type", "description": "🄵 Type"}, - {"key": "religion", "description": "🄵 Religion"}, - {"key": "reservation", "value": "yes", "description": "🄵 Reservations"}, - {"key": "reservation", "value": "no", "description": "🄵 Reservations"}, - {"key": "reservation", "value": "required", "description": "🄵 Reservations"}, - {"key": "reservation", "value": "recommended", "description": "🄵 Reservations"}, - {"key": "residential", "description": "🄵 Type"}, - {"key": "resort", "description": "🄵 Type"}, - {"key": "resource", "description": "🄵 Resources"}, - {"key": "restriction", "description": "🄵 Type"}, - {"key": "roof:colour", "description": "🄵 Roof Color"}, - {"key": "room", "description": "🄵 Type"}, - {"key": "rooms", "description": "🄵 Rooms"}, - {"key": "roundtrip", "description": "🄵 Forms Loop"}, - {"key": "route_master", "description": "🄵 Type"}, - {"key": "route", "description": "🄵 Type"}, - {"key": "ruins", "description": "🄵 Type"}, - {"key": "rwn_ref", "description": "🄵 Walking Code"}, - {"key": "sac_scale", "value": "hiking", "description": "🄵 Hiking Difficulty"}, - {"key": "sac_scale", "value": "mountain_hiking", "description": "🄵 Hiking Difficulty"}, - {"key": "sac_scale", "value": "demanding_mountain_hiking", "description": "🄵 Hiking Difficulty"}, - {"key": "sac_scale", "value": "alpine_hiking", "description": "🄵 Hiking Difficulty"}, - {"key": "sac_scale", "value": "demanding_alpine_hiking", "description": "🄵 Hiking Difficulty"}, - {"key": "sac_scale", "value": "difficult_alpine_hiking", "description": "🄵 Hiking Difficulty"}, - {"key": "salt", "description": "🄵 Salt"}, - {"key": "sanitary_dump_station", "description": "🄵 Toilet Disposal"}, - {"key": "screen", "description": "🄵 Screens"}, - {"key": "scuba_diving:", "description": "🄵 Services"}, - {"key": "seamark:beacon_isolated_danger:shape", "description": "🄵 Shape"}, - {"key": "seamark:beacon_lateral:category", "value": "port", "description": "🄵 Category"}, - {"key": "seamark:beacon_lateral:category", "value": "starboard", "description": "🄵 Category"}, - {"key": "seamark:beacon_lateral:category", "value": "waterway_left", "description": "🄵 Category"}, - {"key": "seamark:beacon_lateral:category", "value": "waterway_right", "description": "🄵 Category"}, - {"key": "seamark:beacon_lateral:category", "value": "danger_left", "description": "🄵 Category"}, - {"key": "seamark:beacon_lateral:category", "value": "danger_right", "description": "🄵 Category"}, - {"key": "seamark:beacon_lateral:colour", "value": "red", "description": "🄵 Color"}, - {"key": "seamark:beacon_lateral:colour", "value": "green", "description": "🄵 Color"}, - {"key": "seamark:beacon_lateral:colour", "value": "grey", "description": "🄵 Color"}, - {"key": "seamark:beacon_lateral:shape", "description": "🄵 Shape"}, - {"key": "seamark:beacon_lateral:system", "value": "iala-a", "description": "🄵 System"}, - {"key": "seamark:beacon_lateral:system", "value": "iala-b", "description": "🄵 System"}, - {"key": "seamark:beacon_lateral:system", "value": "cevni", "description": "🄵 System"}, - {"key": "seamark:beacon_lateral:system", "value": "other", "description": "🄵 System"}, - {"key": "seamark:buoy_lateral:category", "value": "port", "description": "🄵 Category"}, - {"key": "seamark:buoy_lateral:category", "value": "starboard", "description": "🄵 Category"}, - {"key": "seamark:buoy_lateral:category", "value": "channel_left", "description": "🄵 Category"}, - {"key": "seamark:buoy_lateral:category", "value": "channel_right", "description": "🄵 Category"}, - {"key": "seamark:buoy_lateral:category", "value": "waterway_left", "description": "🄵 Category"}, - {"key": "seamark:buoy_lateral:category", "value": "waterway_right", "description": "🄵 Category"}, - {"key": "seamark:buoy_lateral:category", "value": "danger_left", "description": "🄵 Category"}, - {"key": "seamark:buoy_lateral:category", "value": "danger_right", "description": "🄵 Category"}, - {"key": "seamark:buoy_lateral:category", "value": "preferred_channel_port", "description": "🄵 Category"}, - {"key": "seamark:buoy_lateral:category", "value": "preferred_channel_starboard", "description": "🄵 Category"}, - {"key": "seamark:buoy_lateral:colour", "value": "red;white;red;white", "description": "🄵 Color"}, - {"key": "seamark:buoy_lateral:colour", "value": "green;white;green;white", "description": "🄵 Color"}, - {"key": "seamark:buoy_lateral:colour", "value": "red;green;red", "description": "🄵 Color"}, - {"key": "seamark:buoy_lateral:colour", "value": "green;red;green", "description": "🄵 Color"}, - {"key": "seamark:buoy_lateral:colour", "value": "white", "description": "🄵 Color"}, - {"key": "seamark:buoy_lateral:colour", "value": "yellow", "description": "🄵 Color"}, - {"key": "seamark:buoy_lateral:shape", "description": "🄵 Shape"}, - {"key": "seamark:buoy_lateral:system", "value": "iala-a", "description": "🄵 System"}, - {"key": "seamark:buoy_lateral:system", "value": "iala-b", "description": "🄵 System"}, - {"key": "seamark:buoy_lateral:system", "value": "cevni", "description": "🄵 System"}, - {"key": "seamark:buoy_lateral:system", "value": "other", "description": "🄵 System"}, - {"key": "seamark:mooring:category", "description": "🄵 Category"}, - {"key": "seamark:wreck:category", "description": "🄵 Category"}, - {"key": "seasonal", "description": "🄵 Seasonal"}, - {"key": "seats", "description": "🄵 Seats"}, - {"key": "second_hand", "value": "yes", "description": "🄵 Sells Used"}, - {"key": "second_hand", "value": "no", "description": "🄵 Sells Used"}, - {"key": "segregated", "description": "🄵 Bicycle-Pedestrian Separation"}, - {"key": "self_service", "description": "🄵 Self-Service"}, - {"key": "service", "value": "spur", "description": "🄵 Service Type"}, - {"key": "service", "value": "yard", "description": "🄵 Service Type"}, - {"key": "service", "value": "siding", "description": "🄵 Service Type"}, - {"key": "service", "value": "crossover", "description": "🄵 Service Type"}, - {"key": "service_times", "description": "🄵 Service Times"}, - {"key": "service", "description": "🄵 Type"}, - {"key": "service:bicycle:", "description": "🄵 Services"}, - {"key": "service:vehicle:", "description": "🄵 Services"}, - {"key": "shelter_type", "description": "🄵 Type"}, - {"key": "shelter", "description": "🄵 Shelter"}, - {"key": "shower", "description": "🄵 Showers"}, - {"key": "siren:purpose", "description": "🄵 Purpose"}, - {"key": "siren:type", "value": "pneumatic", "description": "🄵 Type"}, - {"key": "siren:type", "value": "electronic", "description": "🄵 Type"}, - {"key": "siren:type", "value": "other", "description": "🄵 Type"}, - {"key": "site_type", "description": "🄵 Site Type"}, - {"key": "site", "description": "🄵 Type"}, - {"key": "smoking", "value": "no", "description": "🄵 Smoking"}, - {"key": "smoking", "value": "separated", "description": "🄵 Smoking"}, - {"key": "smoking", "value": "isolated", "description": "🄵 Smoking"}, - {"key": "smoking", "value": "outside", "description": "🄵 Smoking"}, - {"key": "smoking", "value": "yes", "description": "🄵 Smoking"}, - {"key": "smoking", "value": "dedicated", "description": "🄵 Smoking"}, - {"key": "smoothness", "value": "excellent", "description": "🄵 Smoothness"}, - {"key": "smoothness", "value": "good", "description": "🄵 Smoothness"}, - {"key": "smoothness", "value": "intermediate", "description": "🄵 Smoothness"}, - {"key": "smoothness", "value": "bad", "description": "🄵 Smoothness"}, - {"key": "smoothness", "value": "very_bad", "description": "🄵 Smoothness"}, - {"key": "smoothness", "value": "horrible", "description": "🄵 Smoothness"}, - {"key": "smoothness", "value": "very_horrible", "description": "🄵 Smoothness"}, - {"key": "smoothness", "value": "impassable", "description": "🄵 Smoothness"}, - {"key": "sms", "description": "🄵 SMS"}, - {"key": "social_facility:for", "description": "🄵 People Served"}, - {"key": "social_facility", "description": "🄵 Type"}, - {"key": "source", "description": "🄵 Sources"}, - {"key": "species:wikidata", "description": "🄵 Species Wikidata"}, - {"key": "species:wikipedia", "description": "🄵 Species Wikidata"}, - {"key": "sport", "description": "🄵 Sports"}, - {"key": "stars", "description": "🄵 Stars"}, - {"key": "start_date", "description": "🄵 Start Date"}, - {"key": "step_count", "description": "🄵 Number of Steps"}, - {"key": "stile", "description": "🄵 Type"}, - {"key": "stop", "value": "all", "description": "🄵 Stop Type"}, - {"key": "stop", "value": "minor", "description": "🄵 Stop Type"}, - {"key": "street_cabinet", "description": "🄵 Type"}, - {"key": "stroller", "description": "🄵 Stroller Access"}, - {"key": "tunnel", "description": "🄵 Structure, 🄵 Type"}, - {"key": "studio", "description": "🄵 Type"}, - {"key": "substance", "description": "🄵 Substance"}, - {"key": "substation", "description": "🄵 Type"}, - {"key": "supervised", "description": "🄵 Supervised"}, - {"key": "support", "description": "🄵 Support"}, - {"key": "surface", "description": "🄵 Surface"}, - {"key": "surveillance", "description": "🄵 Surveillance Kind"}, - {"key": "surveillance:type", "value": "guard", "description": "🄵 Surveillance Type"}, - {"key": "surveillance:type", "value": "ALPR", "description": "🄵 Surveillance Type"}, - {"key": "surveillance:zone", "description": "🄵 Surveillance Zone"}, - {"key": "survey:date", "description": "🄵 Last Survey Date"}, - {"key": "swimming_pool", "description": "🄵 Type"}, - {"key": "switch", "value": "mechanical", "description": "🄵 Type"}, - {"key": "switch", "value": "circuit_breaker", "description": "🄵 Type"}, - {"key": "switch", "value": "disconnector", "description": "🄵 Type"}, - {"key": "switch", "value": "earthing", "description": "🄵 Type"}, - {"key": "tactile_paving", "description": "🄵 Tactile Paving"}, - {"key": "takeaway", "value": "yes", "description": "🄵 Takeaway"}, - {"key": "takeaway", "value": "no", "description": "🄵 Takeaway"}, - {"key": "takeaway", "value": "only", "description": "🄵 Takeaway"}, - {"key": "target", "description": "🄵 Target"}, - {"key": "telecom:medium", "description": "🄵 Medium"}, - {"key": "tidal", "description": "🄵 Tidal"}, - {"key": "to", "description": "🄵 To"}, - {"key": "toilets", "description": "🄵 Toilets"}, - {"key": "toilets:disposal", "value": "chemical", "description": "🄵 Disposal"}, - {"key": "toilets:disposal", "value": "bucket", "description": "🄵 Disposal"}, - {"key": "toilets:handwashing", "description": "🄵 Handwashing"}, - {"key": "toilets:position", "description": "🄵 Positions"}, - {"key": "toll", "description": "🄵 Toll"}, - {"key": "tomb", "description": "🄵 Type"}, - {"key": "tower:construction", "description": "🄵 Construction"}, - {"key": "tower:type", "description": "🄵 Type"}, - {"key": "townhall:type", "description": "🄵 Type"}, - {"key": "tracktype", "value": "grade1", "description": "🄵 Track Type"}, - {"key": "tracktype", "value": "grade2", "description": "🄵 Track Type"}, - {"key": "tracktype", "value": "grade3", "description": "🄵 Track Type"}, - {"key": "tracktype", "value": "grade4", "description": "🄵 Track Type"}, - {"key": "tracktype", "value": "grade5", "description": "🄵 Track Type"}, - {"key": "trade", "description": "🄵 Type"}, - {"key": "traffic_sign:direction", "value": "forward", "description": "🄵 Direction Affected"}, - {"key": "traffic_sign:direction", "value": "backward", "description": "🄵 Direction Affected"}, - {"key": "traffic_sign:direction", "value": "both", "description": "🄵 Direction Affected"}, - {"key": "traffic_signals", "description": "🄵 Type"}, - {"key": "traffic_signals:direction", "value": "forward", "description": "🄵 Direction Affected"}, - {"key": "traffic_signals:direction", "value": "backward", "description": "🄵 Direction Affected"}, - {"key": "traffic_signals:direction", "value": "both", "description": "🄵 Direction Affected"}, - {"key": "trail_visibility", "value": "excellent", "description": "🄵 Trail Visibility"}, - {"key": "trail_visibility", "value": "good", "description": "🄵 Trail Visibility"}, - {"key": "trail_visibility", "value": "intermediate", "description": "🄵 Trail Visibility"}, - {"key": "trail_visibility", "value": "bad", "description": "🄵 Trail Visibility"}, - {"key": "trail_visibility", "value": "horrible", "description": "🄵 Trail Visibility"}, - {"key": "trail_visibility", "value": "no", "description": "🄵 Trail Visibility"}, - {"key": "transformer", "value": "distribution", "description": "🄵 Type"}, - {"key": "transformer", "value": "generator", "description": "🄵 Type"}, - {"key": "transformer", "value": "converter", "description": "🄵 Type"}, - {"key": "transformer", "value": "traction", "description": "🄵 Type"}, - {"key": "transformer", "value": "auto", "description": "🄵 Type"}, - {"key": "transformer", "value": "phase_angle_regulator", "description": "🄵 Type"}, - {"key": "transformer", "value": "auxiliary", "description": "🄵 Type"}, - {"key": "transformer", "value": "yes", "description": "🄵 Type"}, - {"key": "trees", "description": "🄵 Trees"}, - {"key": "trench", "description": "🄵 Type"}, - {"key": "trolley_wire", "description": "🄵 Overhead Trolley Wires"}, - {"key": "usage", "value": "main", "description": "🄵 Usage Type"}, - {"key": "usage", "value": "branch", "description": "🄵 Usage Type"}, - {"key": "usage", "value": "industrial", "description": "🄵 Usage Type"}, - {"key": "usage", "value": "military", "description": "🄵 Usage Type"}, - {"key": "usage", "value": "test", "description": "🄵 Usage Type"}, - {"key": "usage", "value": "tourism", "description": "🄵 Usage Type"}, - {"key": "valve", "description": "🄵 Type"}, - {"key": "bus", "description": "🄵 Vehicles"}, - {"key": "trolleybus", "description": "🄵 Vehicles"}, - {"key": "tram", "description": "🄵 Vehicles"}, - {"key": "train", "description": "🄵 Vehicles"}, - {"key": "subway", "description": "🄵 Vehicles"}, - {"key": "light_rail", "description": "🄵 Vehicles"}, - {"key": "monorail", "description": "🄵 Vehicles"}, - {"key": "ferry", "description": "🄵 Vehicles"}, - {"key": "vending", "description": "🄵 Types of Goods"}, - {"key": "vhf", "description": "🄵 VHF Channel"}, - {"key": "video", "description": "🄵 Video Calls"}, - {"key": "visibility", "value": "house", "description": "🄵 Visibility"}, - {"key": "visibility", "value": "street", "description": "🄵 Visibility"}, - {"key": "visibility", "value": "area", "description": "🄵 Visibility"}, - {"key": "volcano:status", "value": "active", "description": "🄵 Volcano Status"}, - {"key": "volcano:status", "value": "dormant", "description": "🄵 Volcano Status"}, - {"key": "volcano:status", "value": "extinct", "description": "🄵 Volcano Status"}, - {"key": "volcano:type", "value": "stratovolcano", "description": "🄵 Volcano Type"}, - {"key": "volcano:type", "value": "shield", "description": "🄵 Volcano Type"}, - {"key": "volcano:type", "value": "scoria", "description": "🄵 Volcano Type"}, - {"key": "voltage", "description": "🄵 Voltage"}, - {"key": "voltage:primary", "description": "🄵 Primary Voltage"}, - {"key": "voltage:secondary", "description": "🄵 Secondary Voltage"}, - {"key": "voltage:tertiary", "description": "🄵 Tertiary Voltage"}, - {"key": "wall", "description": "🄵 Type"}, - {"key": "waste", "description": "🄵 Waste"}, - {"key": "water_point", "description": "🄵 Water Point"}, - {"key": "water_source", "description": "🄵 Water Source"}, - {"key": "water_tank:volume", "description": "🄵 Volume (Liters)"}, - {"key": "water_volume", "description": "🄵 Water Reserve Volume (m³)"}, - {"key": "water", "description": "🄵 Type"}, - {"key": "website", "description": "🄵 Website"}, - {"key": "wetland", "description": "🄵 Type"}, - {"key": "wheelchair", "description": "🄵 Wheelchair Access"}, - {"key": "wholesale", "description": "🄵 Wholesale"}, - {"key": "width", "description": "🄵 Width (Meters)"}, - {"key": "wikidata", "description": "🄵 Wikidata, 🄵 Wikipedia"}, - {"key": "wikipedia", "description": "🄵 Wikidata, 🄵 Wikipedia"}, - {"key": "wikimedia_commons", "description": "🄵 Wikimedia Commons Page"}, - {"key": "windings", "description": "🄵 Windings"}, - {"key": "windings:configuration", "value": "star", "description": "🄵 Windings Configuration"}, - {"key": "windings:configuration", "value": "delta", "description": "🄵 Windings Configuration"}, - {"key": "windings:configuration", "value": "open-delta", "description": "🄵 Windings Configuration"}, - {"key": "windings:configuration", "value": "zigzag", "description": "🄵 Windings Configuration"}, - {"key": "windings:configuration", "value": "open", "description": "🄵 Windings Configuration"}, - {"key": "windings:configuration", "value": "scott", "description": "🄵 Windings Configuration"}, - {"key": "windings:configuration", "value": "leblanc", "description": "🄵 Windings Configuration"}, - {"key": "aerialway", "value": "canopy", "description": "🄳 ➜ aerialway=zip_line"}, - {"key": "aeroway", "value": "aerobridge", "description": "🄳 ➜ aeroway=jet_bridge + highway=corridor"}, - {"key": "access", "value": "customer", "description": "🄳 ➜ access=customers"}, - {"key": "access", "value": "public", "description": "🄳 ➜ access=yes"}, - {"key": "aerodrome", "value": "military", "description": "🄳 ➜ military=airfield"}, - {"key": "aerodrome:type", "value": "military", "description": "🄳 ➜ military=airfield"}, - {"key": "agrarian", "value": "agrcultural_machinry", "description": "🄳 ➜ agrarian=agricultural_machinery"}, - {"key": "amenity", "value": "advertising", "description": "🄳 ➜ advertising=*"}, - {"key": "amenity", "value": "artwork", "description": "🄳 ➜ tourism=artwork"}, - {"key": "amenity", "value": "bail_bonds", "description": "🄳 ➜ office=bail_bond_agent"}, - {"key": "amenity", "value": "car_repair", "description": "🄳 ➜ shop=car_repair"}, - {"key": "amenity", "value": "changing_room", "description": "🄳 ➜ amenity=dressing_room"}, - {"key": "amenity", "value": "citymap_post", "description": "🄳 ➜ tourism=information"}, - {"key": "amenity", "value": "club", "description": "🄳 ➜ club=*"}, - {"key": "amenity", "value": "community_center", "description": "🄳 ➜ amenity=community_centre"}, - {"key": "amenity", "value": "dancing_school", "description": "🄳 ➜ leisure=dance + dance:teaching=yes"}, - {"key": "amenity", "value": "dog_bin", "description": "🄳 ➜ amenity=waste_basket + waste=dog_excrement"}, - {"key": "amenity", "value": "dog_waste_bin", "description": "🄳 ➜ amenity=waste_basket + waste=dog_excrement"}, - {"key": "amenity", "value": "ev_charging", "description": "🄳 ➜ amenity=charging_station"}, - {"key": "amenity", "value": "fire_hydrant", "description": "🄳 ➜ emergency=fire_hydrant"}, - {"key": "amenity", "value": "firepit", "description": "🄳 ➜ leisure=firepit"}, - {"key": "amenity", "value": "garage", "description": "🄳 ➜ landuse=garages"}, - {"key": "amenity", "value": "garages", "description": "🄳 ➜ landuse=garages"}, - {"key": "amenity", "value": "givebox", "description": "🄳 ➜ amenity=give_box"}, - {"key": "amenity", "value": "gym", "description": "🄳 ➜ leisure=fitness_centre"}, - {"key": "amenity", "value": "hotel", "description": "🄳 ➜ tourism=hotel"}, - {"key": "amenity", "value": "kiosk", "description": "🄳 ➜ shop=kiosk"}, - {"key": "amenity", "value": "notice_board", "description": "🄳 ➜ advertising=board"}, - {"key": "amenity", "value": "nursery", "description": "🄳 ➜ amenity=kindergarten"}, - {"key": "amenity", "value": "preschool", "description": "🄳 ➜ amenity=kindergarten + preschool=yes"}, - {"key": "amenity", "value": "public_building", "description": "🄳 ➜ building=public"}, - {"key": "amenity", "value": "real_estate", "description": "🄳 ➜ office=estate_agent"}, - {"key": "amenity", "value": "register_office", "description": "🄳 ➜ office=government + government=register_office"}, - {"key": "amenity", "value": "research_institution", "description": "🄳 ➜ amenity=research_institute"}, - {"key": "amenity", "value": "sauna", "description": "🄳 ➜ leisure=sauna"}, - {"key": "amenity", "value": "scrapyard", "description": "🄳 ➜ landuse=industrial + industrial=scrap_yard"}, - {"key": "amenity", "value": "shop", "description": "🄳 ➜ shop=*"}, - {"key": "amenity", "value": "sloped_curb", "description": "🄳 ➜ kerb=lowered"}, - {"key": "amenity", "value": "swimming_pool", "description": "🄳 ➜ leisure=swimming_pool"}, - {"key": "amenity", "value": "ticket_booth", "description": "🄳 ➜ shop=ticket"}, - {"key": "amenity", "value": "toilet", "description": "🄳 ➜ amenity=toilets"}, - {"key": "amenity", "value": "weigh_bridge", "description": "🄳 ➜ amenity=weighbridge"}, - {"key": "amenity", "value": "winery", "description": "🄳 ➜ craft=winery"}, - {"key": "amenity", "value": "youth_center", "description": "🄳 ➜ amenity=community_centre + community_centre:for=juvenile"}, - {"key": "amenity", "value": "youth_centre", "description": "🄳 ➜ amenity=community_centre + community_centre:for=juvenile"}, - {"key": "artwork", "description": "🄳 ➜ artwork_type=*"}, - {"key": "artwork:type", "description": "🄳 ➜ artwork_type=*"}, - {"key": "attraction", "value": "ferris_wheel", "description": "🄳 ➜ attraction=big_wheel"}, - {"key": "barrier", "value": "chicane", "description": "🄳 ➜ barrier=cycle_barrier"}, - {"key": "barrier", "value": "curb", "description": "🄳 ➜ barrier=kerb"}, - {"key": "barrier", "value": "embankment", "description": "🄳 ➜ man_made=embankment"}, - {"key": "barrier", "value": "railing", "description": "🄳 ➜ barrier=fence + fence_type=railing"}, - {"key": "barrier", "value": "wire_fence", "description": "🄳 ➜ barrier=fence + fence_type=wire"}, - {"key": "barrier", "value": "wood_fence", "description": "🄳 ➜ barrier=fence + fence_type=wood"}, - {"key": "bicycle:oneway", "description": "🄳 ➜ oneway:bicycle=*"}, - {"key": "bridge", "value": "1", "description": "🄳 ➜ bridge=yes"}, - {"key": "bridge", "value": "true", "description": "🄳 ➜ bridge=yes"}, - {"key": "building", "value": "family_house", "description": "🄳 ➜ building=house"}, - {"key": "building", "value": "home", "description": "🄳 ➜ building=house"}, - {"key": "building", "value": "household", "description": "🄳 ➜ building=house"}, - {"key": "building", "value": "pavillion", "description": "🄳 ➜ building=pavilion"}, - {"key": "building:color", "description": "🄳 ➜ building:colour=*"}, - {"key": "building:height", "description": "🄳 ➜ height=*"}, - {"key": "building:material", "value": "Brick", "description": "🄳 ➜ building:material=brick"}, - {"key": "building:min_height", "description": "🄳 ➜ min_height=*"}, - {"key": "building:roof:colour", "description": "🄳 ➜ roof:colour=*"}, - {"key": "building:type", "description": "🄳 ➜ building=*"}, - {"key": "camp_site", "value": "camp_pitch", "description": "🄳 ➜ tourism=camp_pitch"}, - {"key": "color", "description": "🄳 ➜ colour=*"}, - {"key": "company", "value": "consulting", "description": "🄳 ➜ office=consulting"}, - {"key": "content", "value": "unknown", "description": "🄳"}, - {"key": "contents", "description": "🄳 ➜ content=*"}, - {"key": "craft", "value": "catering", "description": "🄳 ➜ craft=caterer"}, - {"key": "craft", "value": "glass", "description": "🄳 ➜ craft=glaziery"}, - {"key": "craft", "value": "jeweler", "description": "🄳 ➜ shop=jewelry"}, - {"key": "craft", "value": "optician", "description": "🄳 ➜ shop=optician"}, - {"key": "craft", "value": "sculpter", "description": "🄳 ➜ craft=sculptor"}, - {"key": "crossing", "value": "island", "description": "🄳 ➜ crossing:island=yes"}, - {"key": "crossing", "value": "traffic_lights", "description": "🄳 ➜ crossing=traffic_signals"}, - {"key": "cuisine", "value": "gluten-free", "description": "🄳 ➜ diet:gluten_free=*"}, - {"key": "cuisine", "value": "halal", "description": "🄳 ➜ diet:halal=*"}, - {"key": "cuisine", "value": "kosher", "description": "🄳 ➜ diet:kosher=*"}, - {"key": "cuisine", "value": "vegan", "description": "🄳 ➜ diet:vegan=*"}, - {"key": "cuisine", "value": "vegetarian", "description": "🄳 ➜ diet:vegetarian=*"}, - {"key": "culvert", "value": "culvert", "description": "🄳 ➜ tunnel=culvert"}, - {"key": "culvert", "value": "tunnel", "description": "🄳 ➜ tunnel=culvert"}, - {"key": "culvert", "value": "yes", "description": "🄳 ➜ tunnel=culvert"}, - {"key": "curb", "description": "🄳 ➜ kerb=*"}, - {"key": "diaper", "value": "1", "description": "🄳 ➜ changing_table=yes + changing_table:count=1"}, - {"key": "diaper", "value": "no", "description": "🄳 ➜ changing_table=no"}, - {"key": "diaper", "value": "room", "description": "🄳 ➜ changing_table=yes + changing_table:location=room"}, - {"key": "diaper", "value": "yes", "description": "🄳 ➜ changing_table=yes"}, - {"key": "direction", "value": "all", "description": "🄳 ➜ direction=both"}, - {"key": "direction", "value": "downhill", "description": "🄳 ➜ incline=down"}, - {"key": "direction", "value": "East", "description": "🄳 ➜ direction=E"}, - {"key": "direction", "value": "forward;backward", "description": "🄳 ➜ direction=both"}, - {"key": "direction", "value": "North", "description": "🄳 ➜ direction=N"}, - {"key": "direction", "value": "South", "description": "🄳 ➜ direction=S"}, - {"key": "direction", "value": "uphill", "description": "🄳 ➜ incline=up"}, - {"key": "direction", "value": "West", "description": "🄳 ➜ direction=W"}, - {"key": "disabled_spaces", "description": "🄳 ➜ capacity:disabled=*"}, - {"key": "drinkable", "description": "🄳 ➜ drinking_water=*"}, - {"key": "dropped_kerb", "description": "🄳 ➜ kerb=lowered"}, - {"key": "embankment", "value": "1", "description": "🄳 ➜ embankment=yes"}, - {"key": "embankment", "value": "false", "description": "🄳 ➜ embankment=no"}, - {"key": "embankment", "value": "true", "description": "🄳 ➜ embankment=yes"}, - {"key": "entrance", "value": "emergency_exit", "description": "🄳 ➜ entrance=emergency"}, - {"key": "entrance", "value": "fire_exit", "description": "🄳 ➜ entrance=emergency"}, - {"key": "entrance", "value": "loading_dock", "description": "🄳 ➜ amenity=loading_dock"}, - {"key": "entrance", "value": "main_entrance", "description": "🄳 ➜ entrance=main"}, - {"key": "entrance", "value": "private", "description": "🄳 ➜ entrance=yes + access=private"}, - {"key": "escalator", "description": "🄳 ➜ highway=steps + conveying=*"}, - {"key": "fast_food", "value": "pizza", "description": "🄳 ➜ cuisine=pizza"}, - {"key": "fast_food", "value": "shawarma", "description": "🄳 ➜ cuisine=shawarma"}, - {"key": "fee", "value": "0", "description": "🄳 ➜ fee=no"}, - {"key": "fee", "value": "free", "description": "🄳 ➜ fee=no"}, - {"key": "fee", "value": "Free", "description": "🄳 ➜ fee=no"}, - {"key": "fee", "value": "No", "description": "🄳 ➜ fee=no"}, - {"key": "fee", "value": "none", "description": "🄳 ➜ fee=no"}, - {"key": "fee", "value": "some", "description": "🄳 ➜ fee=yes"}, - {"key": "fee", "value": "Yes", "description": "🄳 ➜ fee=yes"}, - {"key": "fenced", "value": "yes", "description": "🄳 ➜ barrier=fence"}, - {"key": "FIXME", "description": "🄳 ➜ fixme=*"}, - {"key": "footway", "value": "both", "description": "🄳 ➜ sidewalk=both"}, - {"key": "footway", "value": "left", "description": "🄳 ➜ sidewalk=left"}, - {"key": "footway", "value": "no", "description": "🄳 ➜ sidewalk=no"}, - {"key": "footway", "value": "none", "description": "🄳 ➜ sidewalk=no"}, - {"key": "footway", "value": "right", "description": "🄳 ➜ sidewalk=right"}, - {"key": "footway", "value": "separate", "description": "🄳 ➜ sidewalk=separate"}, - {"key": "gambling", "value": "slot_machine", "description": "🄳 ➜ gambling=slot_machines"}, - {"key": "generator:source", "value": "photovoltaic", "description": "🄳 ➜ generator:source=solar + generator:method=photovoltaic"}, - {"key": "golf", "value": "faiway", "description": "🄳 ➜ golf=fairway + landuse=grass"}, - {"key": "golf", "value": "putting_green", "description": "🄳 ➜ golf=green + landuse=grass"}, - {"key": "golf", "value": "sand_trap", "description": "🄳 ➜ golf=bunker + natural=sand"}, - {"key": "golf", "value": "tee_area", "description": "🄳 ➜ golf=tee + landuse=grass"}, - {"key": "golf", "value": "tee_box", "description": "🄳 ➜ golf=tee + landuse=grass"}, - {"key": "golf", "value": "teebox", "description": "🄳 ➜ golf=tee + landuse=grass"}, - {"key": "highway", "value": "abandoned", "description": "🄳 ➜ abandoned:highway=*"}, - {"key": "highway", "value": "ford", "description": "🄳 ➜ ford=*"}, - {"key": "highway", "value": "no", "description": "🄳"}, - {"key": "highway", "value": "platform", "description": "🄳 ➜ highway=platform + public_transport=platform"}, - {"key": "highway", "value": "stile", "description": "🄳 ➜ barrier=stile"}, - {"key": "highway", "value": "unsurfaced", "description": "🄳 ➜ highway=road + surface=unpaved"}, - {"key": "internet_access", "value": "public", "description": "🄳 ➜ internet_access=yes + internet_access:fee=no"}, - {"key": "internet_access", "value": "wifi", "description": "🄳 ➜ internet_access=wlan"}, - {"key": "internet_access:fee", "value": "0", "description": "🄳 ➜ internet_access:fee=no"}, - {"key": "internet_access:fee", "value": "free", "description": "🄳 ➜ internet_access:fee=no"}, - {"key": "internet_access:fee", "value": "Free", "description": "🄳 ➜ internet_access:fee=no"}, - {"key": "internet_access:fee", "value": "No", "description": "🄳 ➜ internet_access:fee=no"}, - {"key": "internet_access:name", "description": "🄳 ➜ internet_access:ssid=*"}, - {"key": "internet_access:type", "description": "🄳 ➜ internet_access=*"}, - {"key": "kerb", "value": "dropped", "description": "🄳 ➜ kerb=lowered"}, - {"key": "kerb", "value": "flat", "description": "🄳 ➜ kerb=flush"}, - {"key": "lamp_mount", "value": "bent mast", "description": "🄳 ➜ lamp_mount=bent_mast"}, - {"key": "lamp_mount", "value": "straight mast", "description": "🄳 ➜ lamp_mount=straight_mast"}, - {"key": "lamp_mount", "value": "straightmast", "description": "🄳 ➜ lamp_mount=straight_mast"}, - {"key": "lamp_mount", "value": "streight_mast", "description": "🄳 ➜ lamp_mount=straight_mast"}, - {"key": "lamp_mount", "value": "wal", "description": "🄳 ➜ lamp_mount=wall"}, - {"key": "lamp_mount", "value": "wall mounted", "description": "🄳 ➜ lamp_mount=wall"}, - {"key": "lamp_mount", "value": "wall_mount", "description": "🄳 ➜ lamp_mount=wall"}, - {"key": "lamp_mount", "value": "wall_mounted", "description": "🄳 ➜ lamp_mount=wall"}, - {"key": "landcover", "value": "flower_bed", "description": "🄳 ➜ landuse=flowerbed"}, - {"key": "landcover", "value": "flowerbed", "description": "🄳 ➜ landuse=flowerbed"}, - {"key": "landuse", "value": "conservation", "description": "🄳 ➜ boundary=protected_area"}, - {"key": "landuse", "value": "field", "description": "🄳 ➜ landuse=farmland"}, - {"key": "landuse", "value": "garden", "description": "🄳 ➜ leisure=garden"}, - {"key": "landuse", "value": "port", "description": "🄳 ➜ landuse=industrial + industrial=port"}, - {"key": "landuse", "value": "wood", "description": "🄳 ➜ natural=wood"}, - {"key": "leisure", "value": "beach", "description": "🄳 ➜ natural=beach"}, - {"key": "leisure", "value": "bingo", "description": "🄳 ➜ amenity=gambling + gambling=bingo"}, - {"key": "leisure", "value": "club", "description": "🄳 ➜ club=*"}, - {"key": "leisure", "value": "gambling", "description": "🄳 ➜ amenity=gambling"}, - {"key": "leisure", "value": "golf_pin", "description": "🄳 ➜ golf=pin"}, - {"key": "leisure", "value": "recreation_ground", "description": "🄳 ➜ landuse=recreation_ground"}, - {"key": "leisure", "value": "video_arcade", "description": "🄳 ➜ leisure=amusement_arcade"}, - {"key": "Level", "description": "🄳 ➜ level=*"}, - {"key": "LEVEL", "description": "🄳 ➜ level=*"}, - {"key": "levels", "description": "🄳 ➜ building:levels=*"}, - {"key": "LEVELS", "description": "🄳 ➜ building:levels=*"}, - {"key": "levels_count", "description": "🄳 ➜ building:levels=*"}, - {"key": "man_made", "value": "cut_line", "description": "🄳 ➜ man_made=cutline"}, - {"key": "man_made", "value": "flower_bed", "description": "🄳 ➜ landuse=flowerbed"}, - {"key": "man_made", "value": "flowerbed", "description": "🄳 ➜ landuse=flowerbed"}, - {"key": "man_made", "value": "fuel_storage_tank", "description": "🄳 ➜ man_made=storage_tank + content=fuel"}, - {"key": "man_made", "value": "gas_well", "description": "🄳 ➜ man_made=petroleum_well + substance=gas"}, - {"key": "man_made", "value": "jetty", "description": "🄳 ➜ man_made=pier"}, - {"key": "man_made", "value": "mdf", "description": "🄳 ➜ telecom=exchange"}, - {"key": "man_made", "value": "MDF", "description": "🄳 ➜ telecom=exchange"}, - {"key": "man_made", "value": "oil_tank", "description": "🄳 ➜ man_made=storage_tank + content=oil"}, - {"key": "man_made", "value": "oil_well", "description": "🄳 ➜ man_made=petroleum_well + substance=oil"}, - {"key": "man_made", "value": "telephone_exchange", "description": "🄳 ➜ telecom=exchange"}, - {"key": "man_made", "value": "village_pump", "description": "🄳 ➜ man_made=water_well"}, - {"key": "man_made", "value": "wastewater_tank", "description": "🄳 ➜ man_made=storage_tank + content=wastewater"}, - {"key": "man_made", "value": "water_tank", "description": "🄳 ➜ man_made=storage_tank + content=water"}, - {"key": "man_made", "value": "weigh_bridge", "description": "🄳 ➜ amenity=weighbridge"}, - {"key": "man_made", "value": "weighbridge", "description": "🄳 ➜ amenity=weighbridge"}, - {"key": "man_made", "value": "weighing_machine", "description": "🄳 ➜ amenity=weighbridge"}, - {"key": "man_made", "value": "weighing_scale", "description": "🄳 ➜ amenity=weighbridge"}, - {"key": "man_made", "value": "weighting machine", "description": "🄳 ➜ amenity=weighbridge"}, - {"key": "man_made", "value": "weighting_machine", "description": "🄳 ➜ amenity=weighbridge"}, - {"key": "man_made", "value": "well", "description": "🄳 ➜ man_made=water_well"}, - {"key": "man_made", "value": "winery", "description": "🄳 ➜ craft=winery"}, - {"key": "maxage", "description": "🄳 ➜ max_age=*"}, - {"key": "memorial", "value": "plate", "description": "🄳 ➜ memorial=plaque"}, - {"key": "men", "description": "🄳 ➜ male=*"}, - {"key": "minage", "description": "🄳 ➜ min_age=*"}, - {"key": "mining_resource", "description": "🄳 ➜ resource=*"}, - {"key": "museum_type", "value": "history", "description": "🄳 ➜ museum=history"}, - {"key": "museum_type", "value": "private", "description": "🄳 ➜ operator:type=private"}, - {"key": "museum_type", "value": "public", "description": "🄳 ➜ operator:type=public"}, - {"key": "natural", "value": "marsh", "description": "🄳 ➜ natural=wetland + wetland=marsh"}, - {"key": "natural", "value": "waterfall", "description": "🄳 ➜ waterway=waterfall"}, - {"key": "NOTE", "description": "🄳 ➜ note=*"}, - {"key": "nosquare", "description": "🄳 ➜ nonsquare=*"}, - {"key": "office", "value": "consultancy", "description": "🄳 ➜ office=consulting"}, - {"key": "office", "value": "consultant", "description": "🄳 ➜ office=consulting"}, - {"key": "office", "value": "real_estate", "description": "🄳 ➜ office=estate_agent"}, - {"key": "oneway", "value": "1", "description": "🄳 ➜ oneway=yes"}, - {"key": "oneway", "value": "alternate", "description": "🄳 ➜ oneway=alternating"}, - {"key": "oneway", "value": "no;yes", "description": "🄳"}, - {"key": "oneway", "value": "unknown", "description": "🄳"}, - {"key": "operator:type", "value": "goverment", "description": "🄳 ➜ operator:type=government"}, - {"key": "operator:type", "value": "Privado", "description": "🄳 ➜ operator:type=private"}, - {"key": "operator:type", "value": "Private", "description": "🄳 ➜ operator:type=private"}, - {"key": "operator:type", "value": "Public", "description": "🄳 ➜ operator:type=public"}, - {"key": "operator:type", "value": "Publico", "description": "🄳 ➜ operator:type=public"}, - {"key": "operator:type", "value": "unknown", "description": "🄳"}, - {"key": "parking", "value": "covered", "description": "🄳 ➜ covered=yes"}, - {"key": "parking", "value": "customers", "description": "🄳 ➜ access=customers"}, - {"key": "parking", "value": "entrance", "description": "🄳 ➜ amenity=parking_entrance"}, - {"key": "parking", "value": "park_and_ride", "description": "🄳 ➜ park_ride=yes"}, - {"key": "parking", "value": "private", "description": "🄳 ➜ access=private"}, - {"key": "parking", "value": "street", "description": "🄳 ➜ parking=lane"}, - {"key": "place_name", "description": "🄳 ➜ name=*"}, - {"key": "pole", "value": "transition", "description": "🄳 ➜ location:transition=yes"}, - {"key": "pole:type", "value": "termination", "description": "🄳 ➜ line_management=termination"}, - {"key": "postcode", "description": "🄳 ➜ addr:postcode=*"}, - {"key": "power", "value": "busbar", "description": "🄳 ➜ power=line + line=busbar"}, - {"key": "power", "value": "marker", "description": "🄳 ➜ marker=* + utility=power"}, - {"key": "power", "value": "sub_station", "description": "🄳 ➜ power=substation"}, - {"key": "power", "value": "underground_cable", "description": "🄳 ➜ power=cable + location=underground"}, - {"key": "power_source", "description": "🄳 ➜ generator:source=*"}, - {"key": "power_rating", "description": "🄳 ➜ generator:output=*"}, - {"key": "pump", "value": "hand_pump", "description": "🄳 ➜ pump=manual"}, - {"key": "pump", "value": "electrical_pump", "description": "🄳 ➜ pump=powered"}, - {"key": "pump", "value": "no_pump", "description": "🄳 ➜ pump=no"}, - {"key": "pump", "value": "power", "description": "🄳 ➜ pump=powered"}, - {"key": "recommended_speed", "description": "🄳 ➜ maxspeed:advisory=*"}, - {"key": "recommended_speed:backward", "description": "🄳 ➜ maxspeed:advisory:backward=*"}, - {"key": "recommended_speed:forward", "description": "🄳 ➜ maxspeed:advisory:forward=*"}, - {"key": "religion", "value": "catholic", "description": "🄳 ➜ religion=christian + denomination=catholic"}, - {"key": "reservations", "description": "🄳 ➜ reservation=*"}, - {"key": "roof:color", "description": "🄳 ➜ roof:colour=*"}, - {"key": "roof:shape", "value": "half_hipped", "description": "🄳 ➜ roof:shape=half-hipped"}, - {"key": "route", "value": "ncn", "description": "🄳 ➜ route=bicycle + network=ncn"}, - {"key": "rwn_expected_route_relations", "description": "🄳 ➜ expected_rwn_route_relations=*"}, - {"key": "service", "value": "drive_through", "description": "🄳 ➜ service=drive-through"}, - {"key": "shop", "value": "adult", "description": "🄳 ➜ shop=erotic"}, - {"key": "shop", "value": "antique", "description": "🄳 ➜ shop=antiques"}, - {"key": "shop", "value": "army_surplus", "description": "🄳 ➜ shop=military_surplus"}, - {"key": "shop", "value": "auto_parts", "description": "🄳 ➜ shop=car_parts"}, - {"key": "shop", "value": "baby", "description": "🄳 ➜ shop=baby_goods"}, - {"key": "shop", "value": "baby_care", "description": "🄳 ➜ shop=baby_goods"}, - {"key": "shop", "value": "bags", "description": "🄳 ➜ shop=bag"}, - {"key": "shop", "value": "bail_bond", "description": "🄳 ➜ office=bail_bond_agent"}, - {"key": "shop", "value": "bail_bonds", "description": "🄳 ➜ office=bail_bond_agent"}, - {"key": "shop", "value": "betting", "description": "🄳 ➜ shop=bookmaker"}, - {"key": "shop", "value": "cafe", "description": "🄳 ➜ amenity=cafe"}, - {"key": "shop", "value": "consulting", "description": "🄳 ➜ office=consulting"}, - {"key": "shop", "value": "dive", "description": "🄳 ➜ shop=scuba_diving"}, - {"key": "shop", "value": "fish", "description": "🄳 ➜ shop=seafood"}, - {"key": "shop", "value": "fishmonger", "description": "🄳 ➜ shop=seafood"}, - {"key": "shop", "value": "furnace", "description": "🄳 ➜ shop=fireplace"}, - {"key": "shop", "value": "gallery", "description": "🄳 ➜ shop=art"}, - {"key": "shop", "value": "jewellery", "description": "🄳 ➜ shop=jewelry"}, - {"key": "shop", "value": "lingerie", "description": "🄳 ➜ shop=clothes + clothes=underwear"}, - {"key": "shop", "value": "luggage", "description": "🄳 ➜ shop=bag"}, - {"key": "shop", "value": "money_transfer", "description": "🄳 ➜ amenity=money_transfer"}, - {"key": "shop", "value": "moneylender", "description": "🄳 ➜ shop=money_lender"}, - {"key": "shop", "value": "organic", "description": "🄳 ➜ shop=supermarket + organic=only"}, - {"key": "shop", "value": "perfume", "description": "🄳 ➜ shop=perfumery"}, - {"key": "shop", "value": "real_estate", "description": "🄳 ➜ office=estate_agent"}, - {"key": "shop", "value": "tickets", "description": "🄳 ➜ shop=ticket"}, - {"key": "shop", "value": "underwear", "description": "🄳 ➜ shop=clothes + clothes=underwear"}, - {"key": "shop", "value": "winery", "description": "🄳 ➜ craft=winery"}, - {"key": "showers", "description": "🄳 ➜ shower=*"}, - {"key": "sloped_curb", "value": "0", "description": "🄳 ➜ kerb=flush"}, - {"key": "sloped_curb", "value": "0.00", "description": "🄳 ➜ kerb=flush"}, - {"key": "sloped_curb", "value": "0.01", "description": "🄳 ➜ kerb=lowered + kerb:height=1 cm"}, - {"key": "sloped_curb", "value": "0.02", "description": "🄳 ➜ kerb=lowered + kerb:height=2 cm"}, - {"key": "sloped_curb", "value": "0.03", "description": "🄳 ➜ kerb=lowered + kerb:height=3 cm"}, - {"key": "sloped_curb", "value": "at_grade", "description": "🄳 ➜ kerb=flush"}, - {"key": "sloped_curb", "value": "both", "description": "🄳 ➜ kerb=lowered"}, - {"key": "sloped_curb", "value": "flush", "description": "🄳 ➜ kerb=flush"}, - {"key": "sloped_curb", "value": "low", "description": "🄳 ➜ kerb=lowered"}, - {"key": "sloped_curb", "value": "no", "description": "🄳 ➜ kerb=raised"}, - {"key": "sloped_curb", "value": "yes", "description": "🄳 ➜ kerb=lowered"}, - {"key": "speed_limit", "description": "🄳 ➜ maxspeed=*"}, - {"key": "speedlimit", "description": "🄳 ➜ maxspeed=*"}, - {"key": "SpeedLimit", "description": "🄳 ➜ maxspeed=*"}, - {"key": "SPEEDLIMIT", "description": "🄳 ➜ maxspeed=*"}, - {"key": "sport", "value": "horse_shoes", "description": "🄳 ➜ sport=horseshoes"}, - {"key": "sport", "value": "horseshoe", "description": "🄳 ➜ sport=horseshoes"}, - {"key": "sport", "value": "shuffle_board", "description": "🄳 ➜ sport=shuffleboard"}, - {"key": "station", "value": "light_rail", "description": "🄳 ➜ station=light_rail + light_rail=yes"}, - {"key": "station", "value": "monorail", "description": "🄳 ➜ station=monorail + monorail=yes"}, - {"key": "station", "value": "subway", "description": "🄳 ➜ station=subway + subway=yes"}, - {"key": "station", "value": "train", "description": "🄳 ➜ station=train + train=yes"}, - {"key": "sustenance", "value": "bar", "description": "🄳 ➜ amenity=bar"}, - {"key": "sustenance", "value": "cafe", "description": "🄳 ➜ amenity=cafe"}, - {"key": "sustenance", "value": "pub", "description": "🄳 ➜ amenity=pub"}, - {"key": "sustenance", "value": "restaurant", "description": "🄳 ➜ amenity=restaurant"}, - {"key": "theatre:type", "value": "amphitheatre", "description": "🄳 ➜ theatre:type=amphi"}, - {"key": "todo", "description": "🄳 ➜ fixme=*"}, - {"key": "TODO", "description": "🄳 ➜ fixme=*"}, - {"key": "toilets:disposal", "value": "longdrop", "description": "🄳 ➜ toilets:disposal=pitlatrine"}, - {"key": "toilets:disposal", "value": "pit_latrine", "description": "🄳 ➜ toilets:disposal=pitlatrine"}, - {"key": "toilets:type", "value": "flush", "description": "🄳 ➜ toilets:disposal=flush"}, - {"key": "toilets:type", "value": "pit", "description": "🄳 ➜ toilets:disposal=pitlatrine"}, - {"key": "toilets:type", "value": "pitlatrine", "description": "🄳 ➜ toilets:disposal=pitlatrine"}, - {"key": "toilets:type", "value": "pit latrine", "description": "🄳 ➜ toilets:disposal=pitlatrine"}, - {"key": "tourism", "value": "bed_and_breakfast", "description": "🄳 ➜ tourism=guest_house + guest_house=bed_and_breakfast"}, - {"key": "tower:type", "value": "power", "description": "🄳 ➜ power=tower"}, - {"key": "tower:type", "value": "anchor", "description": "🄳 ➜ line_attachment=anchor"}, - {"key": "tower:type", "value": "suspension", "description": "🄳 ➜ line_attachment=suspension"}, - {"key": "tower:type", "value": "termination", "description": "🄳 ➜ line_management=termination"}, - {"key": "tower:type", "value": "transposing", "description": "🄳 ➜ line_management=transpose"}, - {"key": "townhall:village", "value": "yes", "description": "🄳 ➜ amenity=townhall + townhall:type=village"}, - {"key": "tunnel", "value": "1", "description": "🄳 ➜ tunnel=yes"}, - {"key": "type", "value": "broad_leaved", "description": "🄳 ➜ leaf_type=broadleaved"}, - {"key": "type", "value": "caldera", "description": "🄳 ➜ volcano:type=caldera"}, - {"key": "type", "value": "conifer", "description": "🄳 ➜ leaf_type=needleleaved"}, - {"key": "type", "value": "deciduous", "description": "🄳 ➜ leaf_cycle=deciduous"}, - {"key": "type", "value": "extinct", "description": "🄳 ➜ volcano:status=extinct"}, - {"key": "type", "value": "scoria", "description": "🄳 ➜ volcano:type=scoria"}, - {"key": "type", "value": "shield", "description": "🄳 ➜ volcano:type=shield"}, - {"key": "type", "value": "strato", "description": "🄳 ➜ volcano:type=stratovolcano"}, - {"key": "unnamed", "description": "🄳 ➜ noname=*"}, - {"key": "vending", "value": "parcel_mail_in;parcel_pickup", "description": "🄳 ➜ vending=parcel_pickup;parcel_mail_in"}, - {"key": "vhf_channel", "description": "🄳 ➜ vhf=*"}, - {"key": "volcano", "value": "extinct", "description": "🄳 ➜ volcano:status=extinct"}, - {"key": "wall_type", "value": "noise_barrier", "description": "🄳 ➜ wall=noise_barrier"}, - {"key": "water", "value": "intermittent", "description": "🄳 ➜ natural=water + intermittent=yes"}, - {"key": "water", "value": "riverbank", "description": "🄳 ➜ natural=water + water=river"}, - {"key": "water", "value": "salt", "description": "🄳 ➜ natural=water + salt=yes"}, - {"key": "water", "value": "tidal", "description": "🄳 ➜ natural=water + tidal=yes"}, - {"key": "waterway", "value": "aqueduct", "description": "🄳 ➜ waterway=canal + bridge=aqueduct"}, - {"key": "waterway", "value": "lock", "description": "🄳 ➜ waterway=canal + lock=yes"}, - {"key": "waterway:vhf_channel", "description": "🄳 ➜ vhf=*"}, - {"key": "wifi", "value": "yes", "description": "🄳 ➜ internet_access=wlan"}, - {"key": "wifi", "value": "free", "description": "🄳 ➜ internet_access=wlan + internet_access:fee=no"}, - {"key": "women", "description": "🄳 ➜ female=*"}, - {"key": "wood", "value": "coniferous", "description": "🄳 ➜ leaf_type=needleleaved"}, - {"key": "wood", "value": "deciduous", "description": "🄳 ➜ leaf_cycle=deciduous"}, - {"key": "wood", "value": "evergreen", "description": "🄳 ➜ leaf_cycle=evergreen"}, - {"key": "wood", "value": "mixed", "description": "🄳 ➜ leaf_cycle=mixed + leaf_type=mixed"} - ] -} \ No newline at end of file diff --git a/package.json b/package.json index 556a0da9cf..efc75539e9 100644 --- a/package.json +++ b/package.json @@ -75,6 +75,7 @@ "@fortawesome/free-solid-svg-icons": "~5.15.1", "@ideditor/temaki": "~4.3.0", "@mapbox/maki": "^6.0.0", + "@openstreetmap/id-tagging-schema": "1.0.0", "@rollup/plugin-babel": "^5.2.1", "@rollup/plugin-commonjs": "^16.0.0", "@rollup/plugin-json": "^4.0.1", @@ -94,7 +95,6 @@ "happen": "^0.3.1", "js-yaml": "^3.14.0", "json-stringify-pretty-compact": "^2.0.0", - "jsonschema": "^1.1.0", "mapillary-js": "~2.21.0", "mapillary_sprite_source": "^1.8.0", "minimist": "^1.2.3", diff --git a/scripts/build_data.js b/scripts/build_data.js index 1ee6ff077c..1e90db109f 100644 --- a/scripts/build_data.js +++ b/scripts/build_data.js @@ -1,10 +1,6 @@ /* eslint-disable no-console */ const colors = require('colors/safe'); const fs = require('fs'); -const glob = require('glob'); -const jsonschema = require('jsonschema'); -const nsiBrands = require('name-suggestion-index/dist/brands.json').brands; -const nsiWikidata = require('name-suggestion-index/dist/wikidata.json').wikidata; const path = require('path'); const prettyStringify = require('json-stringify-pretty-compact'); const shell = require('shelljs'); @@ -12,9 +8,13 @@ const YAML = require('js-yaml'); const languageNames = require('./language_names.js'); -const fieldSchema = require('../data/presets/schema/field.json'); -const presetSchema = require('../data/presets/schema/preset.json'); -const deprecated = require('../data/deprecated.json'); +const presets = require('@openstreetmap/id-tagging-schema/dist/presets.min.json'); +const fields = require('@openstreetmap/id-tagging-schema/dist/fields.min.json'); +const categories = require('@openstreetmap/id-tagging-schema/dist/preset_categories.min.json'); +const defaults = require('@openstreetmap/id-tagging-schema/dist/preset_defaults.min.json'); +const discarded = require('@openstreetmap/id-tagging-schema/dist/discarded.min.json'); +const deprecated = require('@openstreetmap/id-tagging-schema/dist/deprecated.min.json'); +const taginfo = require('@openstreetmap/id-tagging-schema/dist/taginfo.min.json'); // fontawesome icons const fontawesome = require('@fortawesome/fontawesome-svg-core'); @@ -57,59 +57,52 @@ function buildData() { } } - // Translation strings - let tstrings = { - categories: {}, - fields: {}, - presets: {} - }; - - // Font Awesome icons used - let faIcons = { - 'fas-i-cursor': {}, - 'fas-lock': {}, - 'fas-th-list': {}, - 'fas-user-cog': {} - }; - - // all fields searchable under "add field" - let searchableFieldIDs = {}; - // Start clean shell.rm('-f', [ - 'data/presets/categories.json', - 'data/presets/fields.json', - 'data/presets/presets.json', 'data/presets.yaml', - 'data/taginfo.json', 'data/territory_languages.json', 'dist/locales/en.json', 'dist/data/*', 'svg/fontawesome/*.svg', ]); + // compile Font Awesome icons + let faIcons = new Set([ + // list here the icons we want to use in the UI that aren't tied to other data + 'fas-i-cursor', + 'fas-lock', + 'fas-th-list', + 'fas-user-cog' + ]); + // add icons for QA integrations readQAIssueIcons(faIcons); - let categories = generateCategories(tstrings, faIcons); - let fields = generateFields(tstrings, faIcons, searchableFieldIDs); - let presets = generatePresets(tstrings, faIcons, searchableFieldIDs); - let defaults = read('data/presets/defaults.json'); - let translations = generateTranslations(fields, presets, tstrings, searchableFieldIDs); - let taginfo = generateTaginfo(presets, fields); + // add icons for presets + [categories, fields, presets].forEach(function(data) { + for (var key in data) { + var datum = data[key]; + // fontawesome icon + if (datum.icon && /^fa[srb]-/.test(datum.icon)) { + faIcons.add(datum.icon); + } + } + }); + // copy over only those Font Awesome icons that we need + writeFaIcons(faIcons); + let territoryLanguages = generateTerritoryLanguages(); + fs.writeFileSync('data/territory_languages.json', prettyStringify(territoryLanguages, { maxLength: 9999 }) ); + writeEnJson(); - // Additional consistency checks - validateCategoryPresets(categories, presets); - validatePresetFields(presets, fields); - validateDefaults(defaults, categories, presets); + // put preset translations file where Transifex currently expects it + fs.copyFileSync(path.dirname(require.resolve('@openstreetmap/id-tagging-schema')) + '/dist/translations/en.yaml', 'data/presets.yaml'); - fs.writeFileSync('data/presets/categories.json', prettyStringify(categories, { maxLength: 9999 }) ); - fs.writeFileSync('data/presets/fields.json', prettyStringify(fields, { maxLength: 9999 }) ); - fs.writeFileSync('data/presets/presets.json', prettyStringify(presets, { maxLength: 9999 }) ); - fs.writeFileSync('data/presets.yaml', translationsToYAML(translations) ); - fs.writeFileSync('data/taginfo.json', prettyStringify(taginfo, { maxLength: 9999 }) ); - fs.writeFileSync('data/territory_languages.json', prettyStringify(territoryLanguages, { maxLength: 9999 }) ); - writeEnJson(tstrings); - writeFaIcons(faIcons); + fs.writeFileSync('dist/data/preset_presets.min.json', JSON.stringify(presets)); + fs.writeFileSync('dist/data/preset_fields.min.json', JSON.stringify(fields)); + fs.writeFileSync('dist/data/preset_categories.min.json', JSON.stringify(categories)); + fs.writeFileSync('dist/data/preset_defaults.min.json', JSON.stringify(defaults)); + fs.writeFileSync('dist/data/discarded.min.json', JSON.stringify(discarded)); + fs.writeFileSync('dist/data/deprecated.min.json', JSON.stringify(deprecated)); + fs.writeFileSync('dist/data/taginfo.min.json', JSON.stringify(taginfo)); const languageInfo = languageNames.langNamesInNativeLang; fs.writeFileSync('data/languages.json', prettyStringify(languageInfo, { maxLength: 200 })); @@ -117,13 +110,7 @@ function buildData() { // Save individual data files let tasks = [ - minifyJSON('data/presets/categories.json', 'dist/data/preset_categories.min.json'), - minifyJSON('data/presets/defaults.json', 'dist/data/preset_defaults.min.json'), - minifyJSON('data/presets/fields.json', 'dist/data/preset_fields.min.json'), - minifyJSON('data/presets/presets.json', 'dist/data/preset_presets.min.json'), minifyJSON('data/address_formats.json', 'dist/data/address_formats.min.json'), - minifyJSON('data/deprecated.json', 'dist/data/deprecated.min.json'), - minifyJSON('data/discarded.json', 'dist/data/discarded.min.json'), minifyJSON('data/imagery.json', 'dist/data/imagery.min.json'), minifyJSON('data/intro_graph.json', 'dist/data/intro_graph.min.json'), minifyJSON('data/keepRight.json', 'dist/data/keepRight.min.json'), @@ -132,7 +119,6 @@ function buildData() { minifyJSON('data/phone_formats.json', 'dist/data/phone_formats.min.json'), minifyJSON('data/qa_data.json', 'dist/data/qa_data.min.json'), minifyJSON('data/shortcuts.json', 'dist/data/shortcuts.min.json'), - minifyJSON('data/taginfo.json', 'dist/data/taginfo.min.json'), minifyJSON('data/territory_languages.json', 'dist/data/territory_languages.min.json') ]; @@ -152,31 +138,8 @@ function buildData() { } -function read(f) { - return JSON.parse(fs.readFileSync(f, 'utf8')); -} - - -function validate(file, instance, schema) { - let validationErrors = jsonschema.validate(instance, schema).errors; - - if (validationErrors.length) { - console.error(`${file}: `); - validationErrors.forEach(error => { - if (error.property) { - console.error(error.property + ' ' + error.message); - } else { - console.error(error); - } - }); - console.log(''); - process.exit(1); - } -} - - function readQAIssueIcons(faIcons) { - const qa = read('data/qa_data.json'); + const qa = JSON.parse(fs.readFileSync('data/qa_data.json', 'utf8')); for (const service in qa) { for (const item in qa[service].icons) { @@ -184,441 +147,10 @@ function readQAIssueIcons(faIcons) { // fontawesome icon, remember for later if (/^fa[srb]-/.test(icon)) { - faIcons[icon] = {}; - } - } - } -} - - -function generateCategories(tstrings, faIcons) { - let categories = {}; - - glob.sync('data/presets/categories/*.json').forEach(file => { - let category = read(file); - let id = 'category-' + path.basename(file, '.json'); - tstrings.categories[id] = { name: category.name }; - categories[id] = category; - - // fontawesome icon, remember for later - if (/^fa[srb]-/.test(category.icon)) { - faIcons[category.icon] = {}; - } - }); - - return categories; -} - - -function generateFields(tstrings, faIcons, searchableFieldIDs) { - let fields = {}; - - glob.sync('data/presets/fields/**/*.json').forEach(file => { - let field = read(file); - let id = stripLeadingUnderscores(file.match(/presets\/fields\/([^.]*)\.json/)[1]); - - validate(file, field, fieldSchema); - - let t = tstrings.fields[id] = { - label: field.label, - terms: (field.terms || []).join(',') - }; - - if (field.universal) { - searchableFieldIDs[id] = true; - } - - if (field.placeholder) { - t.placeholder = field.placeholder; - } - - if (field.strings) { - for (let i in field.strings) { - t[i] = field.strings[i]; - } - } - - fields[id] = field; - - // fontawesome icon, remember for later - if (/^fa[srb]-/.test(field.icon)) { - faIcons[field.icon] = {}; - } - }); - - return fields; -} - - -function suggestionsToPresets(presets) { - Object.keys(nsiBrands).forEach(kvnd => { - const suggestion = nsiBrands[kvnd]; - const qid = suggestion.tags['brand:wikidata']; - if (!qid || !/^Q\d+$/.test(qid)) return; // wikidata tag missing or looks wrong.. - - const parts = kvnd.split('|', 2); - const kv = parts[0]; - const name = parts[1].replace('~', ' '); - - let presetID, preset; - - // sometimes we can choose a more specific preset then key/value.. - if (suggestion.tags.cuisine) { - // cuisine can contain multiple values, so try them all in order - let cuisines = suggestion.tags.cuisine.split(';'); - for (let i = 0; i < cuisines.length; i++) { - presetID = kv + '/' + cuisines[i].trim(); - preset = presets[presetID]; - if (preset) break; // we matched one - } - - } else if (suggestion.tags.vending) { - if (suggestion.tags.vending === 'parcel_pickup;parcel_mail_in') { - presetID = kv + '/parcel_pickup_dropoff'; - } else { - presetID = kv + '/' + suggestion.tags.vending; - } - preset = presets[presetID]; - } - - // A few exceptions where the NSI tagging doesn't exactly match iD tagging.. - if (kv === 'healthcare/clinic') { - presetID = 'amenity/clinic'; - preset = presets[presetID]; - } else if (kv === 'leisure/tanning_salon') { - presetID = 'shop/beauty/tanning'; - preset = presets[presetID]; - } - - // fallback to key/value - if (!preset) { - presetID = kv; - preset = presets[presetID]; - } - - // still no match? - if (!preset) { - console.log(`Warning: No preset "${presetID}" for name-suggestion "${name}"`); - return; - } - - let suggestionID = presetID + '/' + name.replace('/', ''); - - let tags = { 'brand:wikidata': qid }; - for (let k in preset.tags) { - // prioritize suggestion tags over preset tags (for `vending`,`cuisine`, etc) - tags[k] = suggestion.tags[k] || preset.tags[k]; - } - - // Prefer a wiki commons logo sometimes.. #6361 - const preferCommons = { - Q177054: true, // Burger King - Q524757: true, // KFC - Q779845: true, // CBA - Q1205312: true, // In-N-Out - Q10443115: true // Carlings - }; - - let logoURL; - let logoURLs = nsiWikidata[qid] && nsiWikidata[qid].logos; - if (logoURLs) { - if (logoURLs.wikidata && preferCommons[qid]) { - logoURL = logoURLs.wikidata; - } else if (logoURLs.facebook) { - logoURL = logoURLs.facebook; - } else if (logoURLs.twitter) { - logoURL = logoURLs.twitter; - } else { - logoURL = logoURLs.wikidata; - } - } - - presets[suggestionID] = { - name: name, - icon: preset.icon, - imageURL: logoURL, - geometry: preset.geometry, - tags: tags, - addTags: suggestion.tags, - reference: preset.reference, - countryCodes: suggestion.countryCodes, - terms: (suggestion.matchNames || []), - matchScore: 2, - suggestion: true - }; - }); - - return presets; -} - - -function stripLeadingUnderscores(str) { - return str.split('/') - .map(s => s.replace(/^_/,'')) - .join('/'); -} - - -function generatePresets(tstrings, faIcons, searchableFieldIDs) { - let presets = {}; - - glob.sync('data/presets/presets/**/*.json').forEach(file => { - let preset = read(file); - let id = stripLeadingUnderscores(file.match(/presets\/presets\/([^.]*)\.json/)[1]); - - validate(file, preset, presetSchema); - - tstrings.presets[id] = { - name: preset.name, - terms: (preset.terms || []).join(',') - }; - - if (preset.moreFields) { - preset.moreFields.forEach(fieldID => { searchableFieldIDs[fieldID] = true; }); - } - - presets[id] = preset; - - // fontawesome icon, remember for later - if (/^fa[srb]-/.test(preset.icon)) { - faIcons[preset.icon] = {}; - } - }); - - presets = Object.assign(presets, suggestionsToPresets(presets)); - return presets; -} - - -function generateTranslations(fields, presets, tstrings, searchableFieldIDs) { - let translations = JSON.parse(JSON.stringify(tstrings)); // deep clone - - Object.keys(translations.fields).forEach(id => { - let field = translations.fields[id]; - let f = fields[id]; - let options = field.options || {}; - let optkeys = Object.keys(options); - - if (f.keys) { - field['label#'] = f.keys.map(k => `${k}=*`).join(', '); - optkeys.forEach(k => { - if (id === 'access') { - options[k]['title#'] = options[k]['description#'] = `access=${k}`; - } else { - options[k + '#'] = `${k}=yes`; - } - }); - } else if (f.key) { - field['label#'] = `${f.key}=*`; - optkeys.forEach(k => { - options[k + '#'] = `${f.key}=${k}`; - }); - } - - if (f.placeholder) { - field['placeholder#'] = `${id} field placeholder`; - } - - if (searchableFieldIDs[id]) { - if (f.terms && f.terms.length) { - field['terms#'] = 'terms: ' + f.terms.join(); - } - field.terms = '[translate with synonyms or related terms for \'' + field.label + '\', separated by commas]'; - } else { - delete tstrings.fields[id].terms; - delete f.terms; - delete field.terms; - } - }); - - Object.keys(translations.presets).forEach(id => { - let preset = translations.presets[id]; - let p = presets[id]; - let tags = p.tags || {}; - let keys = Object.keys(tags); - - if (keys.length) { - preset['name#'] = keys.map(k => `${k}=${tags[k]}`).join(', '); - } - - if (p.searchable !== false) { - if (p.terms && p.terms.length) { - preset['terms#'] = 'terms: ' + p.terms.join(); - } - preset.terms = ``; - } else { - delete tstrings.presets[id].terms; - delete p.terms; - delete preset.terms; - } - }); - - return translations; -} - - -function generateTaginfo(presets, fields) { - let taginfo = { - 'data_format': 1, - 'data_url': 'https://raw.githubusercontent.com/openstreetmap/iD/develop/data/taginfo.json', - 'project': { - 'name': 'iD Editor', - 'description': 'Online editor for OSM data.', - 'project_url': 'https://github.com/openstreetmap/iD', - 'doc_url': 'https://github.com/openstreetmap/iD/blob/develop/data/presets/README.md', - 'icon_url': 'https://cdn.jsdelivr.net/gh/openstreetmap/iD@release/dist/img/logo.png', - 'contact_name': 'Quincy Morgan', - 'contact_email': 'q@quincylvania.com' - }, - 'tags': [] - }; - - Object.keys(presets).forEach(id => { - let preset = presets[id]; - if (preset.suggestion) return; - - let keys = Object.keys(preset.tags); - let last = keys[keys.length - 1]; - let tag = { key: last }; - - if (!last) return; - - if (preset.tags[last] !== '*') { - tag.value = preset.tags[last]; - } - if (preset.name) { - let legacy = (preset.searchable === false) ? ' (unsearchable)' : ''; - tag.description = [ `🄿 ${preset.name}${legacy}` ]; - } - if (preset.geometry) { - setObjectType(tag, preset); - } - - // add icon - if (/^maki-/.test(preset.icon)) { - tag.icon_url = 'https://cdn.jsdelivr.net/gh/mapbox/maki/icons/' + - preset.icon.replace(/^maki-/, '') + '-15.svg'; - } else if (/^temaki-/.test(preset.icon)) { - tag.icon_url = 'https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/' + - preset.icon.replace(/^temaki-/, '') + '.svg'; - } else if (/^fa[srb]-/.test(preset.icon)) { - tag.icon_url = 'https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/' + - preset.icon + '.svg'; - } else if (/^iD-/.test(preset.icon)) { - tag.icon_url = 'https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/' + - preset.icon.replace(/^iD-/, '') + '.svg'; - } - - coalesceTags(taginfo, tag); - }); - - Object.keys(fields).forEach(id => { - const field = fields[id]; - const keys = field.keys || [ field.key ] || []; - const isRadio = (field.type === 'radio' || field.type === 'structureRadio'); - - keys.forEach(key => { - if (field.strings && field.strings.options && !isRadio && field.type !== 'manyCombo') { - let values = Object.keys(field.strings.options); - values.forEach(value => { - if (value === 'undefined' || value === '*' || value === '') return; - let tag; - if (field.type === 'multiCombo') { - tag = { key: key + value }; - } else { - tag = { key: key, value: value }; - } - if (field.label) { - tag.description = [ `🄵 ${field.label}` ]; - } - coalesceTags(taginfo, tag); - }); - } else { - let tag = { key: key }; - if (field.label) { - tag.description = [ `🄵 ${field.label}` ]; - } - coalesceTags(taginfo, tag); + faIcons.add(icon); } - }); - }); - - deprecated.forEach(elem => { - let old = elem.old; - let oldKeys = Object.keys(old); - if (oldKeys.length === 1) { - let oldKey = oldKeys[0]; - let tag = { key: oldKey }; - - let oldValue = old[oldKey]; - if (oldValue !== '*') tag.value = oldValue; - let replacementStrings = []; - for (let replaceKey in elem.replace) { - let replaceValue = elem.replace[replaceKey]; - if (replaceValue === '$1') replaceValue = '*'; - replacementStrings.push(`${replaceKey}=${replaceValue}`); - } - let description = '🄳'; - if (replacementStrings.length > 0) { - description += ' ➜ ' + replacementStrings.join(' + '); - } - tag.description = [description]; - coalesceTags(taginfo, tag); - } - }); - - taginfo.tags.forEach(elem => { - if (elem.description) { - elem.description = elem.description.join(', '); - } - }); - - - function coalesceTags(taginfo, tag) { - if (!tag.key) return; - - let currentTaginfoEntries = taginfo.tags - .filter(t => (t.key === tag.key && t.value === tag.value)); - - if (currentTaginfoEntries.length === 0) { - taginfo.tags.push(tag); - return; - } - - if (!tag.description) return; - - if (!currentTaginfoEntries[0].description) { - currentTaginfoEntries[0].description = tag.description; - return; - } - - let isNewDescription = currentTaginfoEntries[0].description - .indexOf(tag.description[0]) === -1; - - if (isNewDescription) { - currentTaginfoEntries[0].description.push(tag.description[0]); } } - - - function setObjectType(tag, input) { - tag.object_types = []; - const mapping = { - 'point' : 'node', - 'vertex' : 'node', - 'line' : 'way', - 'relation' : 'relation', - 'area' : 'area' - }; - - input.geometry.forEach(geom => { - if (tag.object_types.indexOf(mapping[geom]) === -1) { - tag.object_types.push(mapping[geom]); - } - }); - } - - return taginfo; } @@ -645,144 +177,8 @@ function generateTerritoryLanguages() { } -function validateCategoryPresets(categories, presets) { - Object.keys(categories).forEach(id => { - const category = categories[id]; - if (!category.members) return; - category.members.forEach(preset => { - if (presets[preset] === undefined) { - console.error('Unknown preset: ' + preset + ' in category ' + category.name); - console.log(''); - process.exit(1); - } - }); - }); -} - -function validatePresetFields(presets, fields) { - const betweenBracketsRegex = /([^{]*?)(?=\})/; - const maxFieldsBeforeError = 10; - - let usedFieldIDs = new Set(); - - for (let presetID in presets) { - let preset = presets[presetID]; - - if (preset.replacement) { - let replacementPreset = presets[preset.replacement]; - let p1geometry = preset.geometry.slice().sort.toString(); - let p2geometry = replacementPreset.geometry.slice().sort.toString(); - if (replacementPreset === undefined) { - console.error('Unknown preset "' + preset.replacement + '" referenced as replacement of preset "' + presetID + '" (' + preset.name + ')'); - console.log(''); - process.exit(1); - } else if (p1geometry !== p2geometry) { - console.error('The preset "' + presetID + '" has different geometry than its replacement preset, "' + preset.replacement + '". They must match for tag upgrades to work.'); - console.log(''); - process.exit(1); - } - } - - // the keys for properties that contain arrays of field ids - let fieldKeys = ['fields', 'moreFields']; - for (let fieldsKeyIndex in fieldKeys) { - let fieldsKey = fieldKeys[fieldsKeyIndex]; - if (!preset[fieldsKey]) continue; // no fields are referenced, okay - - for (let fieldIndex in preset[fieldsKey]) { - let fieldID = preset[fieldsKey][fieldIndex]; - usedFieldIDs.add(fieldID); - let field = fields[fieldID]; - if (field) { - if (field.geometry) { - let sharedGeometry = field.geometry.filter(value => preset.geometry.includes(value)); - if (!sharedGeometry.length) { - console.error('The preset "' + presetID + '" (' + preset.name + ') will never display the field "' + fieldID + '" since they don\'t share geometry types.'); - console.log(''); - process.exit(1); - } - } - - } else { - // no field found with this ID... - - let regexResult = betweenBracketsRegex.exec(fieldID); - if (regexResult) { - let foreignPresetID = regexResult[0]; - if (presets[foreignPresetID] === undefined) { - console.error('Unknown preset "' + foreignPresetID + '" referenced in "' + fieldsKey + '" array of preset "' + presetID + '" (' + preset.name + ')'); - console.log(''); - process.exit(1); - } - } else { - console.error('Unknown preset field "' + fieldID + '" in "' + fieldsKey + '" array of preset "' + presetID + '" (' + preset.name + ')'); - console.log(''); - process.exit(1); - } - } - - - } - } - - if (preset.fields) { - // since `moreFields` is available, check that `fields` doesn't get too cluttered - let fieldCount = preset.fields.length; - - if (fieldCount > maxFieldsBeforeError) { - // Fields with `prerequisiteTag` or `geometry` may not always be shown, - // so don't count them against the limits. - const alwaysShownFields = preset.fields.filter(fieldID => { - if (fields[fieldID] && fields[fieldID].prerequisiteTag || fields[fieldID].geometry) return false; - return true; - }); - fieldCount = alwaysShownFields.length; - } - if (fieldCount > maxFieldsBeforeError) { - console.error(fieldCount + ' values in "fields" of "' + preset.name + '" (' + presetID + '). Limit: ' + maxFieldsBeforeError + '. Please move lower-priority fields to "moreFields".'); - console.log(''); - process.exit(1); - } - } - } - - for (var fieldID in fields) { - if (!usedFieldIDs.has(fieldID) && - fields[fieldID].universal !== true && - (fields[fieldID].usage || 'preset') === 'preset') { - console.log('Field "' + fields[fieldID].label + '" (' + fieldID + ') isn\'t used by any presets.'); - } - } - -} - -function validateDefaults(defaults, categories, presets) { - Object.keys(defaults).forEach(name => { - const members = defaults[name]; - members.forEach(id => { - if (!presets[id] && !categories[id]) { - console.error(`Unknown category or preset: ${id} in default ${name}`); - console.log(''); - process.exit(1); - } - }); - }); -} - -function translationsToYAML(translations) { - // comment keys end with '#' and should sort immediately before their related key. - function commentFirst(a, b) { - return (a === b + '#') ? -1 - : (b === a + '#') ? 1 - : (a > b ? 1 : a < b ? -1 : 0); - } - - return YAML.safeDump({ en: { presets: translations }}, { sortKeys: commentFirst, lineWidth: -1 }) - .replace(/[^\s]+#'?:/g, '#'); -} - - -function writeEnJson(tstrings) { +function writeEnJson() { + const schemaTranslations = require('@openstreetmap/id-tagging-schema/dist/translations/en.json').en; const readCoreYaml = fs.readFileSync('data/core.yaml', 'utf8'); const readImagery = fs.readFileSync('node_modules/editor-layer-index/i18n/en.yaml', 'utf8'); const readCommunity = fs.readFileSync('node_modules/osm-community-index/i18n/en.yaml', 'utf8'); @@ -814,14 +210,18 @@ function writeEnJson(tstrings) { } let enjson = core; - ['presets', 'imagery', 'community', 'languageNames', 'scriptNames'].forEach(function(prop) { + let props = Object.keys(schemaTranslations).concat(['imagery', 'community', 'languageNames', 'scriptNames']); + props.forEach(function(prop) { if (enjson.en[prop]) { console.error(`Error: Reserved property '${prop}' already exists in core strings`); process.exit(1); } }); - enjson.en.presets = tstrings; + for (var key in schemaTranslations) { + enjson.en[key] = schemaTranslations[key]; + } + enjson.en.imagery = imagery.en.imagery; enjson.en.community = community.en; enjson.en.languageNames = languageNames.languageNamesInLanguageOf('en'); @@ -833,7 +233,7 @@ function writeEnJson(tstrings) { function writeFaIcons(faIcons) { - for (const key in faIcons) { + Array.from(faIcons).forEach(function(key) { const prefix = key.substring(0, 3); // `fas`, `far`, `fab` const name = key.substring(4); const def = fontawesome.findIconDefinition({ prefix: prefix, iconName: name }); @@ -843,9 +243,10 @@ function writeFaIcons(faIcons) { console.error(`Error: No FontAwesome icon for ${key}`); throw (error); } - } + }); } + function minifyJSON(inPath, outPath) { return new Promise((resolve, reject) => { fs.readFile(inPath, 'utf8', (err, data) => {