overturetoosm.resources
A mapping of Overture tags to OSM tags.
1"""A mapping of Overture tags to OSM tags.""" 2 3from typing import Dict 4 5 6places_tags: Dict[str, Dict[str, str]] = { 7 "eat_and_drink": {"amenity": "restaurant"}, 8 "restaurant": {"amenity": "restaurant"}, 9 "afghan_restaurant": {"amenity": "restaurant", "cuisine": "afghan"}, 10 "african_restaurant": {"amenity": "restaurant", "cuisine": "african"}, 11 "ethiopian_restaurant": {"amenity": "restaurant", "cuisine": "ethiopian"}, 12 "senegalese_restaurant": {"amenity": "restaurant", "cuisine": "senegalese"}, 13 "south_african_restaurant": {"amenity": "restaurant", "cuisine": "south_african"}, 14 "moroccan_restaurant": {"amenity": "restaurant", "cuisine": "moroccan"}, 15 "nigerian_restaurant": {"amenity": "restaurant", "cuisine": "nigerian"}, 16 "american_restaurant": {"amenity": "restaurant", "cuisine": "american"}, 17 "arabian_restaurant": {"amenity": "restaurant", "cuisine": "arab"}, 18 "belgian_restaurant": {"amenity": "restaurant", "cuisine": "belgian"}, 19 "latin_american_restaurant": {"amenity": "restaurant", "cuisine": "latin_american"}, 20 "argentine_restaurant": {"amenity": "restaurant", "cuisine": "argentinian"}, 21 "belizean_restaurant": {"amenity": "restaurant", "cuisine": "belizean"}, 22 "bolivian_restaurant": {"amenity": "restaurant", "cuisine": "bolivian"}, 23 "brazilian_restaurant": {"amenity": "restaurant", "cuisine": "brazilian"}, 24 "chilean_restaurant": {"amenity": "restaurant", "cuisine": "chilean"}, 25 "colombian_restaurant": {"amenity": "restaurant", "cuisine": "colombian"}, 26 "costa_rican_restaurant": {"amenity": "restaurant", "cuisine": "costa_rican"}, 27 "cuban_restaurant": {"amenity": "restaurant", "cuisine": "cuban"}, 28 "ecuadorian_restaurant": {"amenity": "restaurant", "cuisine": "ecuadorian"}, 29 "guatemalan_restaurant": {"amenity": "restaurant", "cuisine": "guatemalan"}, 30 "honduran_restaurant": {"amenity": "restaurant", "cuisine": "honduran"}, 31 "mexican_restaurant": {"amenity": "restaurant", "cuisine": "mexican"}, 32 "nicaraguan_restaurant": {"amenity": "restaurant", "cuisine": "nicaraguan"}, 33 "panamanian_restaurant": {"amenity": "restaurant", "cuisine": "panamanian"}, 34 "paraguayan_restaurant": {"amenity": "restaurant", "cuisine": "paraguayan"}, 35 "peruvian_restaurant": {"amenity": "restaurant", "cuisine": "peruvian"}, 36 "puerto_rican_restaurant": {"amenity": "restaurant"}, 37 "salvadoran_restaurant": {"amenity": "restaurant"}, 38 "texmex_restaurant": {"amenity": "restaurant", "cuisine": "tex-mex"}, 39 "uruguayan_restaurant": {"amenity": "restaurant"}, 40 "venezuelan_restaurant": {"amenity": "restaurant", "cuisine": "venezuelan"}, 41 "middle_eastern_restaurant": {"amenity": "restaurant", "cuisine": "middle_eastern"}, 42 "armenian_restaurant": {"amenity": "restaurant", "cuisine": "armenian"}, 43 "azerbaijani_restaurant": {"amenity": "restaurant"}, 44 "egyptian_restaurant": {"amenity": "restaurant", "cuisine": "egyptian"}, 45 "georgian_restaurant": {"amenity": "restaurant", "cuisine": "georgian"}, 46 "israeli_restaurant": {"amenity": "restaurant", "cuisine": "israeli"}, 47 "kofta_restaurant": {"amenity": "restaurant"}, 48 "kurdish_restaurant": {"amenity": "restaurant"}, 49 "lebanese_restaurant": {"amenity": "restaurant", "cuisine": "lebanese"}, 50 "persian_iranian_restaurant": {"amenity": "restaurant", "cuisine": "persian"}, 51 "syrian_restaurant": {"amenity": "restaurant", "cuisine": "syrian"}, 52 "turkish_restaurant": {"amenity": "restaurant", "cuisine": "turkish"}, 53 "asian_restaurant": {"amenity": "restaurant", "cuisine": "asian"}, 54 "asian_fusion_restaurant": {"amenity": "restaurant", "cuisine": "fusion"}, 55 "pan_asian_restaurant": {"amenity": "restaurant"}, 56 "burmese_restaurant": {"amenity": "restaurant"}, 57 "cambodian_restaurant": {"amenity": "restaurant", "cuisine": "cambodian"}, 58 "chinese_restaurant": {"amenity": "restaurant", "cuisine": "chinese"}, 59 "dim_sum_restaurant": {"amenity": "restaurant"}, 60 "filipino_restaurant": {"amenity": "restaurant", "cuisine": "filipino"}, 61 "indo_chinese_restaurant": {"amenity": "restaurant"}, 62 "indonesian_restaurant": {"amenity": "restaurant", "cuisine": "indonesian"}, 63 "japanese_restaurant": {"amenity": "restaurant", "cuisine": "japanese"}, 64 "korean_restaurant": {"amenity": "restaurant", "cuisine": "korean"}, 65 "sushi_restaurant": {"amenity": "restaurant", "cuisine": "sushi"}, 66 "laotian_restaurant": {"amenity": "restaurant"}, 67 "malaysian_restaurant": {"amenity": "restaurant", "cuisine": "malaysian"}, 68 "mongolian_restaurant": {"amenity": "restaurant", "cuisine": "mongolian"}, 69 "noodles_restaurant": {"amenity": "restaurant", "cuisine": "noodle"}, 70 "singaporean_restaurant": {"amenity": "restaurant", "cuisine": "singaporean"}, 71 "taiwanese_restaurant": {"amenity": "restaurant", "cuisine": "taiwanese"}, 72 "thai_restaurant": {"amenity": "restaurant", "cuisine": "thai"}, 73 "vietnamese_restaurant": {"amenity": "restaurant", "cuisine": "vietnamese"}, 74 "australian_restaurant": {"amenity": "restaurant", "cuisine": "australian"}, 75 "austrian_restaurant": {"amenity": "restaurant", "cuisine": "austrian"}, 76 "bangladeshi_restaurant": {"amenity": "restaurant", "cuisine": "bangladeshi"}, 77 "indian_restaurant": {"amenity": "restaurant", "cuisine": "indian"}, 78 "basque_restaurant": {"amenity": "restaurant", "cuisine": "basque"}, 79 "british_restaurant": {"amenity": "restaurant", "cuisine": "british"}, 80 "eastern_european_restaurant": {"amenity": "restaurant"}, 81 "belarusian_restaurant": {"amenity": "restaurant"}, 82 "bulgarian_restaurant": {"amenity": "restaurant", "cuisine": "bulgarian"}, 83 "romanian_restaurant": {"amenity": "restaurant", "cuisine": "romanian"}, 84 "tatar_restaurant": {"amenity": "restaurant"}, 85 "ukrainian_restaurant": {"amenity": "restaurant", "cuisine": "ukrainian"}, 86 "french_restaurant": {"amenity": "restaurant", "cuisine": "french"}, 87 "cajun_creole_restaurant": {"amenity": "restaurant", "cuisine": "cajun"}, 88 "canadian_restaurant": {"amenity": "restaurant"}, 89 "caribbean_restaurant": {"amenity": "restaurant", "cuisine": "caribbean"}, 90 "dominican_restaurant": {"amenity": "restaurant"}, 91 "haitian_restaurant": {"amenity": "restaurant"}, 92 "jamaican_restaurant": {"amenity": "restaurant", "cuisine": "jamaican"}, 93 "trinidadian_restaurant": {"amenity": "restaurant"}, 94 "german_restaurant": {"amenity": "restaurant", "cuisine": "german"}, 95 "catalan_restaurant": {"amenity": "restaurant"}, 96 "italian_restaurant": {"amenity": "restaurant", "cuisine": "italian"}, 97 "czech_restaurant": {"amenity": "restaurant", "cuisine": "czech"}, 98 "mediterranean_restaurant": {"amenity": "restaurant", "cuisine": "mediterranean"}, 99 "greek_restaurant": {"amenity": "restaurant", "cuisine": "greek"}, 100 "guamanian_restaurant": {"amenity": "restaurant"}, 101 "hawaiian_restaurant": {"amenity": "restaurant", "cuisine": "hawaiian"}, 102 "himalayan_nepalese_restaurant": {"amenity": "restaurant"}, 103 "hungarian_restaurant": {"amenity": "restaurant", "cuisine": "hungarian"}, 104 "iberian_restaurant": {"amenity": "restaurant"}, 105 "irish_restaurant": {"amenity": "restaurant", "cuisine": "irish"}, 106 "jewish_restaurant": {"amenity": "restaurant"}, 107 "international_restaurant": {"amenity": "restaurant"}, 108 "european_restaurant": {"amenity": "restaurant"}, 109 "oriental_restaurant": {"amenity": "restaurant"}, 110 "pakistani_restaurant": {"amenity": "restaurant", "cuisine": "pakistani"}, 111 "polish_restaurant": {"amenity": "restaurant", "cuisine": "polish"}, 112 "polynesian_restaurant": {"amenity": "restaurant"}, 113 "portuguese_restaurant": {"amenity": "restaurant", "cuisine": "portuguese"}, 114 "russian_restaurant": {"amenity": "restaurant", "cuisine": "russian"}, 115 "scandinavian_restaurant": {"amenity": "restaurant"}, 116 "danish_restaurant": {"amenity": "restaurant"}, 117 "norwegian_restaurant": {"amenity": "restaurant"}, 118 "scottish_restaurant": {"amenity": "restaurant"}, 119 "seafood_restaurant": {"amenity": "restaurant", "cuisine": "seafood"}, 120 "serbo_croation_restaurant": {"amenity": "restaurant"}, 121 "slovakian_restaurant": {"amenity": "restaurant"}, 122 "southern_restaurant": {"amenity": "restaurant"}, 123 "spanish_restaurant": {"amenity": "restaurant", "cuisine": "spanish"}, 124 "sri_lankan_restaurant": {"amenity": "restaurant"}, 125 "swiss_restaurant": {"amenity": "restaurant"}, 126 "uzbek_restaurant": {"amenity": "restaurant"}, 127 "molecular_gastronomy_restaurant": {"amenity": "restaurant"}, 128 "haute_cuisine_restaurant": {"amenity": "restaurant"}, 129 "brasserie": {"amenity": "restaurant"}, 130 "buffet_restaurant": {"amenity": "restaurant"}, 131 "barbecue_restaurant": {"amenity": "restaurant"}, 132 "burger_restaurant": {"amenity": "restaurant", "cuisine": "burger"}, 133 "cheesesteak_restaurant": {"amenity": "restaurant"}, 134 "chicken_restaurant": {"amenity": "restaurant"}, 135 "chicken_wings_restaurant": {"amenity": "restaurant"}, 136 "dog_meat_restaurant": {"amenity": "restaurant"}, 137 "dumpling_restaurant": {"amenity": "restaurant"}, 138 "fast_food_restaurant": {"amenity": "fast_food"}, 139 "fishchbroetchen_restaurant": {"amenity": "restaurant"}, 140 "fish_restaurant": {"amenity": "restaurant"}, 141 "fish_and_chips_restaurant": {"amenity": "restaurant"}, 142 "fondue_restaurant": {"amenity": "restaurant"}, 143 "gluten_free_restaurant": {"amenity": "restaurant"}, 144 "baozi_restaurant": {"amenity": "restaurant"}, 145 "halal_restaurant": {"amenity": "restaurant"}, 146 "bistro": {"amenity": "restaurant"}, 147 "health_food_restaurant": {"amenity": "restaurant"}, 148 "kosher_restaurant": {"amenity": "restaurant"}, 149 "comfort_food_restaurant": {"amenity": "restaurant"}, 150 "meat_restaurant": {"amenity": "restaurant"}, 151 "curry_sausage_restaurant": {"amenity": "restaurant"}, 152 "diner": {"amenity": "restaurant"}, 153 "nasi_restaurant": {"amenity": "restaurant"}, 154 "flatbread_restaurant": {"amenity": "restaurant"}, 155 "food_court": {"amenity": "food_court"}, 156 "gastropub": {"amenity": "restaurant"}, 157 "pizza_restaurant": {"amenity": "restaurant", "cuisine": "pizza"}, 158 "pop_up_restaurant": {"amenity": "restaurant"}, 159 "poutinerie_restaurant": {"amenity": "restaurant"}, 160 "vegan_restaurant": {"amenity": "restaurant", "diet:vegan": "yes"}, 161 "vegetarian_restaurant": {"amenity": "restaurant", "diet:vegetarian": "yes"}, 162 "wok_restaurant": {"amenity": "restaurant"}, 163 "wrap_restaurant": {"amenity": "restaurant"}, 164 "piadina_restaurant": {"amenity": "restaurant"}, 165 "pigs_trotters_restaurant": {"amenity": "restaurant"}, 166 "potato_restaurant": {"amenity": "restaurant"}, 167 "rotisserie_chicken_restaurant": {"amenity": "restaurant", "cuisine": "chicken"}, 168 "schnitzel_restaurant": {"amenity": "restaurant"}, 169 "steakhouse": {"amenity": "restaurant", "cuisine": "steak_house"}, 170 "tapas_bar": {"amenity": "restaurant"}, 171 "venison_restaurant": {"amenity": "restaurant"}, 172 "wild_game_meats_restaurant": {"amenity": "restaurant"}, 173 "falafel_restaurant": {"amenity": "restaurant"}, 174 "taco_restaurant": {"amenity": "restaurant", "cuisine": "mexican"}, 175 "hot_dog_restaurant": {"amenity": "restaurant", "cuisine": "american"}, 176 "soup_restaurant": {"amenity": "restaurant"}, 177 "theme_restaurant": {"amenity": "restaurant"}, 178 "bar_and_grill_restaurant": {"amenity": "restaurant"}, 179 "meatball_restaurant": {"amenity": "restaurant"}, 180 "waffle_restaurant": {"amenity": "restaurant", "cuisine": "breakfast"}, 181 "breakfast_and_brunch_restaurant": { 182 "amenity": "restaurant", 183 "cuisine": "breakfast", 184 }, 185 "pancake_house": {"amenity": "restaurant", "cuisine": "breakfast"}, 186 "bagel_restaurant": {"amenity": "restaurant"}, 187 "bar": {"amenity": "bar"}, 188 "beach_bar": {"amenity": "bar"}, 189 "beer_bar": {"amenity": "bar"}, 190 "beer_garden": {"amenity": "biergarten"}, 191 "brewery": {"craft": "brewery"}, 192 "bubble_tea": {"amenity": "cafe", "cuisine": "bubble_tea"}, 193 "cocktail_bar": {"amenity": "bar"}, 194 "dive_bar": {"amenity": "bar"}, 195 "drive_thru_bar": {"amenity": "bar", "drive_through": "yes"}, 196 "gay_bar": {"amenity": "bar", "lgbtq": "primary"}, 197 "hookah_bar": {"amenity": "bar"}, 198 "hotel_bar": {"amenity": "bar"}, 199 "irish_pub": {"amenity": "bar", "cuisine": "irish"}, 200 "milk_bar": {"amenity": "fast_food"}, 201 "pub": {"amenity": "pub"}, 202 "sake_bar": {"amenity": "bar"}, 203 "speakeasy": {"amenity": "bar"}, 204 "sports_bar": {"amenity": "bar"}, 205 "tiki_bar": {"amenity": "bar"}, 206 "vermouth_bar": {"amenity": "bar"}, 207 "whiskey_bar": {"amenity": "bar"}, 208 "wine_bar": {"amenity": "bar"}, 209 "piano_bar": {"amenity": "bar", "live_music": "yes"}, 210 "cafe": {"amenity": "cafe"}, 211 "coffee_roastery": {"shop": "coffee"}, 212 "tea_room": {"amenity": "cafe"}, 213 "coffee_shop": {"amenity": "cafe", "cuisine": "coffee_shop"}, 214 "accommodation": {"tourism": "yes"}, 215 "bed_and_breakfast": {"tourism": "guest_house", "guest_house": "bed_and_breakfast"}, 216 "cabin": {"tourism": "chalet"}, 217 "campground": {"tourism": "camp_site"}, 218 "cottage": {"tourism": "chalet"}, 219 "guest_house": {"tourism": "guest_house"}, 220 "hostel": {"tourism": "hostel"}, 221 "hotel": {"tourism": "hotel"}, 222 "motel": {"tourism": "motel"}, 223 "resort": {"leisure": "resort"}, 224 "beach_resort": {"leisure": "beach_resort"}, 225 "rv_park": {"tourism": "caravan_site"}, 226 "service_apartments": {"tourism": "apartment"}, 227 "automotive_dealer": {"shop": "car"}, 228 "car_dealer": {"shop": "car"}, 229 "motorcycle_dealer": {"shop": "motorcycle"}, 230 "used_car_dealer": {"shop": "car", "second_hand": "only"}, 231 "automotive_services_and_repair": {"amenity": "car_repair"}, 232 "auto_body_shop": {"shop": "car_repair", "car_repair": "bodywork"}, 233 "auto_customization": {"shop": "car_repair", "car_repair": "customization"}, 234 "auto_detailing": {"shop": "car_repair", "car_repair": "detailing"}, 235 "auto_electrical_repair": {"shop": "car_repair", "car_repair": "electrical"}, 236 "auto_glass_service": {"shop": "car_repair", "car_repair": "glass"}, 237 "car_window_tinting": {"shop": "car_repair", "car_repair": "tinting"}, 238 "auto_restoration_services": {"shop": "car_repair", "car_repair": "restoration"}, 239 "auto_security": {"shop": "car_repair", "car_repair": "security"}, 240 "automotive_consultant": {"office": "consulting", "consulting": "automotive"}, 241 "automotive_storage_facility": {"amenity": "parking"}, 242 "car_wash": {"amenity": "car_wash"}, 243 "motorcycle_repair": {"shop": "motorcycle_repair"}, 244 "tire_dealer_and_repair": {"shop": "tyres"}, 245 "automotive_parts_and_accessories": {"shop": "car_parts"}, 246 "gas_station": {"amenity": "fuel"}, 247 "truck_gas_station": {"amenity": "fuel", "hgv": "yes"}, 248 "ev_charging_station": {"amenity": "charging_station"}, 249 "automotive_repair": {"shop": "car_repair"}, 250 "auto_company": {"shop": "car"}, 251 "betting_center": {"shop": "bookmaker"}, 252 "bookmakers": {"shop": "bookmaker"}, 253 "carousel": {"attraction": "carousel"}, 254 "casino": {"amenity": "casino"}, 255 "circus": {"amenity": "theatre", "theatre:genre": "circus"}, 256 "comedy_club": {"amenity": "theatre", "theatre:genre": "comedy"}, 257 "topic_concert_venue": {"amenity": "music_venue"}, 258 "dance_club": {"amenity": "nightclub"}, 259 "escape_rooms": {"leisure": "escape_game"}, 260 "internet_cafe": {"amenity": "internet_cafe"}, 261 "paintball": {"leisure": "pitch", "sport": "paintball"}, 262 "planetarium": {"amenity": "planetarium"}, 263 "stadium_arena": {"leisure": "stadium"}, 264 "baseball_stadium": {"leisure": "pitch", "sport": "baseball"}, 265 "basketball_stadium": {"leisure": "pitch", "sport": "basketball"}, 266 "cricket_ground": {"leisure": "pitch", "sport": "cricket"}, 267 "football_stadium": {"leisure": "pitch", "sport": "american_football"}, 268 "hockey_arena": {"leisure": "stadium", "sport": "hockey"}, 269 "rugby_stadium": {"leisure": "stadium", "sport": "rugby"}, 270 "soccer_stadium": {"leisure": "pitch", "sport": "soccer"}, 271 "tennis_stadium": {"leisure": "pitch", "sport": "tennis"}, 272 "track_stadium": {"leisure": "stadium", "sport": "track"}, 273 "theatre": {"amenity": "theatre"}, 274 "water_park": {"leisure": "water_park"}, 275 "cinema": {"amenity": "cinema"}, 276 "drive_in_theatre": {"amenity": "cinema", "drive_in": "yes"}, 277 "outdoor_movies": {"amenity": "cinema", "outdoor": "yes"}, 278 "farm": {"shop": "farm"}, 279 "attraction_farm": {"shop": "farm"}, 280 "psychic": {"shop": "psychic"}, 281 "amusement_park": {"tourism": "theme_park"}, 282 "aquarium": {"tourism": "aquarium"}, 283 "art_gallery": {"tourism": "gallery"}, 284 "beach": {"natural": "beach"}, 285 "botanical_garden": {"leisure": "garden", "garden:type": "botanical"}, 286 "canyon": {"natural": "valley"}, 287 "castle": {"historic": "castle"}, 288 "cave": {"natural": "cave_entrance"}, 289 "fort": {"historic": "fort"}, 290 "fountain": {"amenity": "fountain"}, 291 "lake": {"natural": "water", "water": "lake"}, 292 "landmark_and_historical_building": {"building": "yes"}, 293 "lighthouse": {"man_made": "lighthouse"}, 294 "lookout": {"tourism": "viewpoint"}, 295 "marina": {"leisure": "marina"}, 296 "monument": {"historic": "monument"}, 297 "observatory": {"man_made": "observatory"}, 298 "palace": {"historic": "castle", "castle_type": "palace"}, 299 "plaza": {"place": "square"}, 300 "ruin": {"historic": "ruins"}, 301 "sculpture_statue": {"historic": "memorial", "memorial": "statue"}, 302 "trail": {"highway": "path"}, 303 "hiking_trail": {"highway": "path", "sac_scale": "hiking"}, 304 "mountain_bike_trails": {"highway": "path", "bicycle": "yes"}, 305 "waterfall": {"waterway": "waterfall"}, 306 "zoo": {"tourism": "zoo"}, 307 "petting_zoo": {"tourism": "zoo", "zoo": "petting_zoo"}, 308 "museum": {"tourism": "museum"}, 309 "art_museum": {"tourism": "gallery"}, 310 "asian_art_museum": {"tourism": "gallery"}, 311 "contemporary_art_museum": {"tourism": "gallery"}, 312 "children's_museum": {"tourism": "museum"}, 313 "costume_museum": {"tourism": "museum"}, 314 "decorative_arts_museum": {"tourism": "gallery"}, 315 "design_museum": {"tourism": "museum"}, 316 "modern_art_museum": {"tourism": "gallery"}, 317 "photography_museum": {"tourism": "gallery"}, 318 "history_museum": {"tourism": "museum"}, 319 "community_museum": {"tourism": "museum"}, 320 "military_museum": {"tourism": "museum"}, 321 "national_museum": {"tourism": "museum"}, 322 "science_museum": {"tourism": "museum"}, 323 "state_museum": {"tourism": "museum"}, 324 "aviation_museum": {"tourism": "museum"}, 325 "sports_museum": {"tourism": "museum"}, 326 "park": {"leisure": "park"}, 327 "dog_park": {"leisure": "dog_park"}, 328 "memorial_park": {"leisure": "park"}, 329 "national_park": {"boundary": "protected_area"}, 330 "state_park": {"boundary": "protected_area"}, 331 "american_football_field": {"leisure": "pitch", "sport": "american_football"}, 332 "archery_range": {"leisure": "pitch", "sport": "archery"}, 333 "badminton_court": {"leisure": "pitch", "sport": "badminton"}, 334 "baseball_field": {"leisure": "pitch", "sport": "baseball"}, 335 "basketball_court": {"leisure": "pitch", "sport": "basketball"}, 336 "beach_volleyball_court": {"leisure": "pitch", "sport": "beachvolleyball"}, 337 "bocce_ball_court": {"leisure": "pitch", "sport": "boules"}, 338 "bowling_alley": {"leisure": "bowling_alley"}, 339 "bubble_soccer_field": {"leisure": "pitch", "sport": "soccer"}, 340 "disc_golf_course": {"leisure": "disc_golf_course"}, 341 "futsal_field": {"leisure": "pitch", "sport": "futsal"}, 342 "golf_course": {"leisure": "golf_course"}, 343 "driving_range": {"golf": "driving_range"}, 344 "gym": {"leisure": "fitness_centre"}, 345 "handball_court": {"leisure": "pitch", "sport": "handball"}, 346 "hockey_field": {"leisure": "pitch", "sport": "field_hockey"}, 347 "horse_riding": {"leisure": "horse_riding"}, 348 "miniature_golf_course": {"leisure": "miniature_golf"}, 349 "playground": {"leisure": "playground"}, 350 "racquetball_court": {"leisure": "pitch", "sport": "racquetball"}, 351 "rock_climbing_gym": { 352 "leisure": "fitness_centre", 353 "sport": "rock_climbing", 354 "indoor": "yes", 355 }, 356 "rugby_pitch": {"leisure": "pitch", "sport": "rugby"}, 357 "soccer_field": {"leisure": "pitch", "sport": "soccer"}, 358 "squash_court": {"leisure": "pitch", "sport": "squash"}, 359 "swimming_pool": {"leisure": "swimming_pool"}, 360 "tennis_court": {"leisure": "pitch", "sport": "tennis"}, 361 "trampoline_park": {"leisure": "trampoline_park"}, 362 "volleyball_court": {"leisure": "pitch", "sport": "volleyball"}, 363 "dance_school": {"leisure": "dance", "dance:teaching": "yes"}, 364 "ski_and_snowboard_school": {"amenity": "school"}, 365 "surfing_school": {"amenity": "school"}, 366 "yoga_studio": {"leisure": "fitness_centre", "sport": "yoga"}, 367 "fencing_club": {"leisure": "sports_centre", "sport": "fencing"}, 368 "gymnastics_club": {"leisure": "sports_centre", "sport": "gymnastics"}, 369 "soccer_club": {"leisure": "sports_centre", "sport": "soccer"}, 370 "table_tennis_club": {"leisure": "sports_centre", "sport": "table_tennis"}, 371 "volleyball_club": {"leisure": "sports_centre", "sport": "volleyball"}, 372 "golf_club": {"leisure": "golf_course"}, 373 "indoor_golf_center": { 374 "leisure": "golf_course", 375 "golf:course": "driving_range", 376 "indoor": "yes", 377 }, 378 "martial_arts_club": {"sport": "martial_arts"}, 379 "karate_club": {"leisure": "sports_centre", "sport": "karate"}, 380 "taekwondo_club": {"leisure": "sports_centre", "sport": "taekwondo"}, 381 "bike_rentals": {"amenity": "bicycle_rental"}, 382 "beauty_and_spa": {"amenity": "spa"}, 383 "beauty_salon": {"shop": "beauty"}, 384 "barber": {"shop": "hairdresser"}, 385 "health_spa": {"amenity": "spa"}, 386 "massage": {"shop": "massage"}, 387 "tattoo_and_piercing": {"shop": "tattoo", "piercing": "yes"}, 388 "piercing": {"shop": "tattoo", "piercing": "yes"}, 389 "tattoo": {"shop": "tattoo"}, 390 "spas": {"amenity": "spa"}, 391 "medical_spa": {"amenity": "spa"}, 392 "day_spa": {"amenity": "spa"}, 393 "college_university": {"amenity": "university", "isced:level": "5"}, 394 "school": {"amenity": "school"}, 395 "charter_school": {"amenity": "school"}, 396 "elementary_school": {"amenity": "school", "isced:level": "1"}, 397 "high_school": {"amenity": "school", "isced:level": "3"}, 398 "middle_school": {"amenity": "school", "isced:level": "2"}, 399 "montessori_school": {"amenity": "school"}, 400 "preschool": {"amenity": "school", "isced:level": "0"}, 401 "private_school": {"amenity": "school"}, 402 "public_school": {"amenity": "school"}, 403 "religious_school": {"amenity": "school"}, 404 "waldorf_school": {"amenity": "school"}, 405 "specialty_school": {"amenity": "school"}, 406 "art_school": {"amenity": "school", "school": "art"}, 407 "bartending_school": {"amenity": "school", "school": "bartending"}, 408 "circus_school": {"amenity": "school", "school": "circus"}, 409 "cooking_school": {"amenity": "school", "school": "cooking"}, 410 "cosmetology_school": {"amenity": "school", "school": "cosmetology"}, 411 "drama_school": {"amenity": "school", "school": "drama"}, 412 "driving_school": {"amenity": "driving_school"}, 413 "dui_school": {"amenity": "school"}, 414 "flight_school": {"amenity": "school"}, 415 "language_school": {"amenity": "language_school"}, 416 "massage_school": {"amenity": "school"}, 417 "medical_school": {"amenity": "school"}, 418 "music_school": {"amenity": "music_school"}, 419 "nursing_school": {"amenity": "school"}, 420 "sports_school": {"amenity": "school"}, 421 "traffic_school": {"amenity": "school"}, 422 "vocational_and_technical_school": {"amenity": "school"}, 423 "financial_service": {"office": "financial"}, 424 "accountant": {"office": "accountant"}, 425 "atms": {"amenity": "atm"}, 426 "bank_credit_union": {"amenity": "bank"}, 427 "banks": {"amenity": "bank"}, 428 "credit_union": {"amenity": "bank"}, 429 "business_brokers": {"office": "financial_advisor"}, 430 "insurance_agency": {"office": "insurance"}, 431 "auto_insurance": {"office": "insurance", "insurance": "car"}, 432 "farm_insurance": {"office": "insurance", "insurance": "farm"}, 433 "home_and_rental_insurance": {"office": "insurance", "insurance": "home"}, 434 "life_insurance": {"office": "insurance", "insurance": "life"}, 435 "investing": {"office": "financial_advisor"}, 436 "tax_services": {"office": "tax_advisor"}, 437 "trusts": {"office": "accountant"}, 438 "private_establishments_and_corporates": {"office": "company"}, 439 "retail": {"shop": "yes"}, 440 "bagel_shop": {"amenity": "cafe", "cuisine": "bagel"}, 441 "bakery": {"shop": "bakery"}, 442 "flatbread": {"shop": "bakery"}, 443 "beer_wine_and_spirits": {"shop": "alcohol"}, 444 "patisserie_cake_shop": {"shop": "pastry"}, 445 "cupcake_shop": {"shop": "pastry"}, 446 "custom_cakes_shop": {"shop": "pastry"}, 447 "coffee_and_tea_supplies": {"shop": "coffee"}, 448 "health_food_store": {"shop": "herbalist"}, 449 "ice_cream_and_frozen_yoghurt": {"amenity": "ice_cream"}, 450 "gelato": {"amenity": "ice_cream"}, 451 "ice_cream_shop": {"amenity": "ice_cream"}, 452 "frozen_yoghurt_shop": {"amenity": "ice_cream"}, 453 "liquor_store": {"shop": "alcohol"}, 454 "mulled_wine": {"shop": "wine"}, 455 "sandwich_shop": {"amenity": "fast_food", "cuisine": "sandwich"}, 456 "delicatessen": {"shop": "deli"}, 457 "winery": {"craft": "winery"}, 458 "wine_tasting_room": {"craft": "winery"}, 459 "auto_parts_and_supply_store": {"shop": "car_parts"}, 460 "beverage_store": {"shop": "alcohol"}, 461 "butcher_shop": {"shop": "butcher"}, 462 "candy_store": {"shop": "confectionery"}, 463 "japanese_confectionery_shop": {"shop": "confectionery"}, 464 "carpet_store": {"shop": "carpet"}, 465 "cheese_shop": {"shop": "cheese"}, 466 "chocolatier": {"shop": "chocolate"}, 467 "distillery": {"craft": "distillery"}, 468 "flooring_store": {"shop": "flooring"}, 469 "meat_shop": {"shop": "butcher"}, 470 "pharmacy": {"amenity": "pharmacy"}, 471 "water_store": {"shop": "water"}, 472 "shopping": {"shop": "yes"}, 473 "arts_and_crafts": {"shop": "craft"}, 474 "art_supply_store": {"shop": "craft"}, 475 "costume_store": {"shop": "costume"}, 476 "craft_shop": {"shop": "craft"}, 477 "embroidery_and_crochet": {"shop": "sewing"}, 478 "fabric_store": {"shop": "fabric"}, 479 "framing_store": {"shop": "frame"}, 480 "handicraft_shop": {"shop": "craft"}, 481 "bookstore": {"shop": "books"}, 482 "fashion": {"shop": "clothes", "clothes": "fashion"}, 483 "clothing_store": {"shop": "clothes"}, 484 "children's_clothing_store": {"shop": "clothes", "clothes": "children"}, 485 "denim_wear_store": {"shop": "clothes", "clothes": "denim"}, 486 "men's_clothing_store": {"shop": "clothes", "clothes": "men"}, 487 "women's_clothing_store": {"shop": "clothes", "clothes": "women"}, 488 "fashion_accessories_store": {"shop": "fashion_accessories"}, 489 "hat_shop": {"shop": "clothes", "clothes": "hats"}, 490 "shoe_store": {"shop": "shoes"}, 491 "orthopedic_shoe_store": {"shop": "shoes", "shoes": "orthopaedic"}, 492 "eyewear_and_optician": {"shop": "optician"}, 493 "flowers_and_gifts_shop": {"shop": "flowers"}, 494 "florist": {"shop": "florist"}, 495 "gift_shop": {"shop": "gift"}, 496 "grocery_store": {"shop": "convenience"}, 497 "specialty_grocery_store": {"shop": "supermarket"}, 498 "asian_grocery_store": {"shop": "supermarket", "cuisine": "asian"}, 499 "indian_grocery_store": {"shop": "supermarket", "cuisine": "indian"}, 500 "japanese_grocery_store": {"shop": "supermarket", "cuisine": "japanese"}, 501 "korean_grocery_store": {"shop": "supermarket", "cuisine": "korean"}, 502 "kosher_grocery_store": {"shop": "supermarket", "cuisine": "kosher"}, 503 "mexican_grocery_store": {"shop": "supermarket", "cuisine": "mexican"}, 504 "organic_grocery_store": {"shop": "supermarket", "organic": "yes"}, 505 "russian_grocery_store": {"shop": "supermarket", "cuisine": "russian"}, 506 "home_and_garden": {"shop": "hardware"}, 507 "hardware_store": {"shop": "hardware"}, 508 "appliance_store": {"shop": "appliance"}, 509 "candle_store": {"shop": "candles"}, 510 "furniture_accessory_store": {"shop": "furniture"}, 511 "furniture_store": {"shop": "furniture"}, 512 "home_improvement_store": {"shop": "doityourself"}, 513 "mattress_store": {"shop": "bed"}, 514 "paint_store": {"shop": "paint"}, 515 "medical_supply": {"shop": "medical_supply"}, 516 "hearing_aids": {"shop": "hearing_aids"}, 517 "pet_store": {"shop": "pet"}, 518 "computer_store": {"shop": "computer"}, 519 "convenience_store": {"shop": "convenience"}, 520 "department_store": {"shop": "department_store"}, 521 "discount_store": {"shop": "discount"}, 522 "do_it_yourself_store": {"shop": "doityourself"}, 523 "electronics": {"shop": "electronics"}, 524 "jewelry_store": {"shop": "jewelry"}, 525 "mobile_phone_store": {"shop": "mobile_phone"}, 526 "shopping_center": {"shop": "mall"}, 527 "supermarket": {"shop": "supermarket"}, 528 "superstore": {"shop": "supermarket"}, 529 "tobacco_shop": {"shop": "tobacco"}, 530 "toy_store": {"shop": "toys"}, 531 "used_bookstore": {"shop": "books", "second_hand": "only"}, 532 "e_cigarette_store": {"shop": "tobacco"}, 533 "watch_store": {"shop": "watches"}, 534 "wholesale_store": {"shop": "wholesale"}, 535 "bicycle_shop": {"shop": "bicycle"}, 536 "swimwear_store": {"shop": "clothes", "clothes": "swimwear"}, 537 "health_and_medical": {"healthcare": "yes"}, 538 "counseling_and_mental_health": {"healthcare": "psychotherapist"}, 539 "family_counselor": { 540 "healthcare": "counselling", 541 "healthcare:counselling": "family", 542 }, 543 "psychotherapist": {"healthcare": "psychotherapist"}, 544 "dentist": {"amenity": "dentist"}, 545 "doctor": {"amenity": "doctor"}, 546 "audiologist": {"healthcare": "audiologist"}, 547 "dermatologist": {"healthcare:speciality": "dermatology"}, 548 "fertility": { 549 "amenity": "clinic", 550 "healthcare": "clinic", 551 "healthcare:speciality": "fertility", 552 }, 553 "gastroenterologist": {"healthcare:speciality": "gastroenterology"}, 554 "geneticist": {"healthcare:speciality": "genetics"}, 555 "gerontologist": {"healthcare:speciality": "gerontology"}, 556 "hepatologist": {"healthcare:speciality": "hepatology"}, 557 "neurologist": {"healthcare:speciality": "neurology"}, 558 "obstetrician_and_gynecologist": {"healthcare:speciality": "gynaecology"}, 559 "oncologist": {"healthcare:speciality": "oncology"}, 560 "podiatrist": {"healthcare": "podiatrist"}, 561 "acupuncture": { 562 "healthcare": "alternative", 563 "healthcare:speciality": "acupuncture", 564 }, 565 "ayurveda": {"healthcare": "alternative", "healthcare:speciality": "ayurveda"}, 566 "chiropractor": { 567 "healthcare": "alternative", 568 "healthcare:specialty": "chiropractic", 569 }, 570 "float_spa": {"amenity": "spa"}, 571 "halotherapy": {"healthcare:speciality": "halotherapy"}, 572 "hospice": {"healthcare": "hospice"}, 573 "hospital": {"amenity": "hospital"}, 574 "massage_therapy": {"shop": "massage"}, 575 "midwife": {"healthcare": "midwife"}, 576 "optometrist": {"healthcare": "optometrist"}, 577 "physical_therapy": {"healthcare": "physiotherapist"}, 578 "podiatry": {"amenity": "doctors", "healthcare:speciality": "podiatry"}, 579 "sauna": {"leisure": "sauna"}, 580 "speech_therapist": {"healthcare": "speech_therapist"}, 581 "internal_medicine": {"healthcare": "doctor", "healthcare:speciality": "internal"}, 582 "psychiatrist": {"amenity": "doctors", "healthcare:speciality": "psychiatry"}, 583 "traditional_chinese_medicine": { 584 "healthcare": "alternative", 585 "healthcare:speciality": "traditional_chinese_medicine", 586 }, 587 "pet_groomer": {"shop": "pet_grooming"}, 588 "animal_shelter": {"amenity": "animal_shelter"}, 589 "veterinarian": {"amenity": "veterinary"}, 590 "business_to_business": {"office": "yes"}, 591 "research_institute": {"amenity": "research_institute"}, 592 "coworking_space": {"amenity": "coworking_space"}, 593 "information_technology_company": {"office": "it"}, 594 "telecommunications_company": {"office": "telecommunication"}, 595 "mining": {"industrial": "mine"}, 596 "coal_and_coke": {"industrial": "mine"}, 597 "oil_refiners": {"industrial": "refinery"}, 598 "public_service_and_government": {"office": "yes"}, 599 "non_governmental_association": {"office": "ngo"}, 600 "public_and_government_association": {"office": "yes"}, 601 "charity_organization": {"office": "charity"}, 602 "food_banks": {"amenity": "social_facility", "social_facility": "food_bank"}, 603 "homeless_shelter": { 604 "amenity": "social_facility", 605 "social_facility": "shelter", 606 "social_facility:for": "homeless", 607 }, 608 "community_services_non_profits": {"amenity": "community_centre"}, 609 "jail_and_prison": {"amenity": "prison"}, 610 "juvenile_detention_center": {"amenity": "prison"}, 611 "post_office": {"amenity": "post_office"}, 612 "public_toilet": {"amenity": "toilets", "access": "yes"}, 613 "community_center": {"amenity": "community_centre"}, 614 "courthouse": {"amenity": "courthouse"}, 615 "embassy": {"office": "diplomatic", "diplomatic": "embassy"}, 616 "fire_department": {"amenity": "fire_station"}, 617 "library": {"amenity": "library"}, 618 "police_department": {"amenity": "police"}, 619 "retirement_home": { 620 "amenity": "social_facility", 621 "social_facility": "assisted_living", 622 }, 623 "town_hall": {"amenity": "townhall"}, 624 "religious_organization": {"amenity": "place_of_worship"}, 625 "church_cathedral": {"amenity": "place_of_worship", "religion": "christian"}, 626 "anglican_church": { 627 "amenity": "place_of_worship", 628 "religion": "christian", 629 "denomination": "anglican", 630 }, 631 "baptist_church": { 632 "amenity": "place_of_worship", 633 "religion": "christian", 634 "denomination": "baptist", 635 }, 636 "catholic_church": { 637 "amenity": "place_of_worship", 638 "religion": "christian", 639 "denomination": "catholic", 640 }, 641 "episcopal_church": { 642 "amenity": "place_of_worship", 643 "religion": "christian", 644 "denomination": "episcopal", 645 }, 646 "evangelical_church": { 647 "amenity": "place_of_worship", 648 "religion": "christian", 649 "denomination": "evangelical", 650 }, 651 "pentecostal_church": { 652 "amenity": "place_of_worship", 653 "religion": "christian", 654 "denomination": "pentecostal", 655 }, 656 "buddhist_temple": {"amenity": "place_of_worship", "religion": "buddhist"}, 657 "hindu_temple": {"amenity": "place_of_worship", "religion": "hindu"}, 658 "mosque": {"amenity": "place_of_worship", "religion": "muslim"}, 659 "religious_destination": {"amenity": "place_of_worship"}, 660 "shinto_shrines": {"amenity": "place_of_worship", "religion": "shinto"}, 661 "sikh_temple": {"amenity": "place_of_worship", "religion": "sikh"}, 662 "synagogue": {"amenity": "place_of_worship", "religion": "jewish"}, 663 "temple": {"building": "temple", "amenity": "place_of_worship"}, 664 "real_estate": {"office": "estate_agent"}, 665 "real_estate_investment": {"office": "estate_agent"}, 666 "apartments": {"building": "apartments"}, 667 "condominium": {"building": "apartments"}, 668 "property_management": {"office": "property_management"}, 669 "real_estate_agent": {"office": "estate_agent"}, 670 "rental_services": {"shop": "rental"}, 671 "airport": {"aeroway": "aerodrome"}, 672 "airport_terminal": {"aeroway": "terminal"}, 673 "domestic_airports": {"aeroway": "aerodrome", "aerodrome:type": "regional"}, 674 "heliports": {"aeroway": "heliport"}, 675 "major_airports": {"aeroway": "aerodrome", "aerodrome:type": "international"}, 676 "travel_agents": {"shop": "travel_agency"}, 677 "visitor_center": {"tourism": "information", "information": "visitor_centre"}, 678 "rest_areas": {"highway": "services"}, 679 "toll_stations": {"barrier": "toll_booth"}, 680 "train_station": {"railway": "station", "public_transport": "station"}, 681 "bicycle_sharing_location": {"amenity": "bicycle_rental"}, 682 "bike_parking": {"amenity": "bicycle_parking"}, 683 "bike_sharing": {"amenity": "bicycle_rental"}, 684 "bus_station": {"amenity": "bus_station", "public_transport": "station"}, 685 "car_sharing": {"amenity": "car_sharing"}, 686 "light_rail_and_subway_stations": { 687 "railway": "station", 688 "public_transport": "station", 689 }, 690 "metro_station": {"railway": "station", "public_transport": "station"}, 691 "motorcycle_parking": {"amenity": "motorcycle_parking"}, 692 "parking": {"amenity": "parking"}, 693 "rental_service": {"shop": "rental"}, 694 "car_rental_agency": {"amenity": "car_rental"}, 695 "motorcycle_rentals": {"shop": "rental", "rental": "motorcycle"}, 696 "rv_rentals": {"shop": "rental", "rental": "rv"}, 697 "trailer_rentals": {"shop": "rental", "rental": "trailer"}, 698 "truck_rentals": {"shop": "rental", "rental": "truck"}, 699 "rest_stop": {"highway": "services"}, 700 "broadcasting_media_production": {"office": "media"}, 701 "home_service": {"craft": "yes"}, 702 "roofing": {"craft": "roofer"}, 703 "chimney_service": {"craft": "chimney_sweeper"}, 704 "chimney_sweep": {"craft": "chimney_sweeper"}, 705 "flooring_contractors": {"craft": "floorer"}, 706 "carpenter": {"craft": "carpenter"}, 707 "electrician": {"craft": "electrician"}, 708 "insulation_installation": {"craft": "insulation"}, 709 "key_and_locksmith": {"shop": "locksmith"}, 710 "painting": {"craft": "painter"}, 711 "plasterer": {"craft": "plasterer"}, 712 "tiling": {"craft": "tiler"}, 713 "landscaping": {"craft": "gardener"}, 714 "gardener": {"craft": "gardener"}, 715 "landscape_architect": {"craft": "gardener"}, 716 "lawn_service": {"craft": "gardener"}, 717 "tree_services": {"craft": "arborist"}, 718 "professional_services": {"craft": "yes"}, 719 "welders": {"craft": "welder"}, 720 "stone_and_masonry": {"craft": "stonemason"}, 721 "masonry_contractors": {"craft": "stonemason"}, 722 "lawyer": {"office": "lawyer"}, 723 "estate_planning_law": {"office": "lawyer", "lawyer": "estate_planning"}, 724 "bankruptcy_law": {"office": "lawyer", "lawyer": "bankruptcy"}, 725 "business_law": {"office": "lawyer", "lawyer": "business"}, 726 "contract_law": {"office": "lawyer", "lawyer": "contract"}, 727 "criminal_defense_law": {"office": "lawyer", "lawyer": "criminal_defense"}, 728 "disability_law": {"office": "lawyer", "lawyer": "disability"}, 729 "divorce_and_family_law": {"office": "lawyer", "lawyer": "divorce_and_family"}, 730 "dui_law": {"office": "lawyer", "lawyer": "dui"}, 731 "employment_law": {"office": "lawyer", "lawyer": "employment"}, 732 "entertainment_law": {"office": "lawyer", "lawyer": "entertainment"}, 733 "immigration_law": {"office": "lawyer", "lawyer": "immigration"}, 734 "ip_and_internet_law": {"office": "lawyer", "lawyer": "ip_and_internet"}, 735 "medical_law": {"office": "lawyer", "lawyer": "medical"}, 736 "personal_injury_law": {"office": "lawyer", "lawyer": "personal_injury"}, 737 "real_estate_law": {"office": "lawyer", "lawyer": "real_estate"}, 738 "social_security_law": {"office": "lawyer", "lawyer": "social_security"}, 739 "tax_law": {"office": "tax_advisor"}, 740 "traffic_ticketing_law": {"office": "lawyer", "lawyer": "traffic_ticketing"}, 741 "workers_compensation_law": {"office": "lawyer", "lawyer": "workers_compensation"}, 742 "caterer": {"craft": "caterer"}, 743 "photographer": {"craft": "photographer"}, 744 "session_photography": {"craft": "photographer"}, 745 "laundry_services": {"shop": "laundry"}, 746 "dry_cleaning": {"shop": "laundry", "dry_cleaning": "yes"}, 747 "laundromat": {"shop": "laundry"}, 748 "advertising_agency": {"office": "advertising_agency"}, 749 "architect": {"office": "architect"}, 750 "architectural_designer": {"office": "architect"}, 751 "bail_bonds_service": {"office": "bail_bond_agent"}, 752 "car_broker": {"shop": "car"}, 753 "day_care_preschool": {"amenity": "school"}, 754 "computer_hardware_company": {"shop": "computer"}, 755 "electronics_repair_shop": {"craft": "electronics_repair"}, 756 "junkyard": {"industrial": "scrap_yard"}, 757 "machine_and_tool_rentals": {"shop": "rental", "rental": "machines"}, 758 "notary_public": {"office": "lawyer", "lawyer": "notary"}, 759 "patent_law": {"office": "lawyer", "lawyer": "patent"}, 760 "shoe_repair": {"shop": "shoe_repair"}, 761 "software_development": {"office": "software"}, 762 "tenant_and_eviction_law": {"office": "lawyer", "lawyer": "tenant_and_eviction"}, 763 "self_storage_facility": {"shop": "storage_rental"}, 764 "public_phones": {"amenity": "telephone"}, 765 "public_restrooms": {"amenity": "toilets", "access": "yes"}, 766 "structure_and_geography": {"place": "yes"}, 767 "bridge": {"man_made": "bridge"}, 768 "canal": {"waterway": "canal"}, 769 "dam": {"waterway": "dam"}, 770 "desert": {"natural": "desert"}, 771 "forest": {"natural": "wood"}, 772 "island": {"place": "island"}, 773 "mountain": {"natural": "peak"}, 774 "nature_reserve": {"leisure": "nature_reserve"}, 775 "pier": {"man_made": "pier"}, 776 "public_plaza": {"place": "square"}, 777 "quay": {"man_made": "quay"}, 778 "river": {"waterway": "river"}, 779 "skyscraper": {"building": "yes"}, 780 "tower": {"man_made": "tower"}, 781 "weir": {"waterway": "weir"}, 782} 783"""Dict[str, Dict[str, str]]: A mapping of Overture to OSM place tags, 784excluding blank values. This is downstream from the `scripts/tag.json` 785file."""