diff --git a/custom_components/waste_collection_schedule/config_flow.py b/custom_components/waste_collection_schedule/config_flow.py index 05705980..504c8ceb 100644 --- a/custom_components/waste_collection_schedule/config_flow.py +++ b/custom_components/waste_collection_schedule/config_flow.py @@ -484,32 +484,34 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call for arg in args: default = args[arg].default + arg_name = args[arg].name + arg_key = f"{source}_{arg_name}" field_type = None annotation = args[arg].annotation description = None - if args_input is not None and args[arg].name in args_input: - description = {"suggested_value": args_input[args[arg].name]} + if args_input is not None and arg_key in args_input: + description = {"suggested_value": args_input[arg_key]} _LOGGER.debug( - f"Setting suggested value for {args[arg].name} to {args_input[args[arg].name]} (previously filled in)" + f"Setting suggested value for {arg_key} to {args_input[arg_key]} (previously filled in)" ) - elif args[arg].name in pre_filled: + elif arg_key in pre_filled: _LOGGER.debug( - f"Setting default value for {args[arg].name} to {pre_filled[args[arg].name]}" + f"Setting default value for {arg_key} to {pre_filled[arg_key]}" ) description = { - "suggested_value": pre_filled[args[arg].name], + "suggested_value": pre_filled[arg_key], } if annotation != inspect._empty: field_type = ( await self.__get_type_by_annotation(annotation) or field_type ) _LOGGER.debug( - f"Default for {args[arg].name}: {type(default) if default is not inspect.Signature.empty else inspect.Signature.empty}" + f"Default for {arg_key}: {type(default) if default is not inspect.Signature.empty else inspect.Signature.empty}" ) - if args[arg].name in MODULE_FLOW_TYPES: - flow_type = MODULE_FLOW_TYPES[args[arg].name] + if arg_name in MODULE_FLOW_TYPES: + flow_type = MODULE_FLOW_TYPES[arg_name] if flow_type.get("type") == "SELECT": field_type = SelectSelector( SelectSelectorConfig( @@ -530,14 +532,14 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call arg ].name in suggestions: _LOGGER.debug( - f"Adding suggestions to {args[arg].name}: {suggestions[args[arg].name]}" + f"Adding suggestions to {arg_key}: {suggestions[arg_key]}" ) # Add suggestions to the field if fetch/init raised an Exception with suggestions field_type = SelectSelector( SelectSelectorConfig( options=[ SelectOptionDict(label=x, value=x) - for x in suggestions[args[arg].name] + for x in suggestions[arg_key] ], mode=SelectSelectorMode.DROPDOWN, custom_value=True, @@ -546,7 +548,7 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call ) if default == inspect.Signature.empty: - vol_args[vol.Required(args[arg].name, description=description)] = ( + vol_args[vol.Required(arg_key, description=description)] = ( field_type or str ) @@ -554,7 +556,7 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call # Handle boolean, int, string, date, datetime, list defaults vol_args[ vol.Optional( - args[arg].name, + arg_key, default=UNDEFINED if default is None else default, description=description, ) @@ -563,7 +565,7 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call ) else: _LOGGER.debug( - f"Unsupported type: {type(default)}: {args[arg].name}: {default}: {field_type}" + f"Unsupported type: {type(default)}: {arg_key}: {default}: {field_type}" ) schema = vol.Schema(vol_args) @@ -584,6 +586,7 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call """ errors = {} description_placeholders: dict[str, str] = {} + args_input = {k.removeprefix(f"{source}_"): v for k, v in args_input.items()} if hasattr(module, "validate_params"): errors.update(module.validate_params(args_input)) @@ -610,16 +613,17 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call except SourceArgumentSuggestionsExceptionBase as e: if not hasattr(self, "_error_suggestions"): self._error_suggestions = {} - self._error_suggestions.update({e.argument: e.suggestions}) - errors[e.argument] = "invalid_arg" + arg_key = f"{source}_{e.argument}" + self._error_suggestions.update({arg_key: e.suggestions}) + errors[arg_key] = "invalid_arg" description_placeholders["invalid_arg_message"] = e.simple_message if e.suggestion_type != str and e.suggestion_type != int: description_placeholders["invalid_arg_message"] = e.message except SourceArgumentRequired as e: - errors[e.argument] = "invalid_arg" + errors[f"{source}_{e.argument}"] = "invalid_arg" description_placeholders["invalid_arg_message"] = e.message except SourceArgumentException as e: - errors[e.argument] = "invalid_arg" + errors[f"{source}_{e.argument}"] = "invalid_arg" description_placeholders["invalid_arg_message"] = e.message except SourceArgumentExceptionMultiple as e: description_placeholders["invalid_arg_message"] = e.message @@ -627,7 +631,7 @@ class WasteCollectionConfigFlow(ConfigFlow, domain=DOMAIN): # type: ignore[call errors["base"] = "invalid_arg" else: for arg in e.arguments: - errors[arg] = "invalid_arg" + errors[f"{source}_{arg}"] = "invalid_arg" except Exception as e: errors["base"] = "fetch_error" description_placeholders["fetch_error_message"] = str(e) diff --git a/custom_components/waste_collection_schedule/translations/de.json b/custom_components/waste_collection_schedule/translations/de.json index f01af450..038aae85 100644 --- a/custom_components/waste_collection_schedule/translations/de.json +++ b/custom_components/waste_collection_schedule/translations/de.json @@ -67,11 +67,180 @@ "title": "Quelle konfigurieren", "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", "data": { + "ahk_heidekreis_de_city": "Ort", + "ahk_heidekreis_de_house_number": "Hausnummer", + "ahk_heidekreis_de_postcode": "PLZ", + "ahk_heidekreis_de_street": "Straße", + "art_trier_de_district": "Ort", + "art_trier_de_zip_code": "PLZ", + "asr_chemnitz_de_house_number": "Hausnummer", + "asr_chemnitz_de_object_number": "Objektnummer", + "asr_chemnitz_de_street": "Straße", + "awb_emsland_de_address_suffix": "Hausnummerzusatz", + "awb_emsland_de_city": "Ort", + "awb_emsland_de_house_number": "Hausnummer", + "awb_emsland_de_street": "Straße", + "awb_oldenburg_de_house_number": "Hausnummer", + "awb_oldenburg_de_street": "Straße", + "awbkoeln_de_building_number": "Hausnummer", + "awbkoeln_de_street_code": "Straßencode", + "awido_de_city": "Ort", + "awido_de_customer": "Kunde", + "awido_de_housenumber": "Hausnummer", + "awido_de_street": "Straße", + "awlneuss_de_building_number": "Hausnummer", + "awlneuss_de_street_code": "Straßencode", + "awlneuss_de_street_name": "Straßenname", + "awn_de_address_suffix": "Hausnummerzusatz", + "awn_de_city": "Ort", + "awn_de_house_number": "Hausnummer", + "awn_de_street": "Straße", + "awr_de_city": "Ort", + "awr_de_street": "Straße", + "awsh_de_city": "Ort", + "awsh_de_street": "Straße", + "berlin_recycling_de_password": "Passwort", + "berlin_recycling_de_username": "Benutzername", + "bielefeld_de_address_suffix": "Hausnummerzusatz", + "bielefeld_de_house_number": "Hausnummer", + "bielefeld_de_street": "Straße", + "bsr_de_abf_hausnr": "Hausnummer", + "bsr_de_abf_strasse": "Straße", + "buergerportal_de_district": "Ort", + "buergerportal_de_number": "Hausnummer", + "buergerportal_de_operator": "Betreiber", + "buergerportal_de_show_volume": "Große Container anzeigen", + "buergerportal_de_street": "Straße", + "buergerportal_de_subdistrict": "Ortsteil", "calendar_title": "Kalender Titel", - "customer": "Kunde", - "street": "Straße", - "city": "Ort", - "housenumber": "Hausnummer" + "cederbaum_de_street": "Straße", + "dillingen_saar_de_street": "Straße", + "ead_darmstadt_de_street": "Straße", + "egn_abfallkalender_de_city": "Ort", + "egn_abfallkalender_de_district": "Ortsteil", + "egn_abfallkalender_de_housenumber": "Hausnummer", + "egn_abfallkalender_de_street": "Straße", + "eigenbetrieb_abfallwirtschaft_de_city": "Ort", + "eigenbetrieb_abfallwirtschaft_de_street": "Straße", + "erlangen_hoechstadt_de_city": "Ort", + "erlangen_hoechstadt_de_street": "Straße", + "geoport_nwm_de_district": "Ortsteil", + "hausmuell_info_hausnummer": "Hausnummer", + "hausmuell_info_ort": "Ort", + "hausmuell_info_ortsteil": "Ortsteil", + "hausmuell_info_strasse": "Straße", + "hausmuell_info_subdomain": "Subdomain", + "heilbronn_de_hausnr": "Hausnummer", + "heilbronn_de_plz": "PLZ", + "heilbronn_de_strasse": "Straße", + "ics_file": "Datei", + "ics_headers": "Headers", + "ics_method": "Methode", + "ics_offset": "Offset", + "ics_params": "Parameter", + "ics_regex": "Regulärer Ausdruck", + "ics_split_at": "Trennen bei", + "ics_title_template": "Titelvorlage", + "ics_url": "URL", + "ics_verify_ssl": "SSL-Verifizierung aktivieren", + "ics_version": "Version", + "ics_year_field": "Jahresfeld", + "infeo_at_city": "Ort", + "infeo_at_customer": "Kunde", + "infeo_at_housenumber": "Hausnummer", + "infeo_at_street": "Straße", + "infeo_at_zone": "Zone", + "insert_it_de_hnr": "Hausnummer", + "insert_it_de_location_id": "Standort ID", + "insert_it_de_municipality": "Ort", + "insert_it_de_street": "Straße", + "jumomind_de_area_id": "Bereich ID", + "jumomind_de_city": "Ort", + "jumomind_de_city_id": "Ort ID", + "jumomind_de_house_number": "Hausnummer", + "jumomind_de_service_id": "Service ID", + "jumomind_de_street": "Straße", + "karlsruhe_de_hnr": "Hausnummer", + "karlsruhe_de_ladeort": "Ladeort", + "karlsruhe_de_street": "Straße", + "korneuburg_stadtservice_at_street_name": "Straßenname", + "korneuburg_stadtservice_at_street_number": "Hausnummer", + "korneuburg_stadtservice_at_teilgebiet": "Teilgebiet", + "ks_boerde_de_house_number": "Hausnummer", + "ks_boerde_de_street": "Straße", + "ks_boerde_de_village": "Ort", + "kwb_goslar_de_pois": "POIS", + "kwu_de_city": "Ort", + "kwu_de_number": "Hausnummer", + "kwu_de_street": "Straße", + "landkreis_rhoen_grabfeld_city": "Ort", + "landkreis_rhoen_grabfeld_district": "Ortsteil", + "landkreis_wittmund_de_city": "Ort", + "landkreis_wittmund_de_street": "Straße", + "lindau_ch_city": "Ort", + "lrasha_de_location": "Gebiet", + "mags_de_number": "Hausnummer", + "mags_de_street": "Straße", + "mags_de_turnus": "Turnus", + "meinawb_de_address_suffix": "Hausnummerzusatz", + "meinawb_de_city": "Ort", + "meinawb_de_house_number": "Hausnummer", + "meinawb_de_street": "Strasse", + "monaloga_de_plz": "PLZ", + "monaloga_de_street": "Straße", + "muellabfuhr_de_city": "Ort", + "muellabfuhr_de_client": "Client", + "muellabfuhr_de_district": "Ortsteil", + "muellabfuhr_de_street": "Straße", + "muellmax_de_mm_frm_hnr_sel": "Hausnummer", + "muellmax_de_mm_frm_ort_sel": "Ort", + "muellmax_de_mm_frm_str_sel": "Straße", + "muellmax_de_service": "Service", + "muenchenstein_ch_waste_district": "Abfuhrkreis", + "offenbach_de_f_id_location": "Standort ID", + "potsdam_de_bio_rhythm": "Bio Rhythmus", + "potsdam_de_gelb_rhythm": "Gelb Rhythmus", + "potsdam_de_ortsteil": "Ortsteil", + "potsdam_de_papier_rhythm": "Papier Rhythmus", + "potsdam_de_rest_rhythm": "Restabfall Rhythmus", + "potsdam_de_strasse": "Straße", + "real_luzern_ch_municipality_id": "Orts ID", + "real_luzern_ch_street_id": "Strassen ID", + "regioentsorgung_de_city": "Ort", + "regioentsorgung_de_house_number": "Hausnummer", + "regioentsorgung_de_street": "Straße", + "rh_entsorgung_de_address_suffix": "Hausnummerzusatz", + "rh_entsorgung_de_city": "Ort", + "rh_entsorgung_de_house_number": "Hausnummer", + "rh_entsorgung_de_street": "Straße", + "sbazv_de_city": "Ort", + "sbazv_de_district": "Ortsteil", + "sbazv_de_street": "Straße", + "sector27_de_city": "Ort", + "sector27_de_street": "Straße", + "stuttgart_de_street": "Straße", + "stuttgart_de_streetnr": "Hausnummer", + "tbv_velbert_de_street": "Straße", + "tonnenleerung_de_url": "URL", + "was_wolfsburg_de_city": "Ort", + "was_wolfsburg_de_street": "Straße", + "wermelskirchen_de_house_number": "Hausnummer", + "wermelskirchen_de_street": "Straße", + "wsz_moosburg_at_address": "Adresse", + "wsz_moosburg_at_address_id": "Adressen ID", + "wsz_moosburg_at_municipal": "Gemeinde", + "wsz_moosburg_at_street": "Straße", + "wuerzburg_de_district": "Stadtteil", + "wuerzburg_de_street": "Straße", + "zakb_de_hnr": "Hausnummer", + "zakb_de_hnr_zusatz": "Hausnummerzusatz", + "zakb_de_ort": "Ort", + "zakb_de_strasse": "Straße", + "zva_sek_de_bezirk": "Abfuhrbezirk", + "zva_sek_de_ortsteil": "Ortsteil", + "zva_sek_de_strasse": "Straße", + "zva_wmk_de_city": "Ort", + "zva_wmk_de_street": "Straße" }, "data_description": { "calendar_title": "Ein lesbarerer oder benutzerfreundlicherer Name für den Müllkalender. Wenn nichts angegeben wird, wird der Name der Quelle verwendet." @@ -110,11 +279,180 @@ "title": "Quelle Neu Konfigurieren", "description": "Konfiguriere deinen Service Provider. Für Details siehe die Quellen Dokumentation.", "data": { + "ahk_heidekreis_de_city": "Ort", + "ahk_heidekreis_de_house_number": "Hausnummer", + "ahk_heidekreis_de_postcode": "PLZ", + "ahk_heidekreis_de_street": "Straße", + "art_trier_de_district": "Ort", + "art_trier_de_zip_code": "PLZ", + "asr_chemnitz_de_house_number": "Hausnummer", + "asr_chemnitz_de_object_number": "Objektnummer", + "asr_chemnitz_de_street": "Straße", + "awb_emsland_de_address_suffix": "Hausnummerzusatz", + "awb_emsland_de_city": "Ort", + "awb_emsland_de_house_number": "Hausnummer", + "awb_emsland_de_street": "Straße", + "awb_oldenburg_de_house_number": "Hausnummer", + "awb_oldenburg_de_street": "Straße", + "awbkoeln_de_building_number": "Hausnummer", + "awbkoeln_de_street_code": "Straßencode", + "awido_de_city": "Ort", + "awido_de_customer": "Kunde", + "awido_de_housenumber": "Hausnummer", + "awido_de_street": "Straße", + "awlneuss_de_building_number": "Hausnummer", + "awlneuss_de_street_code": "Straßencode", + "awlneuss_de_street_name": "Straßenname", + "awn_de_address_suffix": "Hausnummerzusatz", + "awn_de_city": "Ort", + "awn_de_house_number": "Hausnummer", + "awn_de_street": "Straße", + "awr_de_city": "Ort", + "awr_de_street": "Straße", + "awsh_de_city": "Ort", + "awsh_de_street": "Straße", + "berlin_recycling_de_password": "Passwort", + "berlin_recycling_de_username": "Benutzername", + "bielefeld_de_address_suffix": "Hausnummerzusatz", + "bielefeld_de_house_number": "Hausnummer", + "bielefeld_de_street": "Straße", + "bsr_de_abf_hausnr": "Hausnummer", + "bsr_de_abf_strasse": "Straße", + "buergerportal_de_district": "Ort", + "buergerportal_de_number": "Hausnummer", + "buergerportal_de_operator": "Betreiber", + "buergerportal_de_show_volume": "Große Container anzeigen", + "buergerportal_de_street": "Straße", + "buergerportal_de_subdistrict": "Ortsteil", "calendar_title": "Kalender Titel", - "customer": "Kunde", - "street": "Straße", - "city": "Ort", - "housenumber": "Hausnummer" + "cederbaum_de_street": "Straße", + "dillingen_saar_de_street": "Straße", + "ead_darmstadt_de_street": "Straße", + "egn_abfallkalender_de_city": "Ort", + "egn_abfallkalender_de_district": "Ortsteil", + "egn_abfallkalender_de_housenumber": "Hausnummer", + "egn_abfallkalender_de_street": "Straße", + "eigenbetrieb_abfallwirtschaft_de_city": "Ort", + "eigenbetrieb_abfallwirtschaft_de_street": "Straße", + "erlangen_hoechstadt_de_city": "Ort", + "erlangen_hoechstadt_de_street": "Straße", + "geoport_nwm_de_district": "Ortsteil", + "hausmuell_info_hausnummer": "Hausnummer", + "hausmuell_info_ort": "Ort", + "hausmuell_info_ortsteil": "Ortsteil", + "hausmuell_info_strasse": "Straße", + "hausmuell_info_subdomain": "Subdomain", + "heilbronn_de_hausnr": "Hausnummer", + "heilbronn_de_plz": "PLZ", + "heilbronn_de_strasse": "Straße", + "ics_file": "Datei", + "ics_headers": "Headers", + "ics_method": "Methode", + "ics_offset": "Offset", + "ics_params": "Parameter", + "ics_regex": "Regulärer Ausdruck", + "ics_split_at": "Trennen bei", + "ics_title_template": "Titelvorlage", + "ics_url": "URL", + "ics_verify_ssl": "SSL-Verifizierung aktivieren", + "ics_version": "Version", + "ics_year_field": "Jahresfeld", + "infeo_at_city": "Ort", + "infeo_at_customer": "Kunde", + "infeo_at_housenumber": "Hausnummer", + "infeo_at_street": "Straße", + "infeo_at_zone": "Zone", + "insert_it_de_hnr": "Hausnummer", + "insert_it_de_location_id": "Standort ID", + "insert_it_de_municipality": "Ort", + "insert_it_de_street": "Straße", + "jumomind_de_area_id": "Bereich ID", + "jumomind_de_city": "Ort", + "jumomind_de_city_id": "Ort ID", + "jumomind_de_house_number": "Hausnummer", + "jumomind_de_service_id": "Service ID", + "jumomind_de_street": "Straße", + "karlsruhe_de_hnr": "Hausnummer", + "karlsruhe_de_ladeort": "Ladeort", + "karlsruhe_de_street": "Straße", + "korneuburg_stadtservice_at_street_name": "Straßenname", + "korneuburg_stadtservice_at_street_number": "Hausnummer", + "korneuburg_stadtservice_at_teilgebiet": "Teilgebiet", + "ks_boerde_de_house_number": "Hausnummer", + "ks_boerde_de_street": "Straße", + "ks_boerde_de_village": "Ort", + "kwb_goslar_de_pois": "POIS", + "kwu_de_city": "Ort", + "kwu_de_number": "Hausnummer", + "kwu_de_street": "Straße", + "landkreis_rhoen_grabfeld_city": "Ort", + "landkreis_rhoen_grabfeld_district": "Ortsteil", + "landkreis_wittmund_de_city": "Ort", + "landkreis_wittmund_de_street": "Straße", + "lindau_ch_city": "Ort", + "lrasha_de_location": "Gebiet", + "mags_de_number": "Hausnummer", + "mags_de_street": "Straße", + "mags_de_turnus": "Turnus", + "meinawb_de_address_suffix": "Hausnummerzusatz", + "meinawb_de_city": "Ort", + "meinawb_de_house_number": "Hausnummer", + "meinawb_de_street": "Strasse", + "monaloga_de_plz": "PLZ", + "monaloga_de_street": "Straße", + "muellabfuhr_de_city": "Ort", + "muellabfuhr_de_client": "Client", + "muellabfuhr_de_district": "Ortsteil", + "muellabfuhr_de_street": "Straße", + "muellmax_de_mm_frm_hnr_sel": "Hausnummer", + "muellmax_de_mm_frm_ort_sel": "Ort", + "muellmax_de_mm_frm_str_sel": "Straße", + "muellmax_de_service": "Service", + "muenchenstein_ch_waste_district": "Abfuhrkreis", + "offenbach_de_f_id_location": "Standort ID", + "potsdam_de_bio_rhythm": "Bio Rhythmus", + "potsdam_de_gelb_rhythm": "Gelb Rhythmus", + "potsdam_de_ortsteil": "Ortsteil", + "potsdam_de_papier_rhythm": "Papier Rhythmus", + "potsdam_de_rest_rhythm": "Restabfall Rhythmus", + "potsdam_de_strasse": "Straße", + "real_luzern_ch_municipality_id": "Orts ID", + "real_luzern_ch_street_id": "Strassen ID", + "regioentsorgung_de_city": "Ort", + "regioentsorgung_de_house_number": "Hausnummer", + "regioentsorgung_de_street": "Straße", + "rh_entsorgung_de_address_suffix": "Hausnummerzusatz", + "rh_entsorgung_de_city": "Ort", + "rh_entsorgung_de_house_number": "Hausnummer", + "rh_entsorgung_de_street": "Straße", + "sbazv_de_city": "Ort", + "sbazv_de_district": "Ortsteil", + "sbazv_de_street": "Straße", + "sector27_de_city": "Ort", + "sector27_de_street": "Straße", + "stuttgart_de_street": "Straße", + "stuttgart_de_streetnr": "Hausnummer", + "tbv_velbert_de_street": "Straße", + "tonnenleerung_de_url": "URL", + "was_wolfsburg_de_city": "Ort", + "was_wolfsburg_de_street": "Straße", + "wermelskirchen_de_house_number": "Hausnummer", + "wermelskirchen_de_street": "Straße", + "wsz_moosburg_at_address": "Adresse", + "wsz_moosburg_at_address_id": "Adressen ID", + "wsz_moosburg_at_municipal": "Gemeinde", + "wsz_moosburg_at_street": "Straße", + "wuerzburg_de_district": "Stadtteil", + "wuerzburg_de_street": "Straße", + "zakb_de_hnr": "Hausnummer", + "zakb_de_hnr_zusatz": "Hausnummerzusatz", + "zakb_de_ort": "Ort", + "zakb_de_strasse": "Straße", + "zva_sek_de_bezirk": "Abfuhrbezirk", + "zva_sek_de_ortsteil": "Ortsteil", + "zva_sek_de_strasse": "Straße", + "zva_wmk_de_city": "Ort", + "zva_wmk_de_street": "Straße" } } }, diff --git a/custom_components/waste_collection_schedule/translations/en.json b/custom_components/waste_collection_schedule/translations/en.json index c6cc3205..bd5d2c65 100644 --- a/custom_components/waste_collection_schedule/translations/en.json +++ b/custom_components/waste_collection_schedule/translations/en.json @@ -67,224 +67,1413 @@ "title": "Configure Source", "description": "Configure your service provider. For details see the source documentation.", "data": { - "abf_hausnr": "abf_hausnr", - "abf_strasse": "abf_strasse", - "abf_suche": "abf_suche", - "add_events": "Add Events", - "additional_sides_matcher": "additional_sides_matcher", - "address": "Address", - "address_name_number": "Address Name or Number", - "address_name_numer": "Address Name or Number", - "address_payload": "Address Payload", - "address_postcode": "Postcode", - "address_street": "Street", - "address_suffix": "Address Suffix", - "area": "Area", - "area_id": "Area ID", - "area_number": "Area Number", - "args": "Arguments", - "asId": "asId", - "bezirk": "bezirk", - "bio_rhythm": "bio_rhythm", - "bnumber": "bnumber", - "borough": "Borough", - "building_number": "Building Number", - "calendar": "Calendar", + "a_region_ch_district": "A Region Ch District", + "a_region_ch_municipality": "A Region Ch Municipality", + "a_region_ch_self": "A Region Ch Self", + "aberdeenshire_gov_uk_self": "Aberdeenshire Gov Uk Self", + "aberdeenshire_gov_uk_uprn": "Aberdeenshire Gov Uk Uprn", + "abfall_havelland_de_ort": "Abfall Havelland De Ort", + "abfall_havelland_de_self": "Abfall Havelland De Self", + "abfall_havelland_de_strasse": "Abfall Havelland De Strasse", + "abfall_io_f_abfallarten": "Abfall Io F Abfallarten", + "abfall_io_f_id_bezirk": "Abfall Io F Id Bezirk", + "abfall_io_f_id_kommune": "Abfall Io F Id Kommune", + "abfall_io_f_id_strasse": "Abfall Io F Id Strasse", + "abfall_io_f_id_strasse_hnr": "Abfall Io F Id Strasse Hnr", + "abfall_io_key": "Abfall Io Key", + "abfall_io_self": "Abfall Io Self", + "abfall_lippe_de_bezirk": "Abfall Lippe De Bezirk", + "abfall_lippe_de_gemeinde": "Abfall Lippe De Gemeinde", + "abfall_lippe_de_self": "Abfall Lippe De Self", + "abfall_neunkirchen_siegerland_de_self": "Abfall Neunkirchen Siegerland De Self", + "abfall_neunkirchen_siegerland_de_strasse": "Abfall Neunkirchen Siegerland De Strasse", + "abfallkalender_gifhorn_de_self": "Abfallkalender Gifhorn De Self", + "abfallkalender_gifhorn_de_street": "Abfallkalender Gifhorn De Street", + "abfallkalender_gifhorn_de_territory": "Abfallkalender Gifhorn De Territory", + "abfallnavi_de_hausnummer": "Abfallnavi De Hausnummer", + "abfallnavi_de_ort": "Abfallnavi De Ort", + "abfallnavi_de_self": "Abfallnavi De Self", + "abfallnavi_de_service": "Abfallnavi De Service", + "abfallnavi_de_strasse": "Abfallnavi De Strasse", + "abfalltermine_forchheim_de_area": "Abfalltermine Forchheim De Area", + "abfalltermine_forchheim_de_city": "Abfalltermine Forchheim De City", + "abfalltermine_forchheim_de_self": "Abfalltermine Forchheim De Self", + "abfallwirtschaft_fuerth_eu_id": "Abfallwirtschaft Fuerth Eu Id", + "abfallwirtschaft_fuerth_eu_self": "Abfallwirtschaft Fuerth Eu Self", + "abfallwirtschaft_germersheim_de_city": "Abfallwirtschaft Germersheim De City", + "abfallwirtschaft_germersheim_de_self": "Abfallwirtschaft Germersheim De Self", + "abfallwirtschaft_germersheim_de_street": "Abfallwirtschaft Germersheim De Street", + "abfallwirtschaft_pforzheim_de_address_suffix": "Abfallwirtschaft Pforzheim De Address Suffix", + "abfallwirtschaft_pforzheim_de_house_number": "Abfallwirtschaft Pforzheim De House Number", + "abfallwirtschaft_pforzheim_de_self": "Abfallwirtschaft Pforzheim De Self", + "abfallwirtschaft_pforzheim_de_street": "Abfallwirtschaft Pforzheim De Street", + "abfallwirtschaft_vechta_de_self": "Abfallwirtschaft Vechta De Self", + "abfallwirtschaft_vechta_de_stadt": "Abfallwirtschaft Vechta De Stadt", + "abfallwirtschaft_vechta_de_strasse": "Abfallwirtschaft Vechta De Strasse", + "abki_de_number": "Abki De Number", + "abki_de_self": "Abki De Self", + "abki_de_street": "Abki De Street", + "act_gov_au_self": "Act Gov Au Self", + "act_gov_au_split_suburb": "Act Gov Au Split Suburb", + "act_gov_au_suburb": "Act Gov Au Suburb", + "adur_worthing_gov_uk_address": "Adur Worthing Gov Uk Address", + "adur_worthing_gov_uk_postcode": "Adur Worthing Gov Uk Postcode", + "adur_worthing_gov_uk_self": "Adur Worthing Gov Uk Self", + "affaldonline_dk_municipality": "Affaldonline Dk Municipality", + "affaldonline_dk_self": "Affaldonline Dk Self", + "affaldonline_dk_values": "Affaldonline Dk Values", + "affarsverken_se_address": "Affarsverken Se Address", + "affarsverken_se_self": "Affarsverken Se Self", + "afvalstoffendienst_nl_addition": "Afvalstoffendienst Nl Addition", + "afvalstoffendienst_nl_house_number": "Afvalstoffendienst Nl House Number", + "afvalstoffendienst_nl_postcode": "Afvalstoffendienst Nl Postcode", + "afvalstoffendienst_nl_region": "Afvalstoffendienst Nl Region", + "afvalstoffendienst_nl_self": "Afvalstoffendienst Nl Self", + "aha_region_de_gemeinde": "Aha Region De Gemeinde", + "aha_region_de_hnr": "Aha Region De Hnr", + "aha_region_de_ladeort": "Aha Region De Ladeort", + "aha_region_de_self": "Aha Region De Self", + "aha_region_de_strasse": "Aha Region De Strasse", + "aha_region_de_zusatz": "Aha Region De Zusatz", + "ahe_de_hnr": "Ahe De Hnr", + "ahe_de_plz": "Ahe De Plz", + "ahe_de_self": "Ahe De Self", + "ahe_de_strasse": "Ahe De Strasse", + "ahk_heidekreis_de_city": "Ahk Heidekreis De City", + "ahk_heidekreis_de_house_number": "Ahk Heidekreis De House Number", + "ahk_heidekreis_de_postcode": "Ahk Heidekreis De Postcode", + "ahk_heidekreis_de_self": "Ahk Heidekreis De Self", + "ahk_heidekreis_de_street": "Ahk Heidekreis De Street", + "alchenstorf_ch_self": "Alchenstorf Ch Self", + "aliaserviziambientali_it_area": "Aliaserviziambientali It Area", + "aliaserviziambientali_it_municipality": "Aliaserviziambientali It Municipality", + "aliaserviziambientali_it_self": "Aliaserviziambientali It Self", + "allerdale_gov_uk_address_name_number": "Allerdale Gov Uk Address Name Number", + "allerdale_gov_uk_address_postcode": "Allerdale Gov Uk Address Postcode", + "allerdale_gov_uk_self": "Allerdale Gov Uk Self", + "alw_wf_de_ort": "Alw Wf De Ort", + "alw_wf_de_self": "Alw Wf De Self", + "alw_wf_de_strasse": "Alw Wf De Strasse", + "ambervalley_gov_uk_self": "Ambervalley Gov Uk Self", + "ambervalley_gov_uk_uprn": "Ambervalley Gov Uk Uprn", + "antrimandnewtownabbey_gov_uk_id": "Antrimandnewtownabbey Gov Uk Id", + "antrimandnewtownabbey_gov_uk_self": "Antrimandnewtownabbey Gov Uk Self", + "antrimandnewtownabbey_gov_uk_uprn": "Antrimandnewtownabbey Gov Uk Uprn", + "api_golemio_cz_api_key": "Api Golemio Cz Api Key", + "api_golemio_cz_auto_suffix": "Api Golemio Cz Auto Suffix", + "api_golemio_cz_ignored_containers": "Api Golemio Cz Ignored Containers", + "api_golemio_cz_lat": "Api Golemio Cz Lat", + "api_golemio_cz_lon": "Api Golemio Cz Lon", + "api_golemio_cz_only_monitored": "Api Golemio Cz Only Monitored", + "api_golemio_cz_radius": "Api Golemio Cz Radius", + "api_golemio_cz_self": "Api Golemio Cz Self", + "api_golemio_cz_suffix": "Api Golemio Cz Suffix", + "api_hubert_schmid_de_city": "Api Hubert Schmid De City", + "api_hubert_schmid_de_ortsteil": "Api Hubert Schmid De Ortsteil", + "api_hubert_schmid_de_self": "Api Hubert Schmid De Self", + "api_hubert_schmid_de_strasse": "Api Hubert Schmid De Strasse", + "app_abfallplus_de_app_id": "App Abfallplus De App Id", + "app_abfallplus_de_bezirk": "App Abfallplus De Bezirk", + "app_abfallplus_de_bundesland": "App Abfallplus De Bundesland", + "app_abfallplus_de_city": "App Abfallplus De City", + "app_abfallplus_de_hnr": "App Abfallplus De Hnr", + "app_abfallplus_de_landkreis": "App Abfallplus De Landkreis", + "app_abfallplus_de_self": "App Abfallplus De Self", + "app_abfallplus_de_strasse": "App Abfallplus De Strasse", + "app_my_local_services_au_lat": "App My Local Services Au Lat", + "app_my_local_services_au_lon": "App My Local Services Au Lon", + "app_my_local_services_au_self": "App My Local Services Au Self", + "apps_imactivate_com_number": "Apps Imactivate Com Number", + "apps_imactivate_com_postcode": "Apps Imactivate Com Postcode", + "apps_imactivate_com_self": "Apps Imactivate Com Self", + "apps_imactivate_com_street": "Apps Imactivate Com Street", + "apps_imactivate_com_town": "Apps Imactivate Com Town", + "ardsandnorthdown_gov_uk_self": "Ardsandnorthdown Gov Uk Self", + "ardsandnorthdown_gov_uk_uprn": "Ardsandnorthdown Gov Uk Uprn", + "armadale_wa_gov_au_address": "Armadale Wa Gov Au Address", + "armadale_wa_gov_au_self": "Armadale Wa Gov Au Self", + "art_trier_de_district": "Art Trier De District", + "art_trier_de_self": "Art Trier De Self", + "art_trier_de_zip_code": "Art Trier De Zip Code", + "arun_gov_uk_address": "Arun Gov Uk Address", + "arun_gov_uk_postcode": "Arun Gov Uk Postcode", + "arun_gov_uk_self": "Arun Gov Uk Self", + "ashfield_gov_uk_address": "Ashfield Gov Uk Address", + "ashfield_gov_uk_self": "Ashfield Gov Uk Self", + "ashford_gov_uk_postcode": "Ashford Gov Uk Postcode", + "ashford_gov_uk_self": "Ashford Gov Uk Self", + "ashford_gov_uk_uprn": "Ashford Gov Uk Uprn", + "asr_chemnitz_de_house_number": "Asr Chemnitz De House Number", + "asr_chemnitz_de_object_number": "Asr Chemnitz De Object Number", + "asr_chemnitz_de_self": "Asr Chemnitz De Self", + "asr_chemnitz_de_street": "Asr Chemnitz De Street", + "aucklandcouncil_govt_nz_area_number": "Aucklandcouncil Govt Nz Area Number", + "aucklandcouncil_govt_nz_self": "Aucklandcouncil Govt Nz Self", + "aw_harburg_de_level_1": "Aw Harburg De Level 1", + "aw_harburg_de_level_2": "Aw Harburg De Level 2", + "aw_harburg_de_level_3": "Aw Harburg De Level 3", + "aw_harburg_de_self": "Aw Harburg De Self", + "awb_bad_kreuznach_de_nummer": "Awb Bad Kreuznach De Nummer", + "awb_bad_kreuznach_de_ort": "Awb Bad Kreuznach De Ort", + "awb_bad_kreuznach_de_self": "Awb Bad Kreuznach De Self", + "awb_bad_kreuznach_de_stadtteil": "Awb Bad Kreuznach De Stadtteil", + "awb_bad_kreuznach_de_strasse": "Awb Bad Kreuznach De Strasse", + "awb_emsland_de_address_suffix": "Awb Emsland De Address Suffix", + "awb_emsland_de_city": "Awb Emsland De City", + "awb_emsland_de_house_number": "Awb Emsland De House Number", + "awb_emsland_de_self": "Awb Emsland De Self", + "awb_emsland_de_street": "Awb Emsland De Street", + "awb_es_de_city": "Awb Es De City", + "awb_es_de_self": "Awb Es De Self", + "awb_es_de_street": "Awb Es De Street", + "awb_mainz_bingen_de_bezirk": "Awb Mainz Bingen De Bezirk", + "awb_mainz_bingen_de_ort": "Awb Mainz Bingen De Ort", + "awb_mainz_bingen_de_self": "Awb Mainz Bingen De Self", + "awb_mainz_bingen_de_strasse": "Awb Mainz Bingen De Strasse", + "awb_oldenburg_de_house_number": "Awb Oldenburg De House Number", + "awb_oldenburg_de_self": "Awb Oldenburg De Self", + "awb_oldenburg_de_street": "Awb Oldenburg De Street", + "awbkoeln_de_building_number": "Awbkoeln De Building Number", + "awbkoeln_de_self": "Awbkoeln De Self", + "awbkoeln_de_street_code": "Awbkoeln De Street Code", + "awg_de_addition": "Awg De Addition", + "awg_de_city": "Awg De City", + "awg_de_hnr": "Awg De Hnr", + "awg_de_self": "Awg De Self", + "awg_de_street": "Awg De Street", + "awido_de_city": "Awido De City", + "awido_de_customer": "Awido De Customer", + "awido_de_housenumber": "Awido De Housenumber", + "awido_de_self": "Awido De Self", + "awido_de_street": "Awido De Street", + "awigo_de_hnr": "Awigo De Hnr", + "awigo_de_ort": "Awigo De Ort", + "awigo_de_self": "Awigo De Self", + "awigo_de_strasse": "Awigo De Strasse", + "awlneuss_de_building_number": "Awlneuss De Building Number", + "awlneuss_de_self": "Awlneuss De Self", + "awlneuss_de_street_code": "Awlneuss De Street Code", + "awlneuss_de_street_name": "Awlneuss De Street Name", + "awm_muenchen_de_b_collect_cycle": "Awm Muenchen De B Collect Cycle", + "awm_muenchen_de_house_number": "Awm Muenchen De House Number", + "awm_muenchen_de_p_collect_cycle": "Awm Muenchen De P Collect Cycle", + "awm_muenchen_de_r_collect_cycle": "Awm Muenchen De R Collect Cycle", + "awm_muenchen_de_self": "Awm Muenchen De Self", + "awm_muenchen_de_street": "Awm Muenchen De Street", + "awn_de_address_suffix": "Awn De Address Suffix", + "awn_de_city": "Awn De City", + "awn_de_house_number": "Awn De House Number", + "awn_de_self": "Awn De Self", + "awn_de_street": "Awn De Street", + "awr_de_city": "Awr De City", + "awr_de_self": "Awr De Self", + "awr_de_street": "Awr De Street", + "awsh_de_city": "Awsh De City", + "awsh_de_self": "Awsh De Self", + "awsh_de_street": "Awsh De Street", + "aylesburyvaledc_gov_uk_self": "Aylesburyvaledc Gov Uk Self", + "aylesburyvaledc_gov_uk_uprn": "Aylesburyvaledc Gov Uk Uprn", + "baden_umweltverbaende_at_region": "Baden Umweltverbaende At Region", + "baden_umweltverbaende_at_self": "Baden Umweltverbaende At Self", + "ballarat_vic_gov_au_self": "Ballarat Vic Gov Au Self", + "ballarat_vic_gov_au_street_address": "Ballarat Vic Gov Au Street Address", + "banyule_vic_gov_au_geolocation_id": "Banyule Vic Gov Au Geolocation Id", + "banyule_vic_gov_au_self": "Banyule Vic Gov Au Self", + "banyule_vic_gov_au_street_address": "Banyule Vic Gov Au Street Address", + "barnsley_gov_uk_postcode": "Barnsley Gov Uk Postcode", + "barnsley_gov_uk_self": "Barnsley Gov Uk Self", + "barnsley_gov_uk_uprn": "Barnsley Gov Uk Uprn", + "basildon_gov_uk_address": "Basildon Gov Uk Address", + "basildon_gov_uk_postcode": "Basildon Gov Uk Postcode", + "basildon_gov_uk_self": "Basildon Gov Uk Self", + "basildon_gov_uk_uprn": "Basildon Gov Uk Uprn", + "basingstoke_gov_uk_self": "Basingstoke Gov Uk Self", + "basingstoke_gov_uk_uprn": "Basingstoke Gov Uk Uprn", + "bathnes_gov_uk_housenameornumber": "Bathnes Gov Uk Housenameornumber", + "bathnes_gov_uk_postcode": "Bathnes Gov Uk Postcode", + "bathnes_gov_uk_self": "Bathnes Gov Uk Self", + "bathnes_gov_uk_uprn": "Bathnes Gov Uk Uprn", + "bcp_gov_uk_self": "Bcp Gov Uk Self", + "bcp_gov_uk_uprn": "Bcp Gov Uk Uprn", + "bedford_gov_uk_self": "Bedford Gov Uk Self", + "bedford_gov_uk_uprn": "Bedford Gov Uk Uprn", + "belmont_wa_gov_au_address": "Belmont Wa Gov Au Address", + "belmont_wa_gov_au_self": "Belmont Wa Gov Au Self", + "berlin_recycling_de_password": "Berlin Recycling De Password", + "berlin_recycling_de_self": "Berlin Recycling De Self", + "berlin_recycling_de_username": "Berlin Recycling De Username", + "bexley_gov_uk_self": "Bexley Gov Uk Self", + "bexley_gov_uk_uprn": "Bexley Gov Uk Uprn", + "bielefeld_de_address_suffix": "Bielefeld De Address Suffix", + "bielefeld_de_house_number": "Bielefeld De House Number", + "bielefeld_de_self": "Bielefeld De Self", + "bielefeld_de_street": "Bielefeld De Street", + "biffaleicester_co_uk_number": "Biffaleicester Co Uk Number", + "biffaleicester_co_uk_post_code": "Biffaleicester Co Uk Post Code", + "biffaleicester_co_uk_self": "Biffaleicester Co Uk Self", + "biffaleicester_co_uk_uprn": "Biffaleicester Co Uk Uprn", + "binzone_uk_self": "Binzone Uk Self", + "binzone_uk_uprn": "Binzone Uk Uprn", + "bir_no_house_letter": "Bir No House Letter", + "bir_no_house_number": "Bir No House Number", + "bir_no_self": "Bir No Self", + "bir_no_street_name": "Bir No Street Name", + "birmingham_gov_uk_postcode": "Birmingham Gov Uk Postcode", + "birmingham_gov_uk_self": "Birmingham Gov Uk Self", + "birmingham_gov_uk_uprn": "Birmingham Gov Uk Uprn", + "blackburn_gov_uk_self": "Blackburn Gov Uk Self", + "blackburn_gov_uk_uprn": "Blackburn Gov Uk Uprn", + "blackpool_gov_uk_postcode": "Blackpool Gov Uk Postcode", + "blackpool_gov_uk_self": "Blackpool Gov Uk Self", + "blackpool_gov_uk_uprn": "Blackpool Gov Uk Uprn", + "blacktown_nsw_gov_au_post_code": "Blacktown Nsw Gov Au Post Code", + "blacktown_nsw_gov_au_self": "Blacktown Nsw Gov Au Self", + "blacktown_nsw_gov_au_street_name": "Blacktown Nsw Gov Au Street Name", + "blacktown_nsw_gov_au_street_number": "Blacktown Nsw Gov Au Street Number", + "blacktown_nsw_gov_au_suburb": "Blacktown Nsw Gov Au Suburb", + "bmv_at_hausnummer": "Bmv At Hausnummer", + "bmv_at_ort": "Bmv At Ort", + "bmv_at_self": "Bmv At Self", + "bmv_at_strasse": "Bmv At Strasse", + "bracknell_forest_gov_uk_house_number": "Bracknell Forest Gov Uk House Number", + "bracknell_forest_gov_uk_post_code": "Bracknell Forest Gov Uk Post Code", + "bracknell_forest_gov_uk_self": "Bracknell Forest Gov Uk Self", + "bradford_gov_uk_self": "Bradford Gov Uk Self", + "bradford_gov_uk_uprn": "Bradford Gov Uk Uprn", + "braintree_gov_uk_house_number": "Braintree Gov Uk House Number", + "braintree_gov_uk_post_code": "Braintree Gov Uk Post Code", + "braintree_gov_uk_self": "Braintree Gov Uk Self", + "breckland_gov_uk_address": "Breckland Gov Uk Address", + "breckland_gov_uk_postcode": "Breckland Gov Uk Postcode", + "breckland_gov_uk_self": "Breckland Gov Uk Self", + "breckland_gov_uk_uprn": "Breckland Gov Uk Uprn", + "brisbane_qld_gov_au_self": "Brisbane Qld Gov Au Self", + "brisbane_qld_gov_au_street_name": "Brisbane Qld Gov Au Street Name", + "brisbane_qld_gov_au_street_number": "Brisbane Qld Gov Au Street Number", + "brisbane_qld_gov_au_suburb": "Brisbane Qld Gov Au Suburb", + "bristol_gov_uk_self": "Bristol Gov Uk Self", + "bristol_gov_uk_uprn": "Bristol Gov Uk Uprn", + "bromley_gov_uk_property": "Bromley Gov Uk Property", + "bromley_gov_uk_self": "Bromley Gov Uk Self", + "bromsgrove_gov_uk_postcode": "Bromsgrove Gov Uk Postcode", + "bromsgrove_gov_uk_self": "Bromsgrove Gov Uk Self", + "bromsgrove_gov_uk_uprn": "Bromsgrove Gov Uk Uprn", + "broxbourne_gov_uk_postcode": "Broxbourne Gov Uk Postcode", + "broxbourne_gov_uk_self": "Broxbourne Gov Uk Self", + "broxbourne_gov_uk_uprn": "Broxbourne Gov Uk Uprn", + "broxtowe_gov_uk_postcode": "Broxtowe Gov Uk Postcode", + "broxtowe_gov_uk_self": "Broxtowe Gov Uk Self", + "broxtowe_gov_uk_uprn": "Broxtowe Gov Uk Uprn", + "bsr_de_abf_hausnr": "Bsr De Abf Hausnr", + "bsr_de_abf_strasse": "Bsr De Abf Strasse", + "bsr_de_self": "Bsr De Self", + "buergerportal_de_district": "Buergerportal De District", + "buergerportal_de_number": "Buergerportal De Number", + "buergerportal_de_operator": "Buergerportal De Operator", + "buergerportal_de_self": "Buergerportal De Self", + "buergerportal_de_show_volume": "Buergerportal De Show Volume", + "buergerportal_de_street": "Buergerportal De Street", + "buergerportal_de_subdistrict": "Buergerportal De Subdistrict", + "burnley_gov_uk_self": "Burnley Gov Uk Self", + "burnley_gov_uk_uprn": "Burnley Gov Uk Uprn", + "bury_gov_uk_address": "Bury Gov Uk Address", + "bury_gov_uk_id": "Bury Gov Uk Id", + "bury_gov_uk_postcode": "Bury Gov Uk Postcode", + "bury_gov_uk_self": "Bury Gov Uk Self", + "c_trace_de_abfall": "C Trace De Abfall", + "c_trace_de_gemeinde": "Municipality", + "c_trace_de_hausnummer": "House number", + "c_trace_de_ort": "District", + "c_trace_de_ortsteil": "Subdistrict", + "c_trace_de_self": "C Trace De Self", + "c_trace_de_service": "Operator", + "c_trace_de_strasse": "Street", "calendar_title": "Calendar Title", - "city": "City", - "city_id": "City ID", - "client": "Client", - "community": "Community", - "company": "Company", - "council": "Council", - "county_id": "County ID", - "cp": "cp", - "customer": "Customer", - "district": "District", - "district_id": "District ID", - "door_num": "Door Number", - "email": "Email", - "f_abfallarten": "f_abfallarten", - "f_id_bezirk": "f_id_bezirk", - "f_id_kommune": "f_id_kommune", - "f_id_location": "f_id_location", - "f_id_strasse": "f_id_strasse", - "f_id_strasse_hnr": "f_id_strasse_hnr", - "file": "File Name", - "gelb_rhythm": "gelb_rhythm", - "gemeinde": "gemeinde", - "geolocation_id": "geolocation_id", - "gnumber": "gnumber", - "hausnr": "hausnr", - "hausnummer": "Haus Nummer", - "hnId": "hnId", - "hnr": "hnr", - "hnr_zusatz": "hnr_zusatz", - "house": "House", - "houseID": "House ID", - "houseNo": "House Number", - "house_letter": "House Letter", - "house_name": "House Name", - "house_number": "House Number", - "housenameornumber": "House Name or Number", - "housenumber": "House Number", - "housenumberorname": "House Number or Name", - "hpid": "HPID", - "husnummer": "Husnummer", - "id": "ID", - "key": "Key", - "kommune": "Kommune", - "level_1": "Level 1", - "level_2": "Level 2", - "level_3": "Level 3", - "llpgid": "llpgid", - "location": "Location", - "location_id": "Location ID", - "municipality": "Municipality", - "municipality_id": "Municipality ID", - "method": "Method", - "mm_frm_hnr_sel": "mm_frm_hnr_sel", - "mm_frm_ort_sel": "mm_frm_ort_sel", - "mm_frm_str_sel": "mm_frm_str_sel", - "name": "Name", - "name_number": "Name Number", - "nummer": "Nummer", - "objectID": "Object ID", - "object_number": "Object Number", - "operator": "Operator", - "offset": "Offset", - "ort": "Ort", - "ortsgemeinde": "Ortsgemeinde", - "ortsteil": "Ortsteil", - "papier_rhythm": "papier_rhythm", - "params": "Parameters", - "password": "Password", - "pid": "PID", - "plz": "plz", - "pois": "Pois", - "post_code": "Postcode", - "postcode": "Postcode", - "postal_code": "Postcode", - "predict": "Predict", - "prem_code": "Premises Code", - "premises_id": "Premises ID", - "project_id": "Project ID", - "property": "Property", - "propertyID": "Property ID", - "property_id": "Property ID", - "property_location": "Property Location", - "realmid": "Realm ID", - "record_id": "Record ID", - "region": "Region", - "regex": "Regex", - "rest_rhythm": "rest_rhythm", - "road": "Road", - "road_name": "Road Name", - "service": "Service", - "service_id": "Service ID", - "show_volume": "Show Volume", - "showmobile": "showmobile", - "snumber": "snumber", - "split_at": "Split At", - "split_suburb": "Split Suburb", - "stadt": "Stadt", - "stadtteil": "Stadtteil", - "standort": "Standort", - "state": "State", - "street": "Street", - "streetId": "Street ID", - "streetIndex": "Street Index", - "streetName": "Street Name", - "street_address": "Street Address", - "street_code": "Street Code", - "street_id": "Street ID", - "street_name": "Street Name", - "street_number": "Street Number", - "street_town": "Street Town", - "streetnr": "streetnr", - "subdistrict": "Subdistrict", - "subdomain": "Subdomain", - "suburb": "Suburb", - "teilgebiet": "teilgebiet", - "title_template": "Title Template", - "town": "Town", - "turnus": "turnus", - "types": "Types", - "unit_number": "Unit Number", - "uprn": "UPRN", - "url": "URL", - "username": "Username", - "usrn": "USRN", - "village": "Village", - "version": "Version", - "verify_ssl": "Verify SSL", - "waste_district": "Waste District", - "waste_object_ids": "Waste Object IDs", - "xmlurl": "XML URL", - "zip_code": "Zipcode", - "zipcode": "Zipcode", - "zone": "Zone", - "zone_id": "Zone ID", - "zusatz": "Zusatz", - "p_collect_cycle": "P Collect Cycle", - "lat": "Lat", - "calendar_splitter": "Calendar Splitter", - "number": "Number", - "lon": "Lon", - "ladeort": "Ladeort", - "r_collect_cycle": "R Collect Cycle", - "ignored_containers": "Ignored Containers", - "zoneID": "Zone Id", - "api_key": "Api Key", - "suffix": "Suffix", - "auto_suffix": "Auto Suffix", - "show_nights": "Show Nights", - "city_part": "City Part", - "calendar_title_separator": "Calendar Title Separator", - "radius": "Radius", - "only_monitored": "Only Monitored", - "municipal": "Municipal", - "app_id": "App Id", - "landkreis": "Landkreis", - "self": "Self", - "route": "Route", - "bundesland": "Bundesland", - "entry_id": "Entry Id", - "address_id": "Address Id", - "_": "", - "include_ordered_pickup_entries": "Include Ordered Pickup Entries", - "b_collect_cycle": "B Collect Cycle", - "sector": "Sector", - "phone": "Phone", - "strasse": "Strasse", - "year_field": "Year Field", - "weekdays": "Weekdays", - "dates": "Dates", - "type": "Type", - "until": "Until", - "excludes": "Excludes", - "frequency": "Frequency", - "headers": "Headers", - "start": "Start", - "count": "Count", - "interval": "Interval", - "bill_number": "Bill Number", - "values": "Values", - "property_no": "Property No", - "postCode": "Post Code", - "zipCode": "Zip Code", - "garden_cutomer": "Garden Cutomer", - "app": "App", - "service_provider": "Service Provider", - "facility_id": "Facility Id", - "abfall": "Abfall", - "english": "English", - "voivodeship": "Voivodeship", - "building_id": "Building Id", - "addressNo": "Address No", - "territory": "Territory", - "addition": "Addition", - "commune": "Commune" + "calgary_ca_self": "Calgary Ca Self", + "calgary_ca_street_address": "Calgary Ca Street Address", + "cambridge_gov_uk_number": "Cambridge Gov Uk Number", + "cambridge_gov_uk_post_code": "Cambridge Gov Uk Post Code", + "cambridge_gov_uk_self": "Cambridge Gov Uk Self", + "camden_gov_uk_self": "Camden Gov Uk Self", + "camden_gov_uk_uprn": "Camden Gov Uk Uprn", + "campbelltown_nsw_gov_au_post_code": "Campbelltown Nsw Gov Au Post Code", + "campbelltown_nsw_gov_au_self": "Campbelltown Nsw Gov Au Self", + "campbelltown_nsw_gov_au_street_name": "Campbelltown Nsw Gov Au Street Name", + "campbelltown_nsw_gov_au_street_number": "Campbelltown Nsw Gov Au Street Number", + "campbelltown_nsw_gov_au_suburb": "Campbelltown Nsw Gov Au Suburb", + "canadabay_nsw_gov_au_self": "Canadabay Nsw Gov Au Self", + "canadabay_nsw_gov_au_street_name": "Canadabay Nsw Gov Au Street Name", + "canadabay_nsw_gov_au_street_number": "Canadabay Nsw Gov Au Street Number", + "canadabay_nsw_gov_au_suburb": "Canadabay Nsw Gov Au Suburb", + "canterbury_gov_uk_number": "Canterbury Gov Uk Number", + "canterbury_gov_uk_post_code": "Canterbury Gov Uk Post Code", + "canterbury_gov_uk_self": "Canterbury Gov Uk Self", + "cardiff_gov_uk_self": "Cardiff Gov Uk Self", + "cardiff_gov_uk_uprn": "Cardiff Gov Uk Uprn", + "cardinia_vic_gov_au_address": "Cardinia Vic Gov Au Address", + "cardinia_vic_gov_au_self": "Cardinia Vic Gov Au Self", + "ccc_govt_nz_address": "Ccc Govt Nz Address", + "ccc_govt_nz_self": "Ccc Govt Nz Self", + "ceb_coburg_de_self": "Ceb Coburg De Self", + "ceb_coburg_de_street": "Ceb Coburg De Street", + "cederbaum_de_self": "Cederbaum De Self", + "cederbaum_de_street": "Cederbaum De Street", + "centralbedfordshire_gov_uk_house_name": "Centralbedfordshire Gov Uk House Name", + "centralbedfordshire_gov_uk_postcode": "Centralbedfordshire Gov Uk Postcode", + "centralbedfordshire_gov_uk_self": "Centralbedfordshire Gov Uk Self", + "charnwood_gov_uk_address": "Charnwood Gov Uk Address", + "charnwood_gov_uk_self": "Charnwood Gov Uk Self", + "cherwell_gov_uk_self": "Cherwell Gov Uk Self", + "cherwell_gov_uk_uprn": "Cherwell Gov Uk Uprn", + "cheshire_east_gov_uk_name_number": "Cheshire East Gov Uk Name Number", + "cheshire_east_gov_uk_postcode": "Cheshire East Gov Uk Postcode", + "cheshire_east_gov_uk_self": "Cheshire East Gov Uk Self", + "cheshire_east_gov_uk_uprn": "Cheshire East Gov Uk Uprn", + "cheshire_west_and_chester_gov_uk_self": "Cheshire West And Chester Gov Uk Self", + "cheshire_west_and_chester_gov_uk_uprn": "Cheshire West And Chester Gov Uk Uprn", + "chesterfield_gov_uk_self": "Chesterfield Gov Uk Self", + "chesterfield_gov_uk_uprn": "Chesterfield Gov Uk Uprn", + "chichester_gov_uk_self": "Chichester Gov Uk Self", + "chichester_gov_uk_uprn": "Chichester Gov Uk Uprn", + "chiemgau_recycling_lk_rosenheim_district": "Chiemgau Recycling Lk Rosenheim District", + "chiemgau_recycling_lk_rosenheim_self": "Chiemgau Recycling Lk Rosenheim Self", + "chiltern_gov_uk_self": "Chiltern Gov Uk Self", + "chiltern_gov_uk_uprn": "Chiltern Gov Uk Uprn", + "cidiu_it_city": "Cidiu It City", + "cidiu_it_self": "Cidiu It Self", + "cidiu_it_street": "Cidiu It Street", + "cidiu_it_street_number": "Cidiu It Street Number", + "circulus_nl_house_number": "Circulus Nl House Number", + "circulus_nl_postal_code": "Circulus Nl Postal Code", + "circulus_nl_self": "Circulus Nl Self", + "citiesapps_com_calendar": "Citiesapps Com Calendar", + "citiesapps_com_city": "Citiesapps Com City", + "citiesapps_com_email": "Citiesapps Com Email", + "citiesapps_com_password": "Citiesapps Com Password", + "citiesapps_com_phone": "Citiesapps Com Phone", + "citiesapps_com_self": "Citiesapps Com Self", + "cmcitymedia_de_district": "Cmcitymedia De District", + "cmcitymedia_de_hpid": "Cmcitymedia De Hpid", + "cmcitymedia_de_realmid": "Cmcitymedia De Realmid", + "cmcitymedia_de_self": "Cmcitymedia De Self", + "cockburn_wa_gov_au_address": "Cockburn Wa Gov Au Address", + "cockburn_wa_gov_au_property_no": "Cockburn Wa Gov Au Property No", + "cockburn_wa_gov_au_self": "Cockburn Wa Gov Au Self", + "colchester_gov_uk_llpgid": "Colchester Gov Uk Llpgid", + "colchester_gov_uk_self": "Colchester Gov Uk Self", + "conwy_gov_uk_self": "Conwy Gov Uk Self", + "conwy_gov_uk_uprn": "Conwy Gov Uk Uprn", + "cornwall_gov_uk_housenumberorname": "Cornwall Gov Uk Housenumberorname", + "cornwall_gov_uk_postcode": "Cornwall Gov Uk Postcode", + "cornwall_gov_uk_self": "Cornwall Gov Uk Self", + "cornwall_gov_uk_uprn": "Cornwall Gov Uk Uprn", + "crawley_gov_uk_self": "Crawley Gov Uk Self", + "crawley_gov_uk_uprn": "Crawley Gov Uk Uprn", + "crawley_gov_uk_usrn": "Crawley Gov Uk Usrn", + "croydon_gov_uk_houseID": "Croydon Gov Uk House Id", + "croydon_gov_uk_postcode": "Croydon Gov Uk Postcode", + "croydon_gov_uk_self": "Croydon Gov Uk Self", + "cumberland_nsw_gov_au_self": "Cumberland Nsw Gov Au Self", + "cumberland_nsw_gov_au_street_name": "Cumberland Nsw Gov Au Street Name", + "cumberland_nsw_gov_au_street_number": "Cumberland Nsw Gov Au Street Number", + "cumberland_nsw_gov_au_suburb": "Cumberland Nsw Gov Au Suburb", + "darebin_vic_gov_au_property_location": "Darebin Vic Gov Au Property Location", + "darebin_vic_gov_au_self": "Darebin Vic Gov Au Self", + "darlington_gov_uk_self": "Darlington Gov Uk Self", + "darlington_gov_uk_uprn": "Darlington Gov Uk Uprn", + "data_umweltprofis_at_self": "Data Umweltprofis At Self", + "data_umweltprofis_at_url": "Data Umweltprofis At Url", + "data_umweltprofis_at_xmlurl": "Data Umweltprofis At Xmlurl", + "denbighshire_gov_uk_self": "Denbighshire Gov Uk Self", + "denbighshire_gov_uk_uprn": "Denbighshire Gov Uk Uprn", + "derby_gov_uk_house_number": "Derby Gov Uk House Number", + "derby_gov_uk_post_code": "Derby Gov Uk Post Code", + "derby_gov_uk_premises_id": "Derby Gov Uk Premises Id", + "derby_gov_uk_self": "Derby Gov Uk Self", + "dillingen_saar_de_self": "Dillingen Saar De Self", + "dillingen_saar_de_street": "Dillingen Saar De Street", + "doncaster_gov_uk_self": "Doncaster Gov Uk Self", + "doncaster_gov_uk_uprn": "Doncaster Gov Uk Uprn", + "dover_gov_uk_self": "Dover Gov Uk Self", + "dover_gov_uk_uprn": "Dover Gov Uk Uprn", + "dudley_gov_uk_self": "Dudley Gov Uk Self", + "dudley_gov_uk_uprn": "Dudley Gov Uk Uprn", + "dunedin_govt_nz_address": "Dunedin Govt Nz Address", + "dunedin_govt_nz_self": "Dunedin Govt Nz Self", + "durham_gov_uk_self": "Durham Gov Uk Self", + "durham_gov_uk_uprn": "Durham Gov Uk Uprn", + "ead_darmstadt_de_self": "Ead Darmstadt De Self", + "ead_darmstadt_de_street": "Ead Darmstadt De Street", + "east_ayrshire_gov_uk_self": "East Ayrshire Gov Uk Self", + "east_ayrshire_gov_uk_uprn": "East Ayrshire Gov Uk Uprn", + "east_northamptonshire_gov_uk_self": "East Northamptonshire Gov Uk Self", + "east_northamptonshire_gov_uk_uprn": "East Northamptonshire Gov Uk Uprn", + "east_renfrewshire_gov_uk_postcode": "East Renfrewshire Gov Uk Postcode", + "east_renfrewshire_gov_uk_self": "East Renfrewshire Gov Uk Self", + "east_renfrewshire_gov_uk_uprn": "East Renfrewshire Gov Uk Uprn", + "eastcambs_gov_uk_self": "Eastcambs Gov Uk Self", + "eastcambs_gov_uk_uprn": "Eastcambs Gov Uk Uprn", + "eastdevon_gov_uk_self": "Eastdevon Gov Uk Self", + "eastdevon_gov_uk_uprn": "Eastdevon Gov Uk Uprn", + "eastherts_gov_uk_address_name_number": "Eastherts Gov Uk Address Name Number", + "eastherts_gov_uk_address_name_numer": "Eastherts Gov Uk Address Name Numer", + "eastherts_gov_uk_address_postcode": "Eastherts Gov Uk Address Postcode", + "eastherts_gov_uk_address_street": "Eastherts Gov Uk Address Street", + "eastherts_gov_uk_self": "Eastherts Gov Uk Self", + "eastherts_gov_uk_street_town": "Eastherts Gov Uk Street Town", + "eastleigh_gov_uk_self": "Eastleigh Gov Uk Self", + "eastleigh_gov_uk_uprn": "Eastleigh Gov Uk Uprn", + "eastlothian_gov_uk_address": "Eastlothian Gov Uk Address", + "eastlothian_gov_uk_address_id": "Eastlothian Gov Uk Address Id", + "eastlothian_gov_uk_postcode": "Eastlothian Gov Uk Postcode", + "eastlothian_gov_uk_self": "Eastlothian Gov Uk Self", + "eastriding_gov_uk_postcode": "Eastriding Gov Uk Postcode", + "eastriding_gov_uk_self": "Eastriding Gov Uk Self", + "eastriding_gov_uk_uprn": "Eastriding Gov Uk Uprn", + "ecoharmonogram_pl_additional_sides_matcher": "Ecoharmonogram Pl Additional Sides Matcher", + "ecoharmonogram_pl_app": "Ecoharmonogram Pl App", + "ecoharmonogram_pl_community": "Ecoharmonogram Pl Community", + "ecoharmonogram_pl_district": "Ecoharmonogram Pl District", + "ecoharmonogram_pl_house_number": "Ecoharmonogram Pl House Number", + "ecoharmonogram_pl_self": "Ecoharmonogram Pl Self", + "ecoharmonogram_pl_street": "Ecoharmonogram Pl Street", + "ecoharmonogram_pl_town": "Ecoharmonogram Pl Town", + "edlitz_at__": "Edlitz At", + "edlitz_at_self": "Edlitz At Self", + "edpevent_se_self": "Edpevent Se Self", + "edpevent_se_service_provider": "Edpevent Se Service Provider", + "edpevent_se_street_address": "Edpevent Se Street Address", + "edpevent_se_url": "Edpevent Se Url", + "egn_abfallkalender_de_city": "Egn Abfallkalender De City", + "egn_abfallkalender_de_district": "Egn Abfallkalender De District", + "egn_abfallkalender_de_housenumber": "Egn Abfallkalender De Housenumber", + "egn_abfallkalender_de_self": "Egn Abfallkalender De Self", + "egn_abfallkalender_de_street": "Egn Abfallkalender De Street", + "eigenbetrieb_abfallwirtschaft_de_city": "Eigenbetrieb Abfallwirtschaft De City", + "eigenbetrieb_abfallwirtschaft_de_self": "Eigenbetrieb Abfallwirtschaft De Self", + "eigenbetrieb_abfallwirtschaft_de_street": "Eigenbetrieb Abfallwirtschaft De Street", + "ekosystem_wroc_pl_location_id": "Ekosystem Wroc Pl Location Id", + "ekosystem_wroc_pl_self": "Ekosystem Wroc Pl Self", + "elmbridge_gov_uk_self": "Elmbridge Gov Uk Self", + "elmbridge_gov_uk_uprn": "Elmbridge Gov Uk Uprn", + "environmentfirst_co_uk_name": "Environmentfirst Co Uk Name", + "environmentfirst_co_uk_number": "Environmentfirst Co Uk Number", + "environmentfirst_co_uk_post_code": "Environmentfirst Co Uk Post Code", + "environmentfirst_co_uk_self": "Environmentfirst Co Uk Self", + "environmentfirst_co_uk_uprn": "Environmentfirst Co Uk Uprn", + "erlangen_hoechstadt_de_city": "Erlangen Hoechstadt De City", + "erlangen_hoechstadt_de_self": "Erlangen Hoechstadt De Self", + "erlangen_hoechstadt_de_street": "Erlangen Hoechstadt De Street", + "esch_lu_self": "Esch Lu Self", + "esch_lu_zone": "Esch Lu Zone", + "eth_erd_hu_city": "Eth Erd Hu City", + "eth_erd_hu_house_number": "Eth Erd Hu House Number", + "eth_erd_hu_self": "Eth Erd Hu Self", + "eth_erd_hu_street": "Eth Erd Hu Street", + "exeter_gov_uk_self": "Exeter Gov Uk Self", + "exeter_gov_uk_uprn": "Exeter Gov Uk Uprn", + "fareham_gov_uk_postcode": "Fareham Gov Uk Postcode", + "fareham_gov_uk_road_name": "Fareham Gov Uk Road Name", + "fareham_gov_uk_self": "Fareham Gov Uk Self", + "fccenvironment_co_uk_region": "Fccenvironment Co Uk Region", + "fccenvironment_co_uk_self": "Fccenvironment Co Uk Self", + "fccenvironment_co_uk_uprn": "Fccenvironment Co Uk Uprn", + "fenland_gov_uk_house_number": "Fenland Gov Uk House Number", + "fenland_gov_uk_post_code": "Fenland Gov Uk Post Code", + "fenland_gov_uk_self": "Fenland Gov Uk Self", + "fife_gov_uk_self": "Fife Gov Uk Self", + "fife_gov_uk_uprn": "Fife Gov Uk Uprn", + "fkf_bo_hu_self": "Fkf Bo Hu Self", + "fkf_bo_hu_street": "Fkf Bo Hu Street", + "fkf_bp_hu_district": "Fkf Bp Hu District", + "fkf_bp_hu_house_number": "Fkf Bp Hu House Number", + "fkf_bp_hu_self": "Fkf Bp Hu Self", + "fkf_bp_hu_street": "Fkf Bp Hu Street", + "flintshire_gov_uk_self": "Flintshire Gov Uk Self", + "flintshire_gov_uk_uprn": "Flintshire Gov Uk Uprn", + "fosenrenovasjon_no_address": "Fosenrenovasjon No Address", + "fosenrenovasjon_no_self": "Fosenrenovasjon No Self", + "frankenberg_de_district": "Frankenberg De District", + "frankenberg_de_self": "Frankenberg De Self", + "frankenberg_de_street": "Frankenberg De Street", + "frankston_vic_gov_au_address": "Frankston Vic Gov Au Address", + "frankston_vic_gov_au_self": "Frankston Vic Gov Au Self", + "fylde_gov_uk_self": "Fylde Gov Uk Self", + "fylde_gov_uk_uprn": "Fylde Gov Uk Uprn", + "gastrikeatervinnare_se_city": "Gastrikeatervinnare Se City", + "gastrikeatervinnare_se_self": "Gastrikeatervinnare Se Self", + "gastrikeatervinnare_se_street": "Gastrikeatervinnare Se Street", + "gateshead_gov_uk_self": "Gateshead Gov Uk Self", + "gateshead_gov_uk_uprn": "Gateshead Gov Uk Uprn", + "geelongaustralia_com_au_address": "Geelongaustralia Com Au Address", + "geelongaustralia_com_au_self": "Geelongaustralia Com Au Self", + "geoport_nwm_de_district": "Geoport Nwm De District", + "geoport_nwm_de_self": "Geoport Nwm De Self", + "glasgow_gov_uk_self": "Glasgow Gov Uk Self", + "glasgow_gov_uk_uprn": "Glasgow Gov Uk Uprn", + "gmina_miekinia_pl_location_id": "Gmina Miekinia Pl Location Id", + "gmina_miekinia_pl_self": "Gmina Miekinia Pl Self", + "goldcoast_qld_gov_au_self": "Goldcoast Qld Gov Au Self", + "goldcoast_qld_gov_au_street_address": "Goldcoast Qld Gov Au Street Address", + "gotland_se_self": "Gotland Se Self", + "gotland_se_uprn": "Gotland Se Uprn", + "grafikai_svara_lt_district": "Grafikai Svara Lt District", + "grafikai_svara_lt_house_number": "Grafikai Svara Lt House Number", + "grafikai_svara_lt_region": "Grafikai Svara Lt Region", + "grafikai_svara_lt_self": "Grafikai Svara Lt Self", + "grafikai_svara_lt_street": "Grafikai Svara Lt Street", + "grafikai_svara_lt_waste_object_ids": "Grafikai Svara Lt Waste Object Ids", + "grosswangen_ch_self": "Grosswangen Ch Self", + "guildford_gov_uk_self": "Guildford Gov Uk Self", + "guildford_gov_uk_uprn": "Guildford Gov Uk Uprn", + "gwynedd_gov_uk_self": "Gwynedd Gov Uk Self", + "gwynedd_gov_uk_uprn": "Gwynedd Gov Uk Uprn", + "haringey_gov_uk_self": "Haringey Gov Uk Self", + "haringey_gov_uk_uprn": "Haringey Gov Uk Uprn", + "harlow_gov_uk_self": "Harlow Gov Uk Self", + "harlow_gov_uk_uprn": "Harlow Gov Uk Uprn", + "harrow_gov_uk_self": "Harrow Gov Uk Self", + "harrow_gov_uk_uprn": "Harrow Gov Uk Uprn", + "hart_gov_uk_self": "Hart Gov Uk Self", + "hart_gov_uk_uprn": "Hart Gov Uk Uprn", + "hausmuell_info_hausnummer": "House number", + "hausmuell_info_ort": "City", + "hausmuell_info_ortsteil": "District", + "hausmuell_info_self": "Hausmuell Info Self", + "hausmuell_info_strasse": "Street", + "hausmuell_info_subdomain": "Subdomain", + "hawkesbury_nsw_gov_au_houseNo": "Hawkesbury Nsw Gov Au House No", + "hawkesbury_nsw_gov_au_postCode": "Hawkesbury Nsw Gov Au Post Code", + "hawkesbury_nsw_gov_au_self": "Hawkesbury Nsw Gov Au Self", + "hawkesbury_nsw_gov_au_street": "Hawkesbury Nsw Gov Au Street", + "hawkesbury_nsw_gov_au_suburb": "Hawkesbury Nsw Gov Au Suburb", + "hcc_govt_nz_address": "Hcc Govt Nz Address", + "hcc_govt_nz_self": "Hcc Govt Nz Self", + "heilbronn_de_hausnr": "House number", + "heilbronn_de_plz": "Zip Code", + "heilbronn_de_self": "Heilbronn De Self", + "heilbronn_de_strasse": "Street", + "herefordshire_gov_uk_number": "Herefordshire Gov Uk Number", + "herefordshire_gov_uk_post_code": "Herefordshire Gov Uk Post Code", + "herefordshire_gov_uk_self": "Herefordshire Gov Uk Self", + "highland_gov_uk_predict": "Highland Gov Uk Predict", + "highland_gov_uk_self": "Highland Gov Uk Self", + "highland_gov_uk_uprn": "Highland Gov Uk Uprn", + "highpeak_gov_uk_postcode": "Highpeak Gov Uk Postcode", + "highpeak_gov_uk_self": "Highpeak Gov Uk Self", + "highpeak_gov_uk_uprn": "Highpeak Gov Uk Uprn", + "hobsonsbay_vic_gov_au_self": "Hobsonsbay Vic Gov Au Self", + "hobsonsbay_vic_gov_au_street_address": "Hobsonsbay Vic Gov Au Street Address", + "hornsby_nsw_gov_au_property_id": "Hornsby Nsw Gov Au Property Id", + "hornsby_nsw_gov_au_self": "Hornsby Nsw Gov Au Self", + "hornsby_nsw_gov_au_show_nights": "Hornsby Nsw Gov Au Show Nights", + "horowhenua_govt_nz_post_code": "Horowhenua Govt Nz Post Code", + "horowhenua_govt_nz_self": "Horowhenua Govt Nz Self", + "horowhenua_govt_nz_street_name": "Horowhenua Govt Nz Street Name", + "horowhenua_govt_nz_street_number": "Horowhenua Govt Nz Street Number", + "horowhenua_govt_nz_town": "Horowhenua Govt Nz Town", + "horsham_gov_uk_self": "Horsham Gov Uk Self", + "horsham_gov_uk_uprn": "Horsham Gov Uk Uprn", + "hounslow_gov_uk_self": "Hounslow Gov Uk Self", + "hounslow_gov_uk_uprn": "Hounslow Gov Uk Uprn", + "hull_gov_uk_self": "Hull Gov Uk Self", + "hull_gov_uk_uprn": "Hull Gov Uk Uprn", + "hume_vic_gov_au_address": "Hume Vic Gov Au Address", + "hume_vic_gov_au_predict": "Hume Vic Gov Au Predict", + "hume_vic_gov_au_self": "Hume Vic Gov Au Self", + "huntingdonshire_gov_uk_self": "Huntingdonshire Gov Uk Self", + "huntingdonshire_gov_uk_uprn": "Huntingdonshire Gov Uk Uprn", + "hvcgroep_nl_house_letter": "Hvcgroep Nl House Letter", + "hvcgroep_nl_house_number": "Hvcgroep Nl House Number", + "hvcgroep_nl_postal_code": "Hvcgroep Nl Postal Code", + "hvcgroep_nl_self": "Hvcgroep Nl Self", + "hvcgroep_nl_service": "Hvcgroep Nl Service", + "hvcgroep_nl_suffix": "Hvcgroep Nl Suffix", + "hygea_be_cp": "Hygea Be Cp", + "hygea_be_self": "Hygea Be Self", + "hygea_be_streetIndex": "Hygea Be Street Index", + "iapp_itouchvision_com_municipality": "Iapp Itouchvision Com Municipality", + "iapp_itouchvision_com_self": "Iapp Itouchvision Com Self", + "iapp_itouchvision_com_uprn": "Iapp Itouchvision Com Uprn", + "ics_file": "Ics File", + "ics_headers": "Ics Headers", + "ics_method": "Ics Method", + "ics_offset": "Ics Offset", + "ics_params": "Ics Params", + "ics_regex": "Ics Regex", + "ics_self": "Ics Self", + "ics_split_at": "Ics Split At", + "ics_title_template": "Ics Title Template", + "ics_url": "Ics Url", + "ics_verify_ssl": "Ics Verify Ssl", + "ics_version": "Ics Version", + "ics_year_field": "Ics Year Field", + "ilrifiutologo_it_house_number": "Ilrifiutologo It House Number", + "ilrifiutologo_it_self": "Ilrifiutologo It Self", + "ilrifiutologo_it_street": "Ilrifiutologo It Street", + "ilrifiutologo_it_town": "Ilrifiutologo It Town", + "impactapps_com_au_property_id": "Impactapps Com Au Property Id", + "impactapps_com_au_self": "Impactapps Com Au Self", + "impactapps_com_au_service": "Impactapps Com Au Service", + "impactapps_com_au_street_name": "Impactapps Com Au Street Name", + "impactapps_com_au_street_number": "Impactapps Com Au Street Number", + "impactapps_com_au_suburb": "Impactapps Com Au Suburb", + "infeo_at_city": "Infeo At City", + "infeo_at_customer": "Infeo At Customer", + "infeo_at_housenumber": "Infeo At Housenumber", + "infeo_at_self": "Infeo At Self", + "infeo_at_street": "Infeo At Street", + "infeo_at_zone": "Infeo At Zone", + "innerwest_nsw_gov_au_self": "Innerwest Nsw Gov Au Self", + "innerwest_nsw_gov_au_street_name": "Innerwest Nsw Gov Au Street Name", + "innerwest_nsw_gov_au_street_number": "Innerwest Nsw Gov Au Street Number", + "innerwest_nsw_gov_au_suburb": "Innerwest Nsw Gov Au Suburb", + "insert_it_de_hnr": "Insert It De Hnr", + "insert_it_de_location_id": "Insert It De Location Id", + "insert_it_de_municipality": "Insert It De Municipality", + "insert_it_de_self": "Insert It De Self", + "insert_it_de_street": "Insert It De Street", + "ipswich_qld_gov_au_self": "Ipswich Qld Gov Au Self", + "ipswich_qld_gov_au_street": "Ipswich Qld Gov Au Street", + "ipswich_qld_gov_au_suburb": "Ipswich Qld Gov Au Suburb", + "iris_salten_no_address": "Iris Salten No Address", + "iris_salten_no_kommune": "Iris Salten No Kommune", + "iris_salten_no_self": "Iris Salten No Self", + "islington_gov_uk_self": "Islington Gov Uk Self", + "islington_gov_uk_uprn": "Islington Gov Uk Uprn", + "isontinambiente_it_address_id": "Isontinambiente It Address Id", + "isontinambiente_it_self": "Isontinambiente It Self", + "iweb_itouchvision_com_council": "Iweb Itouchvision Com Council", + "iweb_itouchvision_com_postcode": "Iweb Itouchvision Com Postcode", + "iweb_itouchvision_com_self": "Iweb Itouchvision Com Self", + "iweb_itouchvision_com_uprn": "Iweb Itouchvision Com Uprn", + "jointwastesolutions_org_borough": "Jointwastesolutions Org Borough", + "jointwastesolutions_org_house": "Jointwastesolutions Org House", + "jointwastesolutions_org_postcode": "Jointwastesolutions Org Postcode", + "jointwastesolutions_org_self": "Jointwastesolutions Org Self", + "jumomind_de_area_id": "Jumomind De Area Id", + "jumomind_de_city": "Jumomind De City", + "jumomind_de_city_id": "Jumomind De City Id", + "jumomind_de_house_number": "Jumomind De House Number", + "jumomind_de_self": "Jumomind De Self", + "jumomind_de_service_id": "Jumomind De Service Id", + "jumomind_de_street": "Jumomind De Street", + "juneavfall_se_self": "Juneavfall Se Self", + "juneavfall_se_street_address": "Juneavfall Se Street Address", + "kaev_niederlausitz_abf_suche": "Kaev Niederlausitz Abf Suche", + "kaev_niederlausitz_self": "Kaev Niederlausitz Self", + "karlsruhe_de_hnr": "House number", + "karlsruhe_de_ladeort": "Loading point", + "karlsruhe_de_self": "Karlsruhe De Self", + "karlsruhe_de_street": "Street", + "kiertokapula_fi_bill_number": "Kiertokapula Fi Bill Number", + "kiertokapula_fi_password": "Kiertokapula Fi Password", + "kiertokapula_fi_self": "Kiertokapula Fi Self", + "kingston_gov_uk_self": "Kingston Gov Uk Self", + "kingston_gov_uk_uprn": "Kingston Gov Uk Uprn", + "kingston_vic_gov_au_post_code": "Kingston Vic Gov Au Post Code", + "kingston_vic_gov_au_self": "Kingston Vic Gov Au Self", + "kingston_vic_gov_au_street_name": "Kingston Vic Gov Au Street Name", + "kingston_vic_gov_au_street_number": "Kingston Vic Gov Au Street Number", + "kingston_vic_gov_au_suburb": "Kingston Vic Gov Au Suburb", + "kirklees_gov_uk_door_num": "Kirklees Gov Uk Door Num", + "kirklees_gov_uk_postcode": "Kirklees Gov Uk Postcode", + "kirklees_gov_uk_self": "Kirklees Gov Uk Self", + "kirklees_gov_uk_uprn": "Kirklees Gov Uk Uprn", + "knox_vic_gov_au_self": "Knox Vic Gov Au Self", + "knox_vic_gov_au_street_address": "Knox Vic Gov Au Street Address", + "koeniz_ch_district": "Koeniz Ch District", + "koeniz_ch_municipality": "Koeniz Ch Municipality", + "koeniz_ch_self": "Koeniz Ch Self", + "korneuburg_stadtservice_at_self": "Korneuburg Stadtservice At Self", + "korneuburg_stadtservice_at_street_name": "Korneuburg Stadtservice At Street Name", + "korneuburg_stadtservice_at_street_number": "Korneuburg Stadtservice At Street Number", + "korneuburg_stadtservice_at_teilgebiet": "Korneuburg Stadtservice At Teilgebiet", + "ks_boerde_de_house_number": "Ks Boerde De House Number", + "ks_boerde_de_self": "Ks Boerde De Self", + "ks_boerde_de_street": "Ks Boerde De Street", + "ks_boerde_de_village": "Ks Boerde De Village", + "kuringgai_nsw_gov_au_post_code": "Kuringgai Nsw Gov Au Post Code", + "kuringgai_nsw_gov_au_self": "Kuringgai Nsw Gov Au Self", + "kuringgai_nsw_gov_au_street_name": "Kuringgai Nsw Gov Au Street Name", + "kuringgai_nsw_gov_au_street_number": "Kuringgai Nsw Gov Au Street Number", + "kuringgai_nsw_gov_au_suburb": "Kuringgai Nsw Gov Au Suburb", + "kwb_goslar_de_pois": "POIS", + "kwb_goslar_de_self": "Kwb Goslar De Self", + "kwu_de_city": "Kwu De City", + "kwu_de_number": "Kwu De Number", + "kwu_de_self": "Kwu De Self", + "kwu_de_street": "Kwu De Street", + "lakemac_nsw_gov_au_address": "Lakemac Nsw Gov Au Address", + "lakemac_nsw_gov_au_self": "Lakemac Nsw Gov Au Self", + "lancaster_gov_uk_house_number": "Lancaster Gov Uk House Number", + "lancaster_gov_uk_postcode": "Lancaster Gov Uk Postcode", + "lancaster_gov_uk_self": "Lancaster Gov Uk Self", + "landkreis_kusel_de_ortsgemeinde": "Landkreis Kusel De Ortsgemeinde", + "landkreis_kusel_de_self": "Landkreis Kusel De Self", + "landkreis_rhoen_grabfeld_city": "Landkreis Rhoen Grabfeld City", + "landkreis_rhoen_grabfeld_district": "Landkreis Rhoen Grabfeld District", + "landkreis_rhoen_grabfeld_self": "Landkreis Rhoen Grabfeld Self", + "landkreis_wittmund_de_city": "Landkreis Wittmund De City", + "landkreis_wittmund_de_self": "Landkreis Wittmund De Self", + "landkreis_wittmund_de_street": "Landkreis Wittmund De Street", + "lbbd_gov_uk_self": "Lbbd Gov Uk Self", + "lbbd_gov_uk_uprn": "Lbbd Gov Uk Uprn", + "lerum_se_self": "Lerum Se Self", + "lerum_se_street_address": "Lerum Se Street Address", + "lewisham_gov_uk_name": "Lewisham Gov Uk Name", + "lewisham_gov_uk_number": "Lewisham Gov Uk Number", + "lewisham_gov_uk_post_code": "Lewisham Gov Uk Post Code", + "lewisham_gov_uk_self": "Lewisham Gov Uk Self", + "lewisham_gov_uk_uprn": "Lewisham Gov Uk Uprn", + "lichfielddc_gov_uk_self": "Lichfielddc Gov Uk Self", + "lichfielddc_gov_uk_uprn": "Lichfielddc Gov Uk Uprn", + "lincoln_gov_uk_postcode": "Lincoln Gov Uk Postcode", + "lincoln_gov_uk_self": "Lincoln Gov Uk Self", + "lincoln_gov_uk_uprn": "Lincoln Gov Uk Uprn", + "lindau_ch_city": "Lindau Ch City", + "lindau_ch_self": "Lindau Ch Self", + "lisburn_castlereagh_gov_uk_house_number": "Lisburn Castlereagh Gov Uk House Number", + "lisburn_castlereagh_gov_uk_postcode": "Lisburn Castlereagh Gov Uk Postcode", + "lisburn_castlereagh_gov_uk_property_id": "Lisburn Castlereagh Gov Uk Property Id", + "lisburn_castlereagh_gov_uk_self": "Lisburn Castlereagh Gov Uk Self", + "liverpool_gov_uk_name_number": "Liverpool Gov Uk Name Number", + "liverpool_gov_uk_postcode": "Liverpool Gov Uk Postcode", + "liverpool_gov_uk_self": "Liverpool Gov Uk Self", + "liverpool_gov_uk_uprn": "Liverpool Gov Uk Uprn", + "lobbe_app_city": "Lobbe App City", + "lobbe_app_self": "Lobbe App Self", + "lobbe_app_state": "Lobbe App State", + "lobbe_app_street": "Lobbe App Street", + "logan_qld_gov_au_property_location": "Logan Qld Gov Au Property Location", + "logan_qld_gov_au_self": "Logan Qld Gov Au Self", + "lrasha_de_location": "Lrasha De Location", + "lrasha_de_self": "Lrasha De Self", + "lsr_nu_self": "Lsr Nu Self", + "lsr_nu_street_address": "Lsr Nu Street Address", + "lumire_se_address": "Lumire Se Address", + "lumire_se_self": "Lumire Se Self", + "lund_se_self": "Lund Se Self", + "lund_se_street_address": "Lund Se Street Address", + "mags_de_number": "Mags De Number", + "mags_de_self": "Mags De Self", + "mags_de_street": "Mags De Street", + "mags_de_turnus": "Mags De Turnus", + "maidstone_gov_uk_self": "Maidstone Gov Uk Self", + "maidstone_gov_uk_uprn": "Maidstone Gov Uk Uprn", + "maldon_gov_uk_self": "Maldon Gov Uk Self", + "maldon_gov_uk_uprn": "Maldon Gov Uk Uprn", + "mamirolle_info__": "Mamirolle Info", + "mamirolle_info_self": "Mamirolle Info Self", + "manchester_uk_self": "Manchester Uk Self", + "manchester_uk_uprn": "Manchester Uk Uprn", + "mansfield_gov_uk_self": "Mansfield Gov Uk Self", + "mansfield_gov_uk_uprn": "Mansfield Gov Uk Uprn", + "mansfield_vic_gov_au_self": "Mansfield Vic Gov Au Self", + "mansfield_vic_gov_au_street_address": "Mansfield Vic Gov Au Street Address", + "maribyrnong_vic_gov_au_self": "Maribyrnong Vic Gov Au Self", + "maribyrnong_vic_gov_au_street_name": "Maribyrnong Vic Gov Au Street Name", + "maribyrnong_vic_gov_au_street_number": "Maribyrnong Vic Gov Au Street Number", + "maribyrnong_vic_gov_au_suburb": "Maribyrnong Vic Gov Au Suburb", + "maroondah_vic_gov_au_address": "Maroondah Vic Gov Au Address", + "maroondah_vic_gov_au_self": "Maroondah Vic Gov Au Self", + "meinawb_de_address_suffix": "Meinawb De Address Suffix", + "meinawb_de_city": "Meinawb De City", + "meinawb_de_house_number": "Meinawb De House Number", + "meinawb_de_self": "Meinawb De Self", + "meinawb_de_street": "Meinawb De Street", + "melton_vic_gov_au_self": "Melton Vic Gov Au Self", + "melton_vic_gov_au_street_address": "Melton Vic Gov Au Street Address", + "merri_bek_vic_gov_au_address": "Merri Bek Vic Gov Au Address", + "merri_bek_vic_gov_au_self": "Merri Bek Vic Gov Au Self", + "merton_gov_uk_property": "Merton Gov Uk Property", + "merton_gov_uk_self": "Merton Gov Uk Self", + "mestorudna_cz_city_part": "Mestorudna Cz City Part", + "mestorudna_cz_self": "Mestorudna Cz Self", + "midsussex_gov_uk_address": "Midsussex Gov Uk Address", + "midsussex_gov_uk_house_name": "Midsussex Gov Uk House Name", + "midsussex_gov_uk_house_number": "Midsussex Gov Uk House Number", + "midsussex_gov_uk_postcode": "Midsussex Gov Uk Postcode", + "midsussex_gov_uk_self": "Midsussex Gov Uk Self", + "midsussex_gov_uk_street": "Midsussex Gov Uk Street", + "miljoteknik_se_self": "Miljoteknik Se Self", + "miljoteknik_se_street_address": "Miljoteknik Se Street Address", + "milton_keynes_gov_uk_self": "Milton Keynes Gov Uk Self", + "milton_keynes_gov_uk_uprn": "Milton Keynes Gov Uk Uprn", + "minrenovasjon_no_county_id": "Minrenovasjon No County Id", + "minrenovasjon_no_house_number": "Minrenovasjon No House Number", + "minrenovasjon_no_self": "Minrenovasjon No Self", + "minrenovasjon_no_street_code": "Minrenovasjon No Street Code", + "minrenovasjon_no_street_name": "Minrenovasjon No Street Name", + "moje_odpady_pl_address": "Moje Odpady Pl Address", + "moje_odpady_pl_city": "Moje Odpady Pl City", + "moje_odpady_pl_english": "Moje Odpady Pl English", + "moje_odpady_pl_house_number": "Moje Odpady Pl House Number", + "moje_odpady_pl_self": "Moje Odpady Pl Self", + "moje_odpady_pl_voivodeship": "Moje Odpady Pl Voivodeship", + "mojiodpadki_si_self": "Mojiodpadki Si Self", + "mojiodpadki_si_uprn": "Mojiodpadki Si Uprn", + "molndal_se_facility_id": "Molndal Se Facility Id", + "molndal_se_self": "Molndal Se Self", + "monaloga_de_plz": "ZIP", + "monaloga_de_self": "Monaloga De Self", + "monaloga_de_street": "Street", + "montreal_ca_sector": "Montreal Ca Sector", + "montreal_ca_self": "Montreal Ca Self", + "moray_gov_uk_id": "Moray Gov Uk Id", + "moray_gov_uk_self": "Moray Gov Uk Self", + "mosman_nsw_gov_au_address": "Mosman Nsw Gov Au Address", + "mosman_nsw_gov_au_self": "Mosman Nsw Gov Au Self", + "movar_no_address": "Movar No Address", + "movar_no_self": "Movar No Self", + "mpgk_com_pl_number": "Mpgk Com Pl Number", + "mpgk_com_pl_self": "Mpgk Com Pl Self", + "mpgk_com_pl_street": "Mpgk Com Pl Street", + "mrsc_vic_gov_au_self": "Mrsc Vic Gov Au Self", + "mrsc_vic_gov_au_street_address": "Mrsc Vic Gov Au Street Address", + "muellabfuhr_de_city": "Muellabfuhr De City", + "muellabfuhr_de_client": "Muellabfuhr De Client", + "muellabfuhr_de_district": "Muellabfuhr De District", + "muellabfuhr_de_self": "Muellabfuhr De Self", + "muellabfuhr_de_street": "Muellabfuhr De Street", + "muellmax_de_mm_frm_hnr_sel": "Muellmax De Mm Frm Hnr Sel", + "muellmax_de_mm_frm_ort_sel": "Muellmax De Mm Frm Ort Sel", + "muellmax_de_mm_frm_str_sel": "Muellmax De Mm Frm Str Sel", + "muellmax_de_self": "Muellmax De Self", + "muellmax_de_service": "Muellmax De Service", + "muenchenstein_ch_self": "Muenchenstein Ch Self", + "muenchenstein_ch_waste_district": "Muenchenstein Ch Waste District", + "myutility_winnipeg_ca_address": "Myutility Winnipeg Ca Address", + "myutility_winnipeg_ca_self": "Myutility Winnipeg Ca Self", + "napier_govt_nz_address": "Napier Govt Nz Address", + "napier_govt_nz_self": "Napier Govt Nz Self", + "nawma_sa_gov_au_pid": "Nawma Sa Gov Au Pid", + "nawma_sa_gov_au_self": "Nawma Sa Gov Au Self", + "nawma_sa_gov_au_street_name": "Nawma Sa Gov Au Street Name", + "nawma_sa_gov_au_street_number": "Nawma Sa Gov Au Street Number", + "nawma_sa_gov_au_suburb": "Nawma Sa Gov Au Suburb", + "newark_sherwooddc_gov_uk_self": "Newark Sherwooddc Gov Uk Self", + "newark_sherwooddc_gov_uk_uprn": "Newark Sherwooddc Gov Uk Uprn", + "newcastle_gov_uk_self": "Newcastle Gov Uk Self", + "newcastle_gov_uk_uprn": "Newcastle Gov Uk Uprn", + "newcastle_staffs_gov_uk_self": "Newcastle Staffs Gov Uk Self", + "newcastle_staffs_gov_uk_uprn": "Newcastle Staffs Gov Uk Uprn", + "newham_gov_uk_property": "Newham Gov Uk Property", + "newham_gov_uk_self": "Newham Gov Uk Self", + "nillumbik_vic_gov_au_self": "Nillumbik Vic Gov Au Self", + "nillumbik_vic_gov_au_street_address": "Nillumbik Vic Gov Au Street Address", + "north_ayrshire_gov_uk_self": "North Ayrshire Gov Uk Self", + "north_ayrshire_gov_uk_uprn": "North Ayrshire Gov Uk Uprn", + "north_kesteven_org_uk_self": "North Kesteven Org Uk Self", + "north_kesteven_org_uk_uprn": "North Kesteven Org Uk Uprn", + "northherts_gov_uk_address_name_numer": "Northherts Gov Uk Address Name Numer", + "northherts_gov_uk_address_postcode": "Northherts Gov Uk Address Postcode", + "northherts_gov_uk_address_street": "Northherts Gov Uk Address Street", + "northherts_gov_uk_self": "Northherts Gov Uk Self", + "northherts_gov_uk_street_town": "Northherts Gov Uk Street Town", + "northlincs_gov_uk_self": "Northlincs Gov Uk Self", + "northlincs_gov_uk_uprn": "Northlincs Gov Uk Uprn", + "northnorthants_gov_uk_self": "Northnorthants Gov Uk Self", + "northnorthants_gov_uk_uprn": "Northnorthants Gov Uk Uprn", + "northyorks_hambleton_gov_uk_self": "Northyorks Hambleton Gov Uk Self", + "northyorks_hambleton_gov_uk_uprn": "Northyorks Hambleton Gov Uk Uprn", + "northyorks_harrogate_gov_uk_self": "Northyorks Harrogate Gov Uk Self", + "northyorks_harrogate_gov_uk_uprn": "Northyorks Harrogate Gov Uk Uprn", + "northyorks_scarborough_gov_uk_self": "Northyorks Scarborough Gov Uk Self", + "northyorks_scarborough_gov_uk_uprn": "Northyorks Scarborough Gov Uk Uprn", + "northyorks_selby_gov_uk_self": "Northyorks Selby Gov Uk Self", + "northyorks_selby_gov_uk_uprn": "Northyorks Selby Gov Uk Uprn", + "nottingham_city_gov_uk_self": "Nottingham City Gov Uk Self", + "nottingham_city_gov_uk_uprn": "Nottingham City Gov Uk Uprn", + "nsomerset_gov_uk_postcode": "Nsomerset Gov Uk Postcode", + "nsomerset_gov_uk_self": "Nsomerset Gov Uk Self", + "nsomerset_gov_uk_uprn": "Nsomerset Gov Uk Uprn", + "nuernberger_land_de_id": "Nuernberger Land De Id", + "nuernberger_land_de_self": "Nuernberger Land De Self", + "nvaa_se_self": "Nvaa Se Self", + "nvaa_se_street_address": "Nvaa Se Street Address", + "nwleics_gov_uk_self": "Nwleics Gov Uk Self", + "nwleics_gov_uk_uprn": "Nwleics Gov Uk Uprn", + "nyc_gov_address": "Nyc Gov Address", + "nyc_gov_self": "Nyc Gov Self", + "oadby_wigston_gov_uk_address": "Oadby Wigston Gov Uk Address", + "oadby_wigston_gov_uk_self": "Oadby Wigston Gov Uk Self", + "odenserenovation_dk_addressNo": "Odenserenovation Dk Address No", + "odenserenovation_dk_self": "Odenserenovation Dk Self", + "offenbach_de_f_id_location": "Offenbach De F Id Location", + "offenbach_de_self": "Offenbach De Self", + "okc_gov_objectID": "Okc Gov Object Id", + "okc_gov_self": "Okc Gov Self", + "onkaparingacity_com_address": "Onkaparingacity Com Address", + "onkaparingacity_com_self": "Onkaparingacity Com Self", + "orillia_ca_email": "Orillia Ca Email", + "orillia_ca_password": "Orillia Ca Password", + "orillia_ca_self": "Orillia Ca Self", + "oslokommune_no_house_letter": "Oslokommune No House Letter", + "oslokommune_no_house_number": "Oslokommune No House Number", + "oslokommune_no_self": "Oslokommune No Self", + "oslokommune_no_street_id": "Oslokommune No Street Id", + "oslokommune_no_street_name": "Oslokommune No Street Name", + "oxford_gov_uk_postcode": "Oxford Gov Uk Postcode", + "oxford_gov_uk_self": "Oxford Gov Uk Self", + "oxford_gov_uk_uprn": "Oxford Gov Uk Uprn", + "peterborough_gov_uk_name": "Peterborough Gov Uk Name", + "peterborough_gov_uk_number": "Peterborough Gov Uk Number", + "peterborough_gov_uk_post_code": "Peterborough Gov Uk Post Code", + "peterborough_gov_uk_self": "Peterborough Gov Uk Self", + "peterborough_gov_uk_uprn": "Peterborough Gov Uk Uprn", + "pgh_st_house_number": "Pgh St House Number", + "pgh_st_self": "Pgh St Self", + "pgh_st_street_name": "Pgh St Street Name", + "pgh_st_zipcode": "Pgh St Zipcode", + "poriruacity_govt_nz_address": "Poriruacity Govt Nz Address", + "poriruacity_govt_nz_self": "Poriruacity Govt Nz Self", + "portenf_sa_gov_au_house_number": "Portenf Sa Gov Au House Number", + "portenf_sa_gov_au_self": "Portenf Sa Gov Au Self", + "portenf_sa_gov_au_street": "Portenf Sa Gov Au Street", + "portenf_sa_gov_au_suburb": "Portenf Sa Gov Au Suburb", + "portenf_sa_gov_au_unit_number": "Portenf Sa Gov Au Unit Number", + "portsmouth_gov_uk_self": "Portsmouth Gov Uk Self", + "portsmouth_gov_uk_uprn": "Portsmouth Gov Uk Uprn", + "portstephens_nsw_gov_au_self": "Portstephens Nsw Gov Au Self", + "portstephens_nsw_gov_au_street_name": "Portstephens Nsw Gov Au Street Name", + "portstephens_nsw_gov_au_street_number": "Portstephens Nsw Gov Au Street Number", + "portstephens_nsw_gov_au_suburb": "Portstephens Nsw Gov Au Suburb", + "potsdam_de_bio_rhythm": "Organics rhythm", + "potsdam_de_gelb_rhythm": "Recycling rhythm", + "potsdam_de_ortsteil": "District", + "potsdam_de_papier_rhythm": "Paper rhythm", + "potsdam_de_rest_rhythm": "General waste rhythm", + "potsdam_de_self": "Potsdam De Self", + "potsdam_de_strasse": "Street", + "poznan_pl_self": "Poznan Pl Self", + "poznan_pl_street_name": "Poznan Pl Street Name", + "poznan_pl_street_number": "Poznan Pl Street Number", + "pronatura_bydgoszcz_pl_self": "Pronatura Bydgoszcz Pl Self", + "pronatura_bydgoszcz_pl_street_name": "Pronatura Bydgoszcz Pl Street Name", + "pronatura_bydgoszcz_pl_street_number": "Pronatura Bydgoszcz Pl Street Number", + "rambo_se_address": "Rambo Se Address", + "rambo_se_self": "Rambo Se Self", + "rapperswil_be_ch_self": "Rapperswil Be Ch Self", + "rbwm_gov_uk_postcode": "Rbwm Gov Uk Postcode", + "rbwm_gov_uk_self": "Rbwm Gov Uk Self", + "rbwm_gov_uk_uprn": "Rbwm Gov Uk Uprn", + "rctcbc_gov_uk_self": "Rctcbc Gov Uk Self", + "rctcbc_gov_uk_uprn": "Rctcbc Gov Uk Uprn", + "rd4_nl_house_number": "Rd4 Nl House Number", + "rd4_nl_postal_code": "Rd4 Nl Postal Code", + "rd4_nl_self": "Rd4 Nl Self", + "reading_gov_uk_housenameornumber": "Reading Gov Uk Housenameornumber", + "reading_gov_uk_postcode": "Reading Gov Uk Postcode", + "reading_gov_uk_self": "Reading Gov Uk Self", + "reading_gov_uk_uprn": "Reading Gov Uk Uprn", + "real_luzern_ch_municipality_id": "Real Luzern Ch Municipality Id", + "real_luzern_ch_self": "Real Luzern Ch Self", + "real_luzern_ch_street_id": "Real Luzern Ch Street Id", + "recycleapp_be_add_events": "Recycleapp Be Add Events", + "recycleapp_be_house_number": "Recycleapp Be House Number", + "recycleapp_be_postcode": "Recycleapp Be Postcode", + "recycleapp_be_self": "Recycleapp Be Self", + "recycleapp_be_street": "Recycleapp Be Street", + "recyclecoach_com_city": "Recyclecoach Com City", + "recyclecoach_com_district_id": "Recyclecoach Com District Id", + "recyclecoach_com_project_id": "Recyclecoach Com Project Id", + "recyclecoach_com_self": "Recyclecoach Com Self", + "recyclecoach_com_state": "Recyclecoach Com State", + "recyclecoach_com_street": "Recyclecoach Com Street", + "recyclecoach_com_zone_id": "Recyclecoach Com Zone Id", + "recyclesmart_com_email": "Recyclesmart Com Email", + "recyclesmart_com_password": "Recyclesmart Com Password", + "recyclesmart_com_self": "Recyclesmart Com Self", + "redbridge_gov_uk_self": "Redbridge Gov Uk Self", + "redbridge_gov_uk_uprn": "Redbridge Gov Uk Uprn", + "redland_qld_gov_au_self": "Redland Qld Gov Au Self", + "redland_qld_gov_au_street_name": "Redland Qld Gov Au Street Name", + "redland_qld_gov_au_street_number": "Redland Qld Gov Au Street Number", + "redland_qld_gov_au_suburb": "Redland Qld Gov Au Suburb", + "regioentsorgung_de_city": "Regioentsorgung De City", + "regioentsorgung_de_house_number": "Regioentsorgung De House Number", + "regioentsorgung_de_self": "Regioentsorgung De Self", + "regioentsorgung_de_street": "Regioentsorgung De Street", + "reigatebanstead_gov_uk_self": "Reigatebanstead Gov Uk Self", + "reigatebanstead_gov_uk_uprn": "Reigatebanstead Gov Uk Uprn", + "remidt_no_address": "Remidt No Address", + "remidt_no_self": "Remidt No Self", + "renfrewshire_gov_uk_postcode": "Renfrewshire Gov Uk Postcode", + "renfrewshire_gov_uk_self": "Renfrewshire Gov Uk Self", + "renfrewshire_gov_uk_uprn": "Renfrewshire Gov Uk Uprn", + "renodjurs_dk_id": "Renodjurs Dk Id", + "renodjurs_dk_self": "Renodjurs Dk Self", + "renosyd_dk_house_number": "Renosyd Dk House Number", + "renosyd_dk_self": "Renosyd Dk Self", + "renoweb_dk_address": "Renoweb Dk Address", + "renoweb_dk_address_id": "Renoweb Dk Address Id", + "renoweb_dk_include_ordered_pickup_entries": "Renoweb Dk Include Ordered Pickup Entries", + "renoweb_dk_municipality": "Renoweb Dk Municipality", + "renoweb_dk_self": "Renoweb Dk Self", + "republicservices_com_method": "Republicservices Com Method", + "republicservices_com_self": "Republicservices Com Self", + "republicservices_com_street_address": "Republicservices Com Street Address", + "reso_gmbh_de_ort": "Reso Gmbh De Ort", + "reso_gmbh_de_ortsteil": "Reso Gmbh De Ortsteil", + "reso_gmbh_de_self": "Reso Gmbh De Self", + "rh_entsorgung_de_address_suffix": "Rh Entsorgung De Address Suffix", + "rh_entsorgung_de_city": "Rh Entsorgung De City", + "rh_entsorgung_de_house_number": "Rh Entsorgung De House Number", + "rh_entsorgung_de_self": "Rh Entsorgung De Self", + "rh_entsorgung_de_street": "Rh Entsorgung De Street", + "richmondshire_gov_uk_self": "Richmondshire Gov Uk Self", + "richmondshire_gov_uk_uprn": "Richmondshire Gov Uk Uprn", + "rotherham_gov_uk_self": "Rotherham Gov Uk Self", + "rotherham_gov_uk_uprn": "Rotherham Gov Uk Uprn", + "rotorua_lakes_council_nz_address": "Rotorua Lakes Council Nz Address", + "rotorua_lakes_council_nz_self": "Rotorua Lakes Council Nz Self", + "roundlookup_uk_council": "Roundlookup Uk Council", + "roundlookup_uk_self": "Roundlookup Uk Self", + "roundlookup_uk_uprn": "Roundlookup Uk Uprn", + "runnymede_gov_uk_self": "Runnymede Gov Uk Self", + "runnymede_gov_uk_uprn": "Runnymede Gov Uk Uprn", + "rushcliffe_gov_uk_address": "Rushcliffe Gov Uk Address", + "rushcliffe_gov_uk_postcode": "Rushcliffe Gov Uk Postcode", + "rushcliffe_gov_uk_self": "Rushcliffe Gov Uk Self", + "rushmoor_gov_uk_self": "Rushmoor Gov Uk Self", + "rushmoor_gov_uk_uprn": "Rushmoor Gov Uk Uprn", + "rv_de_hnr": "Rv De Hnr", + "rv_de_hnr_zusatz": "Rv De Hnr Zusatz", + "rv_de_ort": "Rv De Ort", + "rv_de_self": "Rv De Self", + "rv_de_strasse": "Rv De Strasse", + "ryde_nsw_gov_au_post_code": "Ryde Nsw Gov Au Post Code", + "ryde_nsw_gov_au_self": "Ryde Nsw Gov Au Self", + "ryde_nsw_gov_au_street_name": "Ryde Nsw Gov Au Street Name", + "ryde_nsw_gov_au_street_number": "Ryde Nsw Gov Au Street Number", + "ryde_nsw_gov_au_suburb": "Ryde Nsw Gov Au Suburb", + "salford_gov_uk_self": "Salford Gov Uk Self", + "salford_gov_uk_uprn": "Salford Gov Uk Uprn", + "samiljo_se_city": "Samiljo Se City", + "samiljo_se_self": "Samiljo Se Self", + "samiljo_se_street": "Samiljo Se Street", + "sammelkalender_ch_hnr": "Sammelkalender Ch Hnr", + "sammelkalender_ch_municipality": "Sammelkalender Ch Municipality", + "sammelkalender_ch_self": "Sammelkalender Ch Self", + "sammelkalender_ch_service_provider": "Sammelkalender Ch Service Provider", + "sammelkalender_ch_street": "Sammelkalender Ch Street", + "sandnes_no_bnumber": "Sandnes No Bnumber", + "sandnes_no_gnumber": "Sandnes No Gnumber", + "sandnes_no_id": "Sandnes No Id", + "sandnes_no_municipality": "Sandnes No Municipality", + "sandnes_no_self": "Sandnes No Self", + "sandnes_no_snumber": "Sandnes No Snumber", + "sbazv_de_city": "Sbazv De City", + "sbazv_de_district": "Sbazv De District", + "sbazv_de_self": "Sbazv De Self", + "sbazv_de_street": "Sbazv De Street", + "scambs_gov_uk_number": "Scambs Gov Uk Number", + "scambs_gov_uk_post_code": "Scambs Gov Uk Post Code", + "scambs_gov_uk_self": "Scambs Gov Uk Self", + "scheibbs_umweltverbaende_at_region": "Scheibbs Umweltverbaende At Region", + "scheibbs_umweltverbaende_at_self": "Scheibbs Umweltverbaende At Self", + "schweinfurt_de_address": "Schweinfurt De Address", + "schweinfurt_de_self": "Schweinfurt De Self", + "schweinfurt_de_showmobile": "Schweinfurt De Showmobile", + "seattle_gov_prem_code": "Seattle Gov Prem Code", + "seattle_gov_self": "Seattle Gov Self", + "seattle_gov_street_address": "Seattle Gov Street Address", + "sector27_de_city": "Sector27 De City", + "sector27_de_self": "Sector27 De Self", + "sector27_de_street": "Sector27 De Street", + "sepan_remondis_pl_city": "Sepan Remondis Pl City", + "sepan_remondis_pl_self": "Sepan Remondis Pl Self", + "sepan_remondis_pl_street_name": "Sepan Remondis Pl Street Name", + "sepan_remondis_pl_street_number": "Sepan Remondis Pl Street Number", + "sheffield_gov_uk_self": "Sheffield Gov Uk Self", + "sheffield_gov_uk_uprn": "Sheffield Gov Uk Uprn", + "shellharbourwaste_com_au_self": "Shellharbourwaste Com Au Self", + "shellharbourwaste_com_au_zoneID": "Shellharbourwaste Com Au Zone Id", + "sholland_gov_uk_postcode": "Sholland Gov Uk Postcode", + "sholland_gov_uk_self": "Sholland Gov Uk Self", + "sholland_gov_uk_uprn": "Sholland Gov Uk Uprn", + "shropshire_gov_uk_self": "Shropshire Gov Uk Self", + "shropshire_gov_uk_uprn": "Shropshire Gov Uk Uprn", + "sica_lu_municipality": "Sica Lu Municipality", + "sica_lu_self": "Sica Lu Self", + "sicaapp_lu_commune": "Sicaapp Lu Commune", + "sicaapp_lu_self": "Sicaapp Lu Self", + "sivom_rivedroite_fr_district": "Sivom Rivedroite Fr District", + "sivom_rivedroite_fr_self": "Sivom Rivedroite Fr Self", + "solihull_gov_uk_predict": "Solihull Gov Uk Predict", + "solihull_gov_uk_self": "Solihull Gov Uk Self", + "solihull_gov_uk_uprn": "Solihull Gov Uk Uprn", + "south_norfolk_and_broadland_gov_uk_address": "South Norfolk And Broadland Gov Uk Address", + "south_norfolk_and_broadland_gov_uk_address_payload": "South Norfolk And Broadland Gov Uk Address Payload", + "south_norfolk_and_broadland_gov_uk_postcode": "South Norfolk And Broadland Gov Uk Postcode", + "south_norfolk_and_broadland_gov_uk_self": "South Norfolk And Broadland Gov Uk Self", + "southampton_gov_uk_self": "Southampton Gov Uk Self", + "southampton_gov_uk_uprn": "Southampton Gov Uk Uprn", + "southderbyshire_gov_uk_self": "Southderbyshire Gov Uk Self", + "southderbyshire_gov_uk_uprn": "Southderbyshire Gov Uk Uprn", + "southglos_gov_uk_self": "Southglos Gov Uk Self", + "southglos_gov_uk_uprn": "Southglos Gov Uk Uprn", + "southkesteven_gov_uk_address_id": "Southkesteven Gov Uk Address Id", + "southkesteven_gov_uk_self": "Southkesteven Gov Uk Self", + "southtyneside_gov_uk_postcode": "Southtyneside Gov Uk Postcode", + "southtyneside_gov_uk_self": "Southtyneside Gov Uk Self", + "southtyneside_gov_uk_uprn": "Southtyneside Gov Uk Uprn", + "srvatervinning_se_address": "Srvatervinning Se Address", + "srvatervinning_se_city": "Srvatervinning Se City", + "srvatervinning_se_self": "Srvatervinning Se Self", + "ssam_se_self": "Ssam Se Self", + "ssam_se_street_address": "Ssam Se Street Address", + "stadtreinigung_dresden_de_self": "Stadtreinigung Dresden De Self", + "stadtreinigung_dresden_de_standort": "Stadtreinigung Dresden De Standort", + "stadtreinigung_hamburg_asId": "Stadtreinigung Hamburg As Id", + "stadtreinigung_hamburg_hnId": "Stadtreinigung Hamburg Hn Id", + "stadtreinigung_hamburg_self": "Stadtreinigung Hamburg Self", + "stadtreinigung_leipzig_de_house_number": "Stadtreinigung Leipzig De House Number", + "stadtreinigung_leipzig_de_self": "Stadtreinigung Leipzig De Self", + "stadtreinigung_leipzig_de_street": "Stadtreinigung Leipzig De Street", + "stadtservice_bruehl_de_hnr": "Stadtservice Bruehl De Hnr", + "stadtservice_bruehl_de_self": "Stadtservice Bruehl De Self", + "stadtservice_bruehl_de_strasse": "Stadtservice Bruehl De Strasse", + "staedteservice_de_city": "Staedteservice De City", + "staedteservice_de_house_number": "Staedteservice De House Number", + "staedteservice_de_self": "Staedteservice De Self", + "staedteservice_de_street_name": "Staedteservice De Street Name", + "staedteservice_de_street_number": "Staedteservice De Street Number", + "staffordbc_gov_uk_self": "Staffordbc Gov Uk Self", + "staffordbc_gov_uk_uprn": "Staffordbc Gov Uk Uprn", + "stalbans_gov_uk_self": "Stalbans Gov Uk Self", + "stalbans_gov_uk_uprn": "Stalbans Gov Uk Uprn", + "static_count": "Static Count", + "static_dates": "Static Dates", + "static_excludes": "Static Excludes", + "static_frequency": "Static Frequency", + "static_interval": "Static Interval", + "static_self": "Static Self", + "static_start": "Static Start", + "static_type": "Static Type", + "static_until": "Static Until", + "static_weekdays": "Static Weekdays", + "stavanger_no_bnumber": "Stavanger No Bnumber", + "stavanger_no_gnumber": "Stavanger No Gnumber", + "stavanger_no_id": "Stavanger No Id", + "stavanger_no_municipality": "Stavanger No Municipality", + "stavanger_no_self": "Stavanger No Self", + "stavanger_no_snumber": "Stavanger No Snumber", + "stevenage_gov_uk_self": "Stevenage Gov Uk Self", + "stevenage_gov_uk_uprn": "Stevenage Gov Uk Uprn", + "stirling_uk_route": "Stirling Uk Route", + "stirling_uk_self": "Stirling Uk Self", + "stirling_wa_gov_au_lat": "Stirling Wa Gov Au Lat", + "stirling_wa_gov_au_lon": "Stirling Wa Gov Au Lon", + "stirling_wa_gov_au_self": "Stirling Wa Gov Au Self", + "stockport_gov_uk_self": "Stockport Gov Uk Self", + "stockport_gov_uk_uprn": "Stockport Gov Uk Uprn", + "stockton_gov_uk_self": "Stockton Gov Uk Self", + "stockton_gov_uk_uprn": "Stockton Gov Uk Uprn", + "stoke_gov_uk_self": "Stoke Gov Uk Self", + "stoke_gov_uk_uprn": "Stoke Gov Uk Uprn", + "stonnington_vic_gov_au_self": "Stonnington Vic Gov Au Self", + "stonnington_vic_gov_au_street_address": "Stonnington Vic Gov Au Street Address", + "stratford_gov_uk_self": "Stratford Gov Uk Self", + "stratford_gov_uk_uprn": "Stratford Gov Uk Uprn", + "stroud_gov_uk_postcode": "Stroud Gov Uk Postcode", + "stroud_gov_uk_self": "Stroud Gov Uk Self", + "stroud_gov_uk_uprn": "Stroud Gov Uk Uprn", + "stuttgart_de_self": "Stuttgart De Self", + "stuttgart_de_street": "Stuttgart De Street", + "stuttgart_de_streetnr": "Stuttgart De Streetnr", + "sutton_gov_uk_id": "Sutton Gov Uk Id", + "sutton_gov_uk_self": "Sutton Gov Uk Self", + "swansea_gov_uk_post_code": "Swansea Gov Uk Post Code", + "swansea_gov_uk_self": "Swansea Gov Uk Self", + "swansea_gov_uk_street_name": "Swansea Gov Uk Street Name", + "swindon_gov_uk_self": "Swindon Gov Uk Self", + "swindon_gov_uk_uprn": "Swindon Gov Uk Uprn", + "sysav_se_self": "Sysav Se Self", + "sysav_se_street_address": "Sysav Se Street Address", + "tameside_gov_uk_postcode": "Tameside Gov Uk Postcode", + "tameside_gov_uk_self": "Tameside Gov Uk Self", + "tameside_gov_uk_uprn": "Tameside Gov Uk Uprn", + "tauranga_govt_nz_address": "Tauranga Govt Nz Address", + "tauranga_govt_nz_self": "Tauranga Govt Nz Self", + "tbv_velbert_de_self": "Tbv Velbert De Self", + "tbv_velbert_de_street": "Tbv Velbert De Street", + "tekniskaverken_se_city": "Tekniskaverken Se City", + "tekniskaverken_se_self": "Tekniskaverken Se Self", + "tekniskaverken_se_street": "Tekniskaverken Se Street", + "telford_gov_uk_name_number": "Telford Gov Uk Name Number", + "telford_gov_uk_post_code": "Telford Gov Uk Post Code", + "telford_gov_uk_self": "Telford Gov Uk Self", + "telford_gov_uk_uprn": "Telford Gov Uk Uprn", + "tewkesbury_gov_uk_postcode": "Tewkesbury Gov Uk Postcode", + "tewkesbury_gov_uk_self": "Tewkesbury Gov Uk Self", + "tewkesbury_gov_uk_uprn": "Tewkesbury Gov Uk Uprn", + "thehills_nsw_gov_au_houseNo": "Thehills Nsw Gov Au House No", + "thehills_nsw_gov_au_self": "Thehills Nsw Gov Au Self", + "thehills_nsw_gov_au_street": "Thehills Nsw Gov Au Street", + "thehills_nsw_gov_au_suburb": "Thehills Nsw Gov Au Suburb", + "tkeliai_lt_location": "Tkeliai Lt Location", + "tkeliai_lt_self": "Tkeliai Lt Self", + "tmbc_gov_uk_address": "Tmbc Gov Uk Address", + "tmbc_gov_uk_post_code": "Tmbc Gov Uk Post Code", + "tmbc_gov_uk_self": "Tmbc Gov Uk Self", + "tonnenleerung_de_self": "Tonnenleerung De Self", + "tonnenleerung_de_url": "Tonnenleerung De Url", + "toogoodtowaste_co_nz_address": "Toogoodtowaste Co Nz Address", + "toogoodtowaste_co_nz_self": "Toogoodtowaste Co Nz Self", + "toronto_ca_self": "Toronto Ca Self", + "toronto_ca_street_address": "Toronto Ca Street Address", + "townsville_qld_gov_au_property_id": "Townsville Qld Gov Au Property Id", + "townsville_qld_gov_au_self": "Townsville Qld Gov Au Self", + "tunbridgewells_gov_uk_self": "Tunbridgewells Gov Uk Self", + "tunbridgewells_gov_uk_uprn": "Tunbridgewells Gov Uk Uprn", + "ukbcd_file": "Ukbcd File", + "ukbcd_self": "Ukbcd Self", + "umweltverbaende_at_calendar": "Umweltverbaende At Calendar", + "umweltverbaende_at_calendar_splitter": "Umweltverbaende At Calendar Splitter", + "umweltverbaende_at_calendar_title_separator": "Umweltverbaende At Calendar Title Separator", + "umweltverbaende_at_district": "Umweltverbaende At District", + "umweltverbaende_at_municipal": "Umweltverbaende At Municipal", + "umweltverbaende_at_self": "Umweltverbaende At Self", + "unley_sa_gov_au_post_code": "Unley Sa Gov Au Post Code", + "unley_sa_gov_au_self": "Unley Sa Gov Au Self", + "unley_sa_gov_au_street_name": "Unley Sa Gov Au Street Name", + "unley_sa_gov_au_street_number": "Unley Sa Gov Au Street Number", + "unley_sa_gov_au_suburb": "Unley Sa Gov Au Suburb", + "uppsalavatten_se_city": "Uppsalavatten Se City", + "uppsalavatten_se_self": "Uppsalavatten Se Self", + "uppsalavatten_se_street": "Uppsalavatten Se Street", + "uttlesford_gov_uk_house": "Uttlesford Gov Uk House", + "uttlesford_gov_uk_self": "Uttlesford Gov Uk Self", + "valeofglamorgan_gov_uk_self": "Valeofglamorgan Gov Uk Self", + "valeofglamorgan_gov_uk_uprn": "Valeofglamorgan Gov Uk Uprn", + "vasyd_se_self": "Vasyd Se Self", + "vasyd_se_street_address": "Vasyd Se Street Address", + "vestfor_dk_number": "Vestfor Dk Number", + "vestfor_dk_self": "Vestfor Dk Self", + "vestfor_dk_streetName": "Vestfor Dk Street Name", + "vestfor_dk_zipCode": "Vestfor Dk Zip Code", + "victoriapark_wa_gov_au_address": "Victoriapark Wa Gov Au Address", + "victoriapark_wa_gov_au_predict": "Victoriapark Wa Gov Au Predict", + "victoriapark_wa_gov_au_self": "Victoriapark Wa Gov Au Self", + "vivab_se_building_id": "Vivab Se Building Id", + "vivab_se_self": "Vivab Se Self", + "vivab_se_street_address": "Vivab Se Street Address", + "vmeab_se_city": "Vmeab Se City", + "vmeab_se_self": "Vmeab Se Self", + "vmeab_se_street": "Vmeab Se Street", + "waipa_nz_address": "Waipa Nz Address", + "waipa_nz_self": "Waipa Nz Self", + "walsall_gov_uk_self": "Walsall Gov Uk Self", + "walsall_gov_uk_uprn": "Walsall Gov Uk Uprn", + "wanneroo_wa_gov_au_address": "Wanneroo Wa Gov Au Address", + "wanneroo_wa_gov_au_self": "Wanneroo Wa Gov Au Self", + "warrington_gov_uk_self": "Warrington Gov Uk Self", + "warrington_gov_uk_uprn": "Warrington Gov Uk Uprn", + "warszawa19115_pl_geolocation_id": "Warszawa19115 Pl Geolocation Id", + "warszawa19115_pl_self": "Warszawa19115 Pl Self", + "warszawa19115_pl_street_address": "Warszawa19115 Pl Street Address", + "warwickdc_gov_uk_self": "Warwickdc Gov Uk Self", + "warwickdc_gov_uk_uprn": "Warwickdc Gov Uk Uprn", + "was_wolfsburg_de_city": "Was Wolfsburg De City", + "was_wolfsburg_de_self": "Was Wolfsburg De Self", + "was_wolfsburg_de_street": "Was Wolfsburg De Street", + "wastenet_org_nz_address": "Wastenet Org Nz Address", + "wastenet_org_nz_entry_id": "Wastenet Org Nz Entry Id", + "wastenet_org_nz_self": "Wastenet Org Nz Self", + "waverley_gov_uk_address_name_numer": "Waverley Gov Uk Address Name Numer", + "waverley_gov_uk_address_postcode": "Waverley Gov Uk Address Postcode", + "waverley_gov_uk_address_street": "Waverley Gov Uk Address Street", + "waverley_gov_uk_self": "Waverley Gov Uk Self", + "waverley_gov_uk_street_town": "Waverley Gov Uk Street Town", + "wealden_gov_uk_self": "Wealden Gov Uk Self", + "wealden_gov_uk_uprn": "Wealden Gov Uk Uprn", + "welhat_gov_uk_postcode": "Welhat Gov Uk Postcode", + "welhat_gov_uk_self": "Welhat Gov Uk Self", + "welhat_gov_uk_uprn": "Welhat Gov Uk Uprn", + "wellington_govt_nz_self": "Wellington Govt Nz Self", + "wellington_govt_nz_streetId": "Wellington Govt Nz Street Id", + "wellington_govt_nz_streetName": "Wellington Govt Nz Street Name", + "wermelskirchen_de_house_number": "Wermelskirchen De House Number", + "wermelskirchen_de_self": "Wermelskirchen De Self", + "wermelskirchen_de_street": "Wermelskirchen De Street", + "west_dunbartonshire_gov_uk_house_number": "West Dunbartonshire Gov Uk House Number", + "west_dunbartonshire_gov_uk_self": "West Dunbartonshire Gov Uk Self", + "west_dunbartonshire_gov_uk_street": "West Dunbartonshire Gov Uk Street", + "west_dunbartonshire_gov_uk_town": "West Dunbartonshire Gov Uk Town", + "west_dunbartonshire_gov_uk_uprn": "West Dunbartonshire Gov Uk Uprn", + "west_norfolk_gov_uk_self": "West Norfolk Gov Uk Self", + "west_norfolk_gov_uk_uprn": "West Norfolk Gov Uk Uprn", + "westberks_gov_uk_housenumberorname": "Westberks Gov Uk Housenumberorname", + "westberks_gov_uk_postcode": "Westberks Gov Uk Postcode", + "westberks_gov_uk_self": "Westberks Gov Uk Self", + "westberks_gov_uk_uprn": "Westberks Gov Uk Uprn", + "westnorthants_gov_uk_self": "Westnorthants Gov Uk Self", + "westnorthants_gov_uk_uprn": "Westnorthants Gov Uk Uprn", + "westoxon_gov_uk_address": "Westoxon Gov Uk Address", + "westoxon_gov_uk_self": "Westoxon Gov Uk Self", + "westsuffolk_gov_uk_self": "Westsuffolk Gov Uk Self", + "westsuffolk_gov_uk_uprn": "Westsuffolk Gov Uk Uprn", + "whitehorse_vic_gov_au_address": "Whitehorse Vic Gov Au Address", + "whitehorse_vic_gov_au_self": "Whitehorse Vic Gov Au Self", + "whittlesea_vic_gov_au_self": "Whittlesea Vic Gov Au Self", + "whittlesea_vic_gov_au_street_address": "Whittlesea Vic Gov Au Street Address", + "wigan_gov_uk_postcode": "Wigan Gov Uk Postcode", + "wigan_gov_uk_self": "Wigan Gov Uk Self", + "wigan_gov_uk_uprn": "Wigan Gov Uk Uprn", + "wiltshire_gov_uk_postcode": "Wiltshire Gov Uk Postcode", + "wiltshire_gov_uk_self": "Wiltshire Gov Uk Self", + "wiltshire_gov_uk_uprn": "Wiltshire Gov Uk Uprn", + "winterthur_ch_self": "Winterthur Ch Self", + "winterthur_ch_street": "Winterthur Ch Street", + "wirral_gov_uk_self": "Wirral Gov Uk Self", + "wirral_gov_uk_street": "Wirral Gov Uk Street", + "wirral_gov_uk_suburb": "Wirral Gov Uk Suburb", + "wokingham_gov_uk_address": "Wokingham Gov Uk Address", + "wokingham_gov_uk_postcode": "Wokingham Gov Uk Postcode", + "wokingham_gov_uk_property": "Wokingham Gov Uk Property", + "wokingham_gov_uk_self": "Wokingham Gov Uk Self", + "wollondilly_nsw_gov_au_address": "Wollondilly Nsw Gov Au Address", + "wollondilly_nsw_gov_au_self": "Wollondilly Nsw Gov Au Self", + "wollongongwaste_com_au_propertyID": "Wollongongwaste Com Au Property Id", + "wollongongwaste_com_au_self": "Wollongongwaste Com Au Self", + "wsz_moosburg_at_address": "Wsz Moosburg At Address", + "wsz_moosburg_at_address_id": "Wsz Moosburg At Address Id", + "wsz_moosburg_at_municipal": "Wsz Moosburg At Municipal", + "wsz_moosburg_at_self": "Wsz Moosburg At Self", + "wsz_moosburg_at_street": "Wsz Moosburg At Street", + "wuerzburg_de_district": "Wuerzburg De District", + "wuerzburg_de_self": "Wuerzburg De Self", + "wuerzburg_de_street": "Wuerzburg De Street", + "wychavon_gov_uk_self": "Wychavon Gov Uk Self", + "wychavon_gov_uk_uprn": "Wychavon Gov Uk Uprn", + "wyndham_vic_gov_au_self": "Wyndham Vic Gov Au Self", + "wyndham_vic_gov_au_street_address": "Wyndham Vic Gov Au Street Address", + "wyreforestdc_gov_uk_garden_cutomer": "Wyreforestdc Gov Uk Garden Cutomer", + "wyreforestdc_gov_uk_self": "Wyreforestdc Gov Uk Self", + "wyreforestdc_gov_uk_street": "Wyreforestdc Gov Uk Street", + "wyreforestdc_gov_uk_town": "Wyreforestdc Gov Uk Town", + "ximmio_nl_company": "Ximmio Nl Company", + "ximmio_nl_house_number": "Ximmio Nl House Number", + "ximmio_nl_post_code": "Ximmio Nl Post Code", + "ximmio_nl_self": "Ximmio Nl Self", + "yarra_ranges_vic_gov_au_self": "Yarra Ranges Vic Gov Au Self", + "yarra_ranges_vic_gov_au_street_address": "Yarra Ranges Vic Gov Au Street Address", + "york_gov_uk_self": "York Gov Uk Self", + "york_gov_uk_uprn": "York Gov Uk Uprn", + "zakb_de_hnr": "House number", + "zakb_de_hnr_zusatz": "House number addition", + "zakb_de_ort": "City", + "zakb_de_self": "Zakb De Self", + "zakb_de_strasse": "Street", + "zva_sek_de_bezirk": "City district", + "zva_sek_de_ortsteil": "District", + "zva_sek_de_self": "Zva Sek De Self", + "zva_sek_de_strasse": "Street", + "zva_wmk_de_city": "Zva Wmk De City", + "zva_wmk_de_self": "Zva Wmk De Self", + "zva_wmk_de_street": "Zva Wmk De Street" }, "data_description": { "calendar_title": "A more readable, or user-friendly, name for the waste calendar. If nothing is provided, the name returned by the source will be used." @@ -323,224 +1512,1413 @@ "title": "Reconfigure Source", "description": "Configure your service provider. For details see the source documentation.", "data": { - "abf_hausnr": "abf_hausnr", - "abf_strasse": "abf_strasse", - "abf_suche": "abf_suche", - "add_events": "Add Events", - "additional_sides_matcher": "additional_sides_matcher", - "address": "Address", - "address_name_number": "Address Name or Number", - "address_name_numer": "Address Name or Number", - "address_payload": "Address Payload", - "address_postcode": "Postcode", - "address_street": "Street", - "address_suffix": "Address Suffix", - "area": "Area", - "area_id": "Area ID", - "area_number": "Area Number", - "args": "Arguments", - "asId": "asId", - "bezirk": "bezirk", - "bio_rhythm": "bio_rhythm", - "bnumber": "bnumber", - "borough": "Borough", - "building_number": "Building Number", - "calendar": "Calendar", + "a_region_ch_district": "A Region Ch District", + "a_region_ch_municipality": "A Region Ch Municipality", + "a_region_ch_self": "A Region Ch Self", + "aberdeenshire_gov_uk_self": "Aberdeenshire Gov Uk Self", + "aberdeenshire_gov_uk_uprn": "Aberdeenshire Gov Uk Uprn", + "abfall_havelland_de_ort": "Abfall Havelland De Ort", + "abfall_havelland_de_self": "Abfall Havelland De Self", + "abfall_havelland_de_strasse": "Abfall Havelland De Strasse", + "abfall_io_f_abfallarten": "Abfall Io F Abfallarten", + "abfall_io_f_id_bezirk": "Abfall Io F Id Bezirk", + "abfall_io_f_id_kommune": "Abfall Io F Id Kommune", + "abfall_io_f_id_strasse": "Abfall Io F Id Strasse", + "abfall_io_f_id_strasse_hnr": "Abfall Io F Id Strasse Hnr", + "abfall_io_key": "Abfall Io Key", + "abfall_io_self": "Abfall Io Self", + "abfall_lippe_de_bezirk": "Abfall Lippe De Bezirk", + "abfall_lippe_de_gemeinde": "Abfall Lippe De Gemeinde", + "abfall_lippe_de_self": "Abfall Lippe De Self", + "abfall_neunkirchen_siegerland_de_self": "Abfall Neunkirchen Siegerland De Self", + "abfall_neunkirchen_siegerland_de_strasse": "Abfall Neunkirchen Siegerland De Strasse", + "abfallkalender_gifhorn_de_self": "Abfallkalender Gifhorn De Self", + "abfallkalender_gifhorn_de_street": "Abfallkalender Gifhorn De Street", + "abfallkalender_gifhorn_de_territory": "Abfallkalender Gifhorn De Territory", + "abfallnavi_de_hausnummer": "Abfallnavi De Hausnummer", + "abfallnavi_de_ort": "Abfallnavi De Ort", + "abfallnavi_de_self": "Abfallnavi De Self", + "abfallnavi_de_service": "Abfallnavi De Service", + "abfallnavi_de_strasse": "Abfallnavi De Strasse", + "abfalltermine_forchheim_de_area": "Abfalltermine Forchheim De Area", + "abfalltermine_forchheim_de_city": "Abfalltermine Forchheim De City", + "abfalltermine_forchheim_de_self": "Abfalltermine Forchheim De Self", + "abfallwirtschaft_fuerth_eu_id": "Abfallwirtschaft Fuerth Eu Id", + "abfallwirtschaft_fuerth_eu_self": "Abfallwirtschaft Fuerth Eu Self", + "abfallwirtschaft_germersheim_de_city": "Abfallwirtschaft Germersheim De City", + "abfallwirtschaft_germersheim_de_self": "Abfallwirtschaft Germersheim De Self", + "abfallwirtschaft_germersheim_de_street": "Abfallwirtschaft Germersheim De Street", + "abfallwirtschaft_pforzheim_de_address_suffix": "Abfallwirtschaft Pforzheim De Address Suffix", + "abfallwirtschaft_pforzheim_de_house_number": "Abfallwirtschaft Pforzheim De House Number", + "abfallwirtschaft_pforzheim_de_self": "Abfallwirtschaft Pforzheim De Self", + "abfallwirtschaft_pforzheim_de_street": "Abfallwirtschaft Pforzheim De Street", + "abfallwirtschaft_vechta_de_self": "Abfallwirtschaft Vechta De Self", + "abfallwirtschaft_vechta_de_stadt": "Abfallwirtschaft Vechta De Stadt", + "abfallwirtschaft_vechta_de_strasse": "Abfallwirtschaft Vechta De Strasse", + "abki_de_number": "Abki De Number", + "abki_de_self": "Abki De Self", + "abki_de_street": "Abki De Street", + "act_gov_au_self": "Act Gov Au Self", + "act_gov_au_split_suburb": "Act Gov Au Split Suburb", + "act_gov_au_suburb": "Act Gov Au Suburb", + "adur_worthing_gov_uk_address": "Adur Worthing Gov Uk Address", + "adur_worthing_gov_uk_postcode": "Adur Worthing Gov Uk Postcode", + "adur_worthing_gov_uk_self": "Adur Worthing Gov Uk Self", + "affaldonline_dk_municipality": "Affaldonline Dk Municipality", + "affaldonline_dk_self": "Affaldonline Dk Self", + "affaldonline_dk_values": "Affaldonline Dk Values", + "affarsverken_se_address": "Affarsverken Se Address", + "affarsverken_se_self": "Affarsverken Se Self", + "afvalstoffendienst_nl_addition": "Afvalstoffendienst Nl Addition", + "afvalstoffendienst_nl_house_number": "Afvalstoffendienst Nl House Number", + "afvalstoffendienst_nl_postcode": "Afvalstoffendienst Nl Postcode", + "afvalstoffendienst_nl_region": "Afvalstoffendienst Nl Region", + "afvalstoffendienst_nl_self": "Afvalstoffendienst Nl Self", + "aha_region_de_gemeinde": "Aha Region De Gemeinde", + "aha_region_de_hnr": "Aha Region De Hnr", + "aha_region_de_ladeort": "Aha Region De Ladeort", + "aha_region_de_self": "Aha Region De Self", + "aha_region_de_strasse": "Aha Region De Strasse", + "aha_region_de_zusatz": "Aha Region De Zusatz", + "ahe_de_hnr": "Ahe De Hnr", + "ahe_de_plz": "Ahe De Plz", + "ahe_de_self": "Ahe De Self", + "ahe_de_strasse": "Ahe De Strasse", + "ahk_heidekreis_de_city": "Ahk Heidekreis De City", + "ahk_heidekreis_de_house_number": "Ahk Heidekreis De House Number", + "ahk_heidekreis_de_postcode": "Ahk Heidekreis De Postcode", + "ahk_heidekreis_de_self": "Ahk Heidekreis De Self", + "ahk_heidekreis_de_street": "Ahk Heidekreis De Street", + "alchenstorf_ch_self": "Alchenstorf Ch Self", + "aliaserviziambientali_it_area": "Aliaserviziambientali It Area", + "aliaserviziambientali_it_municipality": "Aliaserviziambientali It Municipality", + "aliaserviziambientali_it_self": "Aliaserviziambientali It Self", + "allerdale_gov_uk_address_name_number": "Allerdale Gov Uk Address Name Number", + "allerdale_gov_uk_address_postcode": "Allerdale Gov Uk Address Postcode", + "allerdale_gov_uk_self": "Allerdale Gov Uk Self", + "alw_wf_de_ort": "Alw Wf De Ort", + "alw_wf_de_self": "Alw Wf De Self", + "alw_wf_de_strasse": "Alw Wf De Strasse", + "ambervalley_gov_uk_self": "Ambervalley Gov Uk Self", + "ambervalley_gov_uk_uprn": "Ambervalley Gov Uk Uprn", + "antrimandnewtownabbey_gov_uk_id": "Antrimandnewtownabbey Gov Uk Id", + "antrimandnewtownabbey_gov_uk_self": "Antrimandnewtownabbey Gov Uk Self", + "antrimandnewtownabbey_gov_uk_uprn": "Antrimandnewtownabbey Gov Uk Uprn", + "api_golemio_cz_api_key": "Api Golemio Cz Api Key", + "api_golemio_cz_auto_suffix": "Api Golemio Cz Auto Suffix", + "api_golemio_cz_ignored_containers": "Api Golemio Cz Ignored Containers", + "api_golemio_cz_lat": "Api Golemio Cz Lat", + "api_golemio_cz_lon": "Api Golemio Cz Lon", + "api_golemio_cz_only_monitored": "Api Golemio Cz Only Monitored", + "api_golemio_cz_radius": "Api Golemio Cz Radius", + "api_golemio_cz_self": "Api Golemio Cz Self", + "api_golemio_cz_suffix": "Api Golemio Cz Suffix", + "api_hubert_schmid_de_city": "Api Hubert Schmid De City", + "api_hubert_schmid_de_ortsteil": "Api Hubert Schmid De Ortsteil", + "api_hubert_schmid_de_self": "Api Hubert Schmid De Self", + "api_hubert_schmid_de_strasse": "Api Hubert Schmid De Strasse", + "app_abfallplus_de_app_id": "App Abfallplus De App Id", + "app_abfallplus_de_bezirk": "App Abfallplus De Bezirk", + "app_abfallplus_de_bundesland": "App Abfallplus De Bundesland", + "app_abfallplus_de_city": "App Abfallplus De City", + "app_abfallplus_de_hnr": "App Abfallplus De Hnr", + "app_abfallplus_de_landkreis": "App Abfallplus De Landkreis", + "app_abfallplus_de_self": "App Abfallplus De Self", + "app_abfallplus_de_strasse": "App Abfallplus De Strasse", + "app_my_local_services_au_lat": "App My Local Services Au Lat", + "app_my_local_services_au_lon": "App My Local Services Au Lon", + "app_my_local_services_au_self": "App My Local Services Au Self", + "apps_imactivate_com_number": "Apps Imactivate Com Number", + "apps_imactivate_com_postcode": "Apps Imactivate Com Postcode", + "apps_imactivate_com_self": "Apps Imactivate Com Self", + "apps_imactivate_com_street": "Apps Imactivate Com Street", + "apps_imactivate_com_town": "Apps Imactivate Com Town", + "ardsandnorthdown_gov_uk_self": "Ardsandnorthdown Gov Uk Self", + "ardsandnorthdown_gov_uk_uprn": "Ardsandnorthdown Gov Uk Uprn", + "armadale_wa_gov_au_address": "Armadale Wa Gov Au Address", + "armadale_wa_gov_au_self": "Armadale Wa Gov Au Self", + "art_trier_de_district": "Art Trier De District", + "art_trier_de_self": "Art Trier De Self", + "art_trier_de_zip_code": "Art Trier De Zip Code", + "arun_gov_uk_address": "Arun Gov Uk Address", + "arun_gov_uk_postcode": "Arun Gov Uk Postcode", + "arun_gov_uk_self": "Arun Gov Uk Self", + "ashfield_gov_uk_address": "Ashfield Gov Uk Address", + "ashfield_gov_uk_self": "Ashfield Gov Uk Self", + "ashford_gov_uk_postcode": "Ashford Gov Uk Postcode", + "ashford_gov_uk_self": "Ashford Gov Uk Self", + "ashford_gov_uk_uprn": "Ashford Gov Uk Uprn", + "asr_chemnitz_de_house_number": "Asr Chemnitz De House Number", + "asr_chemnitz_de_object_number": "Asr Chemnitz De Object Number", + "asr_chemnitz_de_self": "Asr Chemnitz De Self", + "asr_chemnitz_de_street": "Asr Chemnitz De Street", + "aucklandcouncil_govt_nz_area_number": "Aucklandcouncil Govt Nz Area Number", + "aucklandcouncil_govt_nz_self": "Aucklandcouncil Govt Nz Self", + "aw_harburg_de_level_1": "Aw Harburg De Level 1", + "aw_harburg_de_level_2": "Aw Harburg De Level 2", + "aw_harburg_de_level_3": "Aw Harburg De Level 3", + "aw_harburg_de_self": "Aw Harburg De Self", + "awb_bad_kreuznach_de_nummer": "Awb Bad Kreuznach De Nummer", + "awb_bad_kreuznach_de_ort": "Awb Bad Kreuznach De Ort", + "awb_bad_kreuznach_de_self": "Awb Bad Kreuznach De Self", + "awb_bad_kreuznach_de_stadtteil": "Awb Bad Kreuznach De Stadtteil", + "awb_bad_kreuznach_de_strasse": "Awb Bad Kreuznach De Strasse", + "awb_emsland_de_address_suffix": "Awb Emsland De Address Suffix", + "awb_emsland_de_city": "Awb Emsland De City", + "awb_emsland_de_house_number": "Awb Emsland De House Number", + "awb_emsland_de_self": "Awb Emsland De Self", + "awb_emsland_de_street": "Awb Emsland De Street", + "awb_es_de_city": "Awb Es De City", + "awb_es_de_self": "Awb Es De Self", + "awb_es_de_street": "Awb Es De Street", + "awb_mainz_bingen_de_bezirk": "Awb Mainz Bingen De Bezirk", + "awb_mainz_bingen_de_ort": "Awb Mainz Bingen De Ort", + "awb_mainz_bingen_de_self": "Awb Mainz Bingen De Self", + "awb_mainz_bingen_de_strasse": "Awb Mainz Bingen De Strasse", + "awb_oldenburg_de_house_number": "Awb Oldenburg De House Number", + "awb_oldenburg_de_self": "Awb Oldenburg De Self", + "awb_oldenburg_de_street": "Awb Oldenburg De Street", + "awbkoeln_de_building_number": "Awbkoeln De Building Number", + "awbkoeln_de_self": "Awbkoeln De Self", + "awbkoeln_de_street_code": "Awbkoeln De Street Code", + "awg_de_addition": "Awg De Addition", + "awg_de_city": "Awg De City", + "awg_de_hnr": "Awg De Hnr", + "awg_de_self": "Awg De Self", + "awg_de_street": "Awg De Street", + "awido_de_city": "Awido De City", + "awido_de_customer": "Awido De Customer", + "awido_de_housenumber": "Awido De Housenumber", + "awido_de_self": "Awido De Self", + "awido_de_street": "Awido De Street", + "awigo_de_hnr": "Awigo De Hnr", + "awigo_de_ort": "Awigo De Ort", + "awigo_de_self": "Awigo De Self", + "awigo_de_strasse": "Awigo De Strasse", + "awlneuss_de_building_number": "Awlneuss De Building Number", + "awlneuss_de_self": "Awlneuss De Self", + "awlneuss_de_street_code": "Awlneuss De Street Code", + "awlneuss_de_street_name": "Awlneuss De Street Name", + "awm_muenchen_de_b_collect_cycle": "Awm Muenchen De B Collect Cycle", + "awm_muenchen_de_house_number": "Awm Muenchen De House Number", + "awm_muenchen_de_p_collect_cycle": "Awm Muenchen De P Collect Cycle", + "awm_muenchen_de_r_collect_cycle": "Awm Muenchen De R Collect Cycle", + "awm_muenchen_de_self": "Awm Muenchen De Self", + "awm_muenchen_de_street": "Awm Muenchen De Street", + "awn_de_address_suffix": "Awn De Address Suffix", + "awn_de_city": "Awn De City", + "awn_de_house_number": "Awn De House Number", + "awn_de_self": "Awn De Self", + "awn_de_street": "Awn De Street", + "awr_de_city": "Awr De City", + "awr_de_self": "Awr De Self", + "awr_de_street": "Awr De Street", + "awsh_de_city": "Awsh De City", + "awsh_de_self": "Awsh De Self", + "awsh_de_street": "Awsh De Street", + "aylesburyvaledc_gov_uk_self": "Aylesburyvaledc Gov Uk Self", + "aylesburyvaledc_gov_uk_uprn": "Aylesburyvaledc Gov Uk Uprn", + "baden_umweltverbaende_at_region": "Baden Umweltverbaende At Region", + "baden_umweltverbaende_at_self": "Baden Umweltverbaende At Self", + "ballarat_vic_gov_au_self": "Ballarat Vic Gov Au Self", + "ballarat_vic_gov_au_street_address": "Ballarat Vic Gov Au Street Address", + "banyule_vic_gov_au_geolocation_id": "Banyule Vic Gov Au Geolocation Id", + "banyule_vic_gov_au_self": "Banyule Vic Gov Au Self", + "banyule_vic_gov_au_street_address": "Banyule Vic Gov Au Street Address", + "barnsley_gov_uk_postcode": "Barnsley Gov Uk Postcode", + "barnsley_gov_uk_self": "Barnsley Gov Uk Self", + "barnsley_gov_uk_uprn": "Barnsley Gov Uk Uprn", + "basildon_gov_uk_address": "Basildon Gov Uk Address", + "basildon_gov_uk_postcode": "Basildon Gov Uk Postcode", + "basildon_gov_uk_self": "Basildon Gov Uk Self", + "basildon_gov_uk_uprn": "Basildon Gov Uk Uprn", + "basingstoke_gov_uk_self": "Basingstoke Gov Uk Self", + "basingstoke_gov_uk_uprn": "Basingstoke Gov Uk Uprn", + "bathnes_gov_uk_housenameornumber": "Bathnes Gov Uk Housenameornumber", + "bathnes_gov_uk_postcode": "Bathnes Gov Uk Postcode", + "bathnes_gov_uk_self": "Bathnes Gov Uk Self", + "bathnes_gov_uk_uprn": "Bathnes Gov Uk Uprn", + "bcp_gov_uk_self": "Bcp Gov Uk Self", + "bcp_gov_uk_uprn": "Bcp Gov Uk Uprn", + "bedford_gov_uk_self": "Bedford Gov Uk Self", + "bedford_gov_uk_uprn": "Bedford Gov Uk Uprn", + "belmont_wa_gov_au_address": "Belmont Wa Gov Au Address", + "belmont_wa_gov_au_self": "Belmont Wa Gov Au Self", + "berlin_recycling_de_password": "Berlin Recycling De Password", + "berlin_recycling_de_self": "Berlin Recycling De Self", + "berlin_recycling_de_username": "Berlin Recycling De Username", + "bexley_gov_uk_self": "Bexley Gov Uk Self", + "bexley_gov_uk_uprn": "Bexley Gov Uk Uprn", + "bielefeld_de_address_suffix": "Bielefeld De Address Suffix", + "bielefeld_de_house_number": "Bielefeld De House Number", + "bielefeld_de_self": "Bielefeld De Self", + "bielefeld_de_street": "Bielefeld De Street", + "biffaleicester_co_uk_number": "Biffaleicester Co Uk Number", + "biffaleicester_co_uk_post_code": "Biffaleicester Co Uk Post Code", + "biffaleicester_co_uk_self": "Biffaleicester Co Uk Self", + "biffaleicester_co_uk_uprn": "Biffaleicester Co Uk Uprn", + "binzone_uk_self": "Binzone Uk Self", + "binzone_uk_uprn": "Binzone Uk Uprn", + "bir_no_house_letter": "Bir No House Letter", + "bir_no_house_number": "Bir No House Number", + "bir_no_self": "Bir No Self", + "bir_no_street_name": "Bir No Street Name", + "birmingham_gov_uk_postcode": "Birmingham Gov Uk Postcode", + "birmingham_gov_uk_self": "Birmingham Gov Uk Self", + "birmingham_gov_uk_uprn": "Birmingham Gov Uk Uprn", + "blackburn_gov_uk_self": "Blackburn Gov Uk Self", + "blackburn_gov_uk_uprn": "Blackburn Gov Uk Uprn", + "blackpool_gov_uk_postcode": "Blackpool Gov Uk Postcode", + "blackpool_gov_uk_self": "Blackpool Gov Uk Self", + "blackpool_gov_uk_uprn": "Blackpool Gov Uk Uprn", + "blacktown_nsw_gov_au_post_code": "Blacktown Nsw Gov Au Post Code", + "blacktown_nsw_gov_au_self": "Blacktown Nsw Gov Au Self", + "blacktown_nsw_gov_au_street_name": "Blacktown Nsw Gov Au Street Name", + "blacktown_nsw_gov_au_street_number": "Blacktown Nsw Gov Au Street Number", + "blacktown_nsw_gov_au_suburb": "Blacktown Nsw Gov Au Suburb", + "bmv_at_hausnummer": "Bmv At Hausnummer", + "bmv_at_ort": "Bmv At Ort", + "bmv_at_self": "Bmv At Self", + "bmv_at_strasse": "Bmv At Strasse", + "bracknell_forest_gov_uk_house_number": "Bracknell Forest Gov Uk House Number", + "bracknell_forest_gov_uk_post_code": "Bracknell Forest Gov Uk Post Code", + "bracknell_forest_gov_uk_self": "Bracknell Forest Gov Uk Self", + "bradford_gov_uk_self": "Bradford Gov Uk Self", + "bradford_gov_uk_uprn": "Bradford Gov Uk Uprn", + "braintree_gov_uk_house_number": "Braintree Gov Uk House Number", + "braintree_gov_uk_post_code": "Braintree Gov Uk Post Code", + "braintree_gov_uk_self": "Braintree Gov Uk Self", + "breckland_gov_uk_address": "Breckland Gov Uk Address", + "breckland_gov_uk_postcode": "Breckland Gov Uk Postcode", + "breckland_gov_uk_self": "Breckland Gov Uk Self", + "breckland_gov_uk_uprn": "Breckland Gov Uk Uprn", + "brisbane_qld_gov_au_self": "Brisbane Qld Gov Au Self", + "brisbane_qld_gov_au_street_name": "Brisbane Qld Gov Au Street Name", + "brisbane_qld_gov_au_street_number": "Brisbane Qld Gov Au Street Number", + "brisbane_qld_gov_au_suburb": "Brisbane Qld Gov Au Suburb", + "bristol_gov_uk_self": "Bristol Gov Uk Self", + "bristol_gov_uk_uprn": "Bristol Gov Uk Uprn", + "bromley_gov_uk_property": "Bromley Gov Uk Property", + "bromley_gov_uk_self": "Bromley Gov Uk Self", + "bromsgrove_gov_uk_postcode": "Bromsgrove Gov Uk Postcode", + "bromsgrove_gov_uk_self": "Bromsgrove Gov Uk Self", + "bromsgrove_gov_uk_uprn": "Bromsgrove Gov Uk Uprn", + "broxbourne_gov_uk_postcode": "Broxbourne Gov Uk Postcode", + "broxbourne_gov_uk_self": "Broxbourne Gov Uk Self", + "broxbourne_gov_uk_uprn": "Broxbourne Gov Uk Uprn", + "broxtowe_gov_uk_postcode": "Broxtowe Gov Uk Postcode", + "broxtowe_gov_uk_self": "Broxtowe Gov Uk Self", + "broxtowe_gov_uk_uprn": "Broxtowe Gov Uk Uprn", + "bsr_de_abf_hausnr": "Bsr De Abf Hausnr", + "bsr_de_abf_strasse": "Bsr De Abf Strasse", + "bsr_de_self": "Bsr De Self", + "buergerportal_de_district": "Buergerportal De District", + "buergerportal_de_number": "Buergerportal De Number", + "buergerportal_de_operator": "Buergerportal De Operator", + "buergerportal_de_self": "Buergerportal De Self", + "buergerportal_de_show_volume": "Buergerportal De Show Volume", + "buergerportal_de_street": "Buergerportal De Street", + "buergerportal_de_subdistrict": "Buergerportal De Subdistrict", + "burnley_gov_uk_self": "Burnley Gov Uk Self", + "burnley_gov_uk_uprn": "Burnley Gov Uk Uprn", + "bury_gov_uk_address": "Bury Gov Uk Address", + "bury_gov_uk_id": "Bury Gov Uk Id", + "bury_gov_uk_postcode": "Bury Gov Uk Postcode", + "bury_gov_uk_self": "Bury Gov Uk Self", + "c_trace_de_abfall": "C Trace De Abfall", + "c_trace_de_gemeinde": "Municipality", + "c_trace_de_hausnummer": "House number", + "c_trace_de_ort": "District", + "c_trace_de_ortsteil": "Subdistrict", + "c_trace_de_self": "C Trace De Self", + "c_trace_de_service": "Operator", + "c_trace_de_strasse": "Street", "calendar_title": "Calendar Title", - "city": "City", - "city_id": "City ID", - "client": "Client", - "community": "Community", - "company": "Company", - "council": "Council", - "county_id": "County ID", - "cp": "cp", - "customer": "Customer", - "district": "District", - "district_id": "District ID", - "door_num": "Door Number", - "email": "Email", - "f_abfallarten": "f_abfallarten", - "f_id_bezirk": "f_id_bezirk", - "f_id_kommune": "f_id_kommune", - "f_id_location": "f_id_location", - "f_id_strasse": "f_id_strasse", - "f_id_strasse_hnr": "f_id_strasse_hnr", - "file": "File Name", - "gelb_rhythm": "gelb_rhythm", - "gemeinde": "gemeinde", - "geolocation_id": "geolocation_id", - "gnumber": "gnumber", - "hausnr": "hausnr", - "hausnummer": "Haus Nummer", - "hnId": "hnId", - "hnr": "hnr", - "hnr_zusatz": "hnr_zusatz", - "house": "House", - "houseID": "House ID", - "houseNo": "House Number", - "house_letter": "House Letter", - "house_name": "House Name", - "house_number": "House Number", - "housenameornumber": "House Name or Number", - "housenumber": "House Number", - "housenumberorname": "House Number or Name", - "hpid": "HPID", - "husnummer": "Husnummer", - "id": "ID", - "key": "Key", - "kommune": "Kommune", - "level_1": "Level 1", - "level_2": "Level 2", - "level_3": "Level 3", - "llpgid": "llpgid", - "location": "Location", - "location_id": "Location ID", - "municipality": "Municipality", - "municipality_id": "Municipality ID", - "method": "Method", - "mm_frm_hnr_sel": "mm_frm_hnr_sel", - "mm_frm_ort_sel": "mm_frm_ort_sel", - "mm_frm_str_sel": "mm_frm_str_sel", - "name": "Name", - "name_number": "Name Number", - "nummer": "Nummer", - "objectID": "Object ID", - "object_number": "Object Number", - "operator": "Operator", - "offset": "Offset", - "ort": "Ort", - "ortsgemeinde": "Ortsgemeinde", - "ortsteil": "Ortsteil", - "papier_rhythm": "papier_rhythm", - "params": "Parameters", - "password": "Password", - "pid": "PID", - "plz": "plz", - "pois": "Pois", - "post_code": "Postcode", - "postcode": "Postcode", - "postal_code": "Postcode", - "predict": "Predict", - "prem_code": "Premises Code", - "premises_id": "Premises ID", - "project_id": "Project ID", - "property": "Property", - "propertyID": "Property ID", - "property_id": "Property ID", - "property_location": "Property Location", - "realmid": "Realm ID", - "record_id": "Record ID", - "region": "Region", - "regex": "Regex", - "rest_rhythm": "rest_rhythm", - "road": "Road", - "road_name": "Road Name", - "service": "Service", - "service_id": "Service ID", - "show_volume": "Show Volume", - "showmobile": "showmobile", - "snumber": "snumber", - "split_at": "Split At", - "split_suburb": "Split Suburb", - "stadt": "Stadt", - "stadtteil": "Stadtteil", - "standort": "Standort", - "state": "State", - "street": "Street", - "streetId": "Street ID", - "streetIndex": "Street Index", - "streetName": "Street Name", - "street_address": "Street Address", - "street_code": "Street Code", - "street_id": "Street ID", - "street_name": "Street Name", - "street_number": "Street Number", - "street_town": "Street Town", - "streetnr": "streetnr", - "subdistrict": "Subdistrict", - "subdomain": "Subdomain", - "suburb": "Suburb", - "teilgebiet": "teilgebiet", - "title_template": "Title Template", - "town": "Town", - "turnus": "turnus", - "types": "Types", - "unit_number": "Unit Number", - "uprn": "UPRN", - "url": "URL", - "username": "Username", - "usrn": "USRN", - "village": "Village", - "version": "Version", - "verify_ssl": "Verify SSL", - "waste_district": "Waste District", - "waste_object_ids": "Waste Object IDs", - "xmlurl": "XML URL", - "zip_code": "Zipcode", - "zipcode": "Zipcode", - "zone": "Zone", - "zone_id": "Zone ID", - "zusatz": "Zusatz", - "p_collect_cycle": "P Collect Cycle", - "lat": "Lat", - "calendar_splitter": "Calendar Splitter", - "number": "Number", - "lon": "Lon", - "ladeort": "Ladeort", - "r_collect_cycle": "R Collect Cycle", - "ignored_containers": "Ignored Containers", - "zoneID": "Zone Id", - "api_key": "Api Key", - "suffix": "Suffix", - "auto_suffix": "Auto Suffix", - "show_nights": "Show Nights", - "city_part": "City Part", - "calendar_title_separator": "Calendar Title Separator", - "radius": "Radius", - "only_monitored": "Only Monitored", - "municipal": "Municipal", - "app_id": "App Id", - "landkreis": "Landkreis", - "self": "Self", - "route": "Route", - "bundesland": "Bundesland", - "entry_id": "Entry Id", - "address_id": "Address Id", - "_": "", - "include_ordered_pickup_entries": "Include Ordered Pickup Entries", - "b_collect_cycle": "B Collect Cycle", - "sector": "Sector", - "phone": "Phone", - "strasse": "Strasse", - "year_field": "Year Field", - "weekdays": "Weekdays", - "dates": "Dates", - "type": "Type", - "until": "Until", - "excludes": "Excludes", - "frequency": "Frequency", - "headers": "Headers", - "start": "Start", - "count": "Count", - "interval": "Interval", - "bill_number": "Bill Number", - "values": "Values", - "property_no": "Property No", - "postCode": "Post Code", - "zipCode": "Zip Code", - "garden_cutomer": "Garden Cutomer", - "app": "App", - "service_provider": "Service Provider", - "facility_id": "Facility Id", - "abfall": "Abfall", - "english": "English", - "voivodeship": "Voivodeship", - "building_id": "Building Id", - "addressNo": "Address No", - "territory": "Territory", - "addition": "Addition", - "commune": "Commune" + "calgary_ca_self": "Calgary Ca Self", + "calgary_ca_street_address": "Calgary Ca Street Address", + "cambridge_gov_uk_number": "Cambridge Gov Uk Number", + "cambridge_gov_uk_post_code": "Cambridge Gov Uk Post Code", + "cambridge_gov_uk_self": "Cambridge Gov Uk Self", + "camden_gov_uk_self": "Camden Gov Uk Self", + "camden_gov_uk_uprn": "Camden Gov Uk Uprn", + "campbelltown_nsw_gov_au_post_code": "Campbelltown Nsw Gov Au Post Code", + "campbelltown_nsw_gov_au_self": "Campbelltown Nsw Gov Au Self", + "campbelltown_nsw_gov_au_street_name": "Campbelltown Nsw Gov Au Street Name", + "campbelltown_nsw_gov_au_street_number": "Campbelltown Nsw Gov Au Street Number", + "campbelltown_nsw_gov_au_suburb": "Campbelltown Nsw Gov Au Suburb", + "canadabay_nsw_gov_au_self": "Canadabay Nsw Gov Au Self", + "canadabay_nsw_gov_au_street_name": "Canadabay Nsw Gov Au Street Name", + "canadabay_nsw_gov_au_street_number": "Canadabay Nsw Gov Au Street Number", + "canadabay_nsw_gov_au_suburb": "Canadabay Nsw Gov Au Suburb", + "canterbury_gov_uk_number": "Canterbury Gov Uk Number", + "canterbury_gov_uk_post_code": "Canterbury Gov Uk Post Code", + "canterbury_gov_uk_self": "Canterbury Gov Uk Self", + "cardiff_gov_uk_self": "Cardiff Gov Uk Self", + "cardiff_gov_uk_uprn": "Cardiff Gov Uk Uprn", + "cardinia_vic_gov_au_address": "Cardinia Vic Gov Au Address", + "cardinia_vic_gov_au_self": "Cardinia Vic Gov Au Self", + "ccc_govt_nz_address": "Ccc Govt Nz Address", + "ccc_govt_nz_self": "Ccc Govt Nz Self", + "ceb_coburg_de_self": "Ceb Coburg De Self", + "ceb_coburg_de_street": "Ceb Coburg De Street", + "cederbaum_de_self": "Cederbaum De Self", + "cederbaum_de_street": "Cederbaum De Street", + "centralbedfordshire_gov_uk_house_name": "Centralbedfordshire Gov Uk House Name", + "centralbedfordshire_gov_uk_postcode": "Centralbedfordshire Gov Uk Postcode", + "centralbedfordshire_gov_uk_self": "Centralbedfordshire Gov Uk Self", + "charnwood_gov_uk_address": "Charnwood Gov Uk Address", + "charnwood_gov_uk_self": "Charnwood Gov Uk Self", + "cherwell_gov_uk_self": "Cherwell Gov Uk Self", + "cherwell_gov_uk_uprn": "Cherwell Gov Uk Uprn", + "cheshire_east_gov_uk_name_number": "Cheshire East Gov Uk Name Number", + "cheshire_east_gov_uk_postcode": "Cheshire East Gov Uk Postcode", + "cheshire_east_gov_uk_self": "Cheshire East Gov Uk Self", + "cheshire_east_gov_uk_uprn": "Cheshire East Gov Uk Uprn", + "cheshire_west_and_chester_gov_uk_self": "Cheshire West And Chester Gov Uk Self", + "cheshire_west_and_chester_gov_uk_uprn": "Cheshire West And Chester Gov Uk Uprn", + "chesterfield_gov_uk_self": "Chesterfield Gov Uk Self", + "chesterfield_gov_uk_uprn": "Chesterfield Gov Uk Uprn", + "chichester_gov_uk_self": "Chichester Gov Uk Self", + "chichester_gov_uk_uprn": "Chichester Gov Uk Uprn", + "chiemgau_recycling_lk_rosenheim_district": "Chiemgau Recycling Lk Rosenheim District", + "chiemgau_recycling_lk_rosenheim_self": "Chiemgau Recycling Lk Rosenheim Self", + "chiltern_gov_uk_self": "Chiltern Gov Uk Self", + "chiltern_gov_uk_uprn": "Chiltern Gov Uk Uprn", + "cidiu_it_city": "Cidiu It City", + "cidiu_it_self": "Cidiu It Self", + "cidiu_it_street": "Cidiu It Street", + "cidiu_it_street_number": "Cidiu It Street Number", + "circulus_nl_house_number": "Circulus Nl House Number", + "circulus_nl_postal_code": "Circulus Nl Postal Code", + "circulus_nl_self": "Circulus Nl Self", + "citiesapps_com_calendar": "Citiesapps Com Calendar", + "citiesapps_com_city": "Citiesapps Com City", + "citiesapps_com_email": "Citiesapps Com Email", + "citiesapps_com_password": "Citiesapps Com Password", + "citiesapps_com_phone": "Citiesapps Com Phone", + "citiesapps_com_self": "Citiesapps Com Self", + "cmcitymedia_de_district": "Cmcitymedia De District", + "cmcitymedia_de_hpid": "Cmcitymedia De Hpid", + "cmcitymedia_de_realmid": "Cmcitymedia De Realmid", + "cmcitymedia_de_self": "Cmcitymedia De Self", + "cockburn_wa_gov_au_address": "Cockburn Wa Gov Au Address", + "cockburn_wa_gov_au_property_no": "Cockburn Wa Gov Au Property No", + "cockburn_wa_gov_au_self": "Cockburn Wa Gov Au Self", + "colchester_gov_uk_llpgid": "Colchester Gov Uk Llpgid", + "colchester_gov_uk_self": "Colchester Gov Uk Self", + "conwy_gov_uk_self": "Conwy Gov Uk Self", + "conwy_gov_uk_uprn": "Conwy Gov Uk Uprn", + "cornwall_gov_uk_housenumberorname": "Cornwall Gov Uk Housenumberorname", + "cornwall_gov_uk_postcode": "Cornwall Gov Uk Postcode", + "cornwall_gov_uk_self": "Cornwall Gov Uk Self", + "cornwall_gov_uk_uprn": "Cornwall Gov Uk Uprn", + "crawley_gov_uk_self": "Crawley Gov Uk Self", + "crawley_gov_uk_uprn": "Crawley Gov Uk Uprn", + "crawley_gov_uk_usrn": "Crawley Gov Uk Usrn", + "croydon_gov_uk_houseID": "Croydon Gov Uk House Id", + "croydon_gov_uk_postcode": "Croydon Gov Uk Postcode", + "croydon_gov_uk_self": "Croydon Gov Uk Self", + "cumberland_nsw_gov_au_self": "Cumberland Nsw Gov Au Self", + "cumberland_nsw_gov_au_street_name": "Cumberland Nsw Gov Au Street Name", + "cumberland_nsw_gov_au_street_number": "Cumberland Nsw Gov Au Street Number", + "cumberland_nsw_gov_au_suburb": "Cumberland Nsw Gov Au Suburb", + "darebin_vic_gov_au_property_location": "Darebin Vic Gov Au Property Location", + "darebin_vic_gov_au_self": "Darebin Vic Gov Au Self", + "darlington_gov_uk_self": "Darlington Gov Uk Self", + "darlington_gov_uk_uprn": "Darlington Gov Uk Uprn", + "data_umweltprofis_at_self": "Data Umweltprofis At Self", + "data_umweltprofis_at_url": "Data Umweltprofis At Url", + "data_umweltprofis_at_xmlurl": "Data Umweltprofis At Xmlurl", + "denbighshire_gov_uk_self": "Denbighshire Gov Uk Self", + "denbighshire_gov_uk_uprn": "Denbighshire Gov Uk Uprn", + "derby_gov_uk_house_number": "Derby Gov Uk House Number", + "derby_gov_uk_post_code": "Derby Gov Uk Post Code", + "derby_gov_uk_premises_id": "Derby Gov Uk Premises Id", + "derby_gov_uk_self": "Derby Gov Uk Self", + "dillingen_saar_de_self": "Dillingen Saar De Self", + "dillingen_saar_de_street": "Dillingen Saar De Street", + "doncaster_gov_uk_self": "Doncaster Gov Uk Self", + "doncaster_gov_uk_uprn": "Doncaster Gov Uk Uprn", + "dover_gov_uk_self": "Dover Gov Uk Self", + "dover_gov_uk_uprn": "Dover Gov Uk Uprn", + "dudley_gov_uk_self": "Dudley Gov Uk Self", + "dudley_gov_uk_uprn": "Dudley Gov Uk Uprn", + "dunedin_govt_nz_address": "Dunedin Govt Nz Address", + "dunedin_govt_nz_self": "Dunedin Govt Nz Self", + "durham_gov_uk_self": "Durham Gov Uk Self", + "durham_gov_uk_uprn": "Durham Gov Uk Uprn", + "ead_darmstadt_de_self": "Ead Darmstadt De Self", + "ead_darmstadt_de_street": "Ead Darmstadt De Street", + "east_ayrshire_gov_uk_self": "East Ayrshire Gov Uk Self", + "east_ayrshire_gov_uk_uprn": "East Ayrshire Gov Uk Uprn", + "east_northamptonshire_gov_uk_self": "East Northamptonshire Gov Uk Self", + "east_northamptonshire_gov_uk_uprn": "East Northamptonshire Gov Uk Uprn", + "east_renfrewshire_gov_uk_postcode": "East Renfrewshire Gov Uk Postcode", + "east_renfrewshire_gov_uk_self": "East Renfrewshire Gov Uk Self", + "east_renfrewshire_gov_uk_uprn": "East Renfrewshire Gov Uk Uprn", + "eastcambs_gov_uk_self": "Eastcambs Gov Uk Self", + "eastcambs_gov_uk_uprn": "Eastcambs Gov Uk Uprn", + "eastdevon_gov_uk_self": "Eastdevon Gov Uk Self", + "eastdevon_gov_uk_uprn": "Eastdevon Gov Uk Uprn", + "eastherts_gov_uk_address_name_number": "Eastherts Gov Uk Address Name Number", + "eastherts_gov_uk_address_name_numer": "Eastherts Gov Uk Address Name Numer", + "eastherts_gov_uk_address_postcode": "Eastherts Gov Uk Address Postcode", + "eastherts_gov_uk_address_street": "Eastherts Gov Uk Address Street", + "eastherts_gov_uk_self": "Eastherts Gov Uk Self", + "eastherts_gov_uk_street_town": "Eastherts Gov Uk Street Town", + "eastleigh_gov_uk_self": "Eastleigh Gov Uk Self", + "eastleigh_gov_uk_uprn": "Eastleigh Gov Uk Uprn", + "eastlothian_gov_uk_address": "Eastlothian Gov Uk Address", + "eastlothian_gov_uk_address_id": "Eastlothian Gov Uk Address Id", + "eastlothian_gov_uk_postcode": "Eastlothian Gov Uk Postcode", + "eastlothian_gov_uk_self": "Eastlothian Gov Uk Self", + "eastriding_gov_uk_postcode": "Eastriding Gov Uk Postcode", + "eastriding_gov_uk_self": "Eastriding Gov Uk Self", + "eastriding_gov_uk_uprn": "Eastriding Gov Uk Uprn", + "ecoharmonogram_pl_additional_sides_matcher": "Ecoharmonogram Pl Additional Sides Matcher", + "ecoharmonogram_pl_app": "Ecoharmonogram Pl App", + "ecoharmonogram_pl_community": "Ecoharmonogram Pl Community", + "ecoharmonogram_pl_district": "Ecoharmonogram Pl District", + "ecoharmonogram_pl_house_number": "Ecoharmonogram Pl House Number", + "ecoharmonogram_pl_self": "Ecoharmonogram Pl Self", + "ecoharmonogram_pl_street": "Ecoharmonogram Pl Street", + "ecoharmonogram_pl_town": "Ecoharmonogram Pl Town", + "edlitz_at__": "Edlitz At", + "edlitz_at_self": "Edlitz At Self", + "edpevent_se_self": "Edpevent Se Self", + "edpevent_se_service_provider": "Edpevent Se Service Provider", + "edpevent_se_street_address": "Edpevent Se Street Address", + "edpevent_se_url": "Edpevent Se Url", + "egn_abfallkalender_de_city": "Egn Abfallkalender De City", + "egn_abfallkalender_de_district": "Egn Abfallkalender De District", + "egn_abfallkalender_de_housenumber": "Egn Abfallkalender De Housenumber", + "egn_abfallkalender_de_self": "Egn Abfallkalender De Self", + "egn_abfallkalender_de_street": "Egn Abfallkalender De Street", + "eigenbetrieb_abfallwirtschaft_de_city": "Eigenbetrieb Abfallwirtschaft De City", + "eigenbetrieb_abfallwirtschaft_de_self": "Eigenbetrieb Abfallwirtschaft De Self", + "eigenbetrieb_abfallwirtschaft_de_street": "Eigenbetrieb Abfallwirtschaft De Street", + "ekosystem_wroc_pl_location_id": "Ekosystem Wroc Pl Location Id", + "ekosystem_wroc_pl_self": "Ekosystem Wroc Pl Self", + "elmbridge_gov_uk_self": "Elmbridge Gov Uk Self", + "elmbridge_gov_uk_uprn": "Elmbridge Gov Uk Uprn", + "environmentfirst_co_uk_name": "Environmentfirst Co Uk Name", + "environmentfirst_co_uk_number": "Environmentfirst Co Uk Number", + "environmentfirst_co_uk_post_code": "Environmentfirst Co Uk Post Code", + "environmentfirst_co_uk_self": "Environmentfirst Co Uk Self", + "environmentfirst_co_uk_uprn": "Environmentfirst Co Uk Uprn", + "erlangen_hoechstadt_de_city": "Erlangen Hoechstadt De City", + "erlangen_hoechstadt_de_self": "Erlangen Hoechstadt De Self", + "erlangen_hoechstadt_de_street": "Erlangen Hoechstadt De Street", + "esch_lu_self": "Esch Lu Self", + "esch_lu_zone": "Esch Lu Zone", + "eth_erd_hu_city": "Eth Erd Hu City", + "eth_erd_hu_house_number": "Eth Erd Hu House Number", + "eth_erd_hu_self": "Eth Erd Hu Self", + "eth_erd_hu_street": "Eth Erd Hu Street", + "exeter_gov_uk_self": "Exeter Gov Uk Self", + "exeter_gov_uk_uprn": "Exeter Gov Uk Uprn", + "fareham_gov_uk_postcode": "Fareham Gov Uk Postcode", + "fareham_gov_uk_road_name": "Fareham Gov Uk Road Name", + "fareham_gov_uk_self": "Fareham Gov Uk Self", + "fccenvironment_co_uk_region": "Fccenvironment Co Uk Region", + "fccenvironment_co_uk_self": "Fccenvironment Co Uk Self", + "fccenvironment_co_uk_uprn": "Fccenvironment Co Uk Uprn", + "fenland_gov_uk_house_number": "Fenland Gov Uk House Number", + "fenland_gov_uk_post_code": "Fenland Gov Uk Post Code", + "fenland_gov_uk_self": "Fenland Gov Uk Self", + "fife_gov_uk_self": "Fife Gov Uk Self", + "fife_gov_uk_uprn": "Fife Gov Uk Uprn", + "fkf_bo_hu_self": "Fkf Bo Hu Self", + "fkf_bo_hu_street": "Fkf Bo Hu Street", + "fkf_bp_hu_district": "Fkf Bp Hu District", + "fkf_bp_hu_house_number": "Fkf Bp Hu House Number", + "fkf_bp_hu_self": "Fkf Bp Hu Self", + "fkf_bp_hu_street": "Fkf Bp Hu Street", + "flintshire_gov_uk_self": "Flintshire Gov Uk Self", + "flintshire_gov_uk_uprn": "Flintshire Gov Uk Uprn", + "fosenrenovasjon_no_address": "Fosenrenovasjon No Address", + "fosenrenovasjon_no_self": "Fosenrenovasjon No Self", + "frankenberg_de_district": "Frankenberg De District", + "frankenberg_de_self": "Frankenberg De Self", + "frankenberg_de_street": "Frankenberg De Street", + "frankston_vic_gov_au_address": "Frankston Vic Gov Au Address", + "frankston_vic_gov_au_self": "Frankston Vic Gov Au Self", + "fylde_gov_uk_self": "Fylde Gov Uk Self", + "fylde_gov_uk_uprn": "Fylde Gov Uk Uprn", + "gastrikeatervinnare_se_city": "Gastrikeatervinnare Se City", + "gastrikeatervinnare_se_self": "Gastrikeatervinnare Se Self", + "gastrikeatervinnare_se_street": "Gastrikeatervinnare Se Street", + "gateshead_gov_uk_self": "Gateshead Gov Uk Self", + "gateshead_gov_uk_uprn": "Gateshead Gov Uk Uprn", + "geelongaustralia_com_au_address": "Geelongaustralia Com Au Address", + "geelongaustralia_com_au_self": "Geelongaustralia Com Au Self", + "geoport_nwm_de_district": "Geoport Nwm De District", + "geoport_nwm_de_self": "Geoport Nwm De Self", + "glasgow_gov_uk_self": "Glasgow Gov Uk Self", + "glasgow_gov_uk_uprn": "Glasgow Gov Uk Uprn", + "gmina_miekinia_pl_location_id": "Gmina Miekinia Pl Location Id", + "gmina_miekinia_pl_self": "Gmina Miekinia Pl Self", + "goldcoast_qld_gov_au_self": "Goldcoast Qld Gov Au Self", + "goldcoast_qld_gov_au_street_address": "Goldcoast Qld Gov Au Street Address", + "gotland_se_self": "Gotland Se Self", + "gotland_se_uprn": "Gotland Se Uprn", + "grafikai_svara_lt_district": "Grafikai Svara Lt District", + "grafikai_svara_lt_house_number": "Grafikai Svara Lt House Number", + "grafikai_svara_lt_region": "Grafikai Svara Lt Region", + "grafikai_svara_lt_self": "Grafikai Svara Lt Self", + "grafikai_svara_lt_street": "Grafikai Svara Lt Street", + "grafikai_svara_lt_waste_object_ids": "Grafikai Svara Lt Waste Object Ids", + "grosswangen_ch_self": "Grosswangen Ch Self", + "guildford_gov_uk_self": "Guildford Gov Uk Self", + "guildford_gov_uk_uprn": "Guildford Gov Uk Uprn", + "gwynedd_gov_uk_self": "Gwynedd Gov Uk Self", + "gwynedd_gov_uk_uprn": "Gwynedd Gov Uk Uprn", + "haringey_gov_uk_self": "Haringey Gov Uk Self", + "haringey_gov_uk_uprn": "Haringey Gov Uk Uprn", + "harlow_gov_uk_self": "Harlow Gov Uk Self", + "harlow_gov_uk_uprn": "Harlow Gov Uk Uprn", + "harrow_gov_uk_self": "Harrow Gov Uk Self", + "harrow_gov_uk_uprn": "Harrow Gov Uk Uprn", + "hart_gov_uk_self": "Hart Gov Uk Self", + "hart_gov_uk_uprn": "Hart Gov Uk Uprn", + "hausmuell_info_hausnummer": "House number", + "hausmuell_info_ort": "City", + "hausmuell_info_ortsteil": "District", + "hausmuell_info_self": "Hausmuell Info Self", + "hausmuell_info_strasse": "Street", + "hausmuell_info_subdomain": "Subdomain", + "hawkesbury_nsw_gov_au_houseNo": "Hawkesbury Nsw Gov Au House No", + "hawkesbury_nsw_gov_au_postCode": "Hawkesbury Nsw Gov Au Post Code", + "hawkesbury_nsw_gov_au_self": "Hawkesbury Nsw Gov Au Self", + "hawkesbury_nsw_gov_au_street": "Hawkesbury Nsw Gov Au Street", + "hawkesbury_nsw_gov_au_suburb": "Hawkesbury Nsw Gov Au Suburb", + "hcc_govt_nz_address": "Hcc Govt Nz Address", + "hcc_govt_nz_self": "Hcc Govt Nz Self", + "heilbronn_de_hausnr": "House number", + "heilbronn_de_plz": "Zip Code", + "heilbronn_de_self": "Heilbronn De Self", + "heilbronn_de_strasse": "Street", + "herefordshire_gov_uk_number": "Herefordshire Gov Uk Number", + "herefordshire_gov_uk_post_code": "Herefordshire Gov Uk Post Code", + "herefordshire_gov_uk_self": "Herefordshire Gov Uk Self", + "highland_gov_uk_predict": "Highland Gov Uk Predict", + "highland_gov_uk_self": "Highland Gov Uk Self", + "highland_gov_uk_uprn": "Highland Gov Uk Uprn", + "highpeak_gov_uk_postcode": "Highpeak Gov Uk Postcode", + "highpeak_gov_uk_self": "Highpeak Gov Uk Self", + "highpeak_gov_uk_uprn": "Highpeak Gov Uk Uprn", + "hobsonsbay_vic_gov_au_self": "Hobsonsbay Vic Gov Au Self", + "hobsonsbay_vic_gov_au_street_address": "Hobsonsbay Vic Gov Au Street Address", + "hornsby_nsw_gov_au_property_id": "Hornsby Nsw Gov Au Property Id", + "hornsby_nsw_gov_au_self": "Hornsby Nsw Gov Au Self", + "hornsby_nsw_gov_au_show_nights": "Hornsby Nsw Gov Au Show Nights", + "horowhenua_govt_nz_post_code": "Horowhenua Govt Nz Post Code", + "horowhenua_govt_nz_self": "Horowhenua Govt Nz Self", + "horowhenua_govt_nz_street_name": "Horowhenua Govt Nz Street Name", + "horowhenua_govt_nz_street_number": "Horowhenua Govt Nz Street Number", + "horowhenua_govt_nz_town": "Horowhenua Govt Nz Town", + "horsham_gov_uk_self": "Horsham Gov Uk Self", + "horsham_gov_uk_uprn": "Horsham Gov Uk Uprn", + "hounslow_gov_uk_self": "Hounslow Gov Uk Self", + "hounslow_gov_uk_uprn": "Hounslow Gov Uk Uprn", + "hull_gov_uk_self": "Hull Gov Uk Self", + "hull_gov_uk_uprn": "Hull Gov Uk Uprn", + "hume_vic_gov_au_address": "Hume Vic Gov Au Address", + "hume_vic_gov_au_predict": "Hume Vic Gov Au Predict", + "hume_vic_gov_au_self": "Hume Vic Gov Au Self", + "huntingdonshire_gov_uk_self": "Huntingdonshire Gov Uk Self", + "huntingdonshire_gov_uk_uprn": "Huntingdonshire Gov Uk Uprn", + "hvcgroep_nl_house_letter": "Hvcgroep Nl House Letter", + "hvcgroep_nl_house_number": "Hvcgroep Nl House Number", + "hvcgroep_nl_postal_code": "Hvcgroep Nl Postal Code", + "hvcgroep_nl_self": "Hvcgroep Nl Self", + "hvcgroep_nl_service": "Hvcgroep Nl Service", + "hvcgroep_nl_suffix": "Hvcgroep Nl Suffix", + "hygea_be_cp": "Hygea Be Cp", + "hygea_be_self": "Hygea Be Self", + "hygea_be_streetIndex": "Hygea Be Street Index", + "iapp_itouchvision_com_municipality": "Iapp Itouchvision Com Municipality", + "iapp_itouchvision_com_self": "Iapp Itouchvision Com Self", + "iapp_itouchvision_com_uprn": "Iapp Itouchvision Com Uprn", + "ics_file": "Ics File", + "ics_headers": "Ics Headers", + "ics_method": "Ics Method", + "ics_offset": "Ics Offset", + "ics_params": "Ics Params", + "ics_regex": "Ics Regex", + "ics_self": "Ics Self", + "ics_split_at": "Ics Split At", + "ics_title_template": "Ics Title Template", + "ics_url": "Ics Url", + "ics_verify_ssl": "Ics Verify Ssl", + "ics_version": "Ics Version", + "ics_year_field": "Ics Year Field", + "ilrifiutologo_it_house_number": "Ilrifiutologo It House Number", + "ilrifiutologo_it_self": "Ilrifiutologo It Self", + "ilrifiutologo_it_street": "Ilrifiutologo It Street", + "ilrifiutologo_it_town": "Ilrifiutologo It Town", + "impactapps_com_au_property_id": "Impactapps Com Au Property Id", + "impactapps_com_au_self": "Impactapps Com Au Self", + "impactapps_com_au_service": "Impactapps Com Au Service", + "impactapps_com_au_street_name": "Impactapps Com Au Street Name", + "impactapps_com_au_street_number": "Impactapps Com Au Street Number", + "impactapps_com_au_suburb": "Impactapps Com Au Suburb", + "infeo_at_city": "Infeo At City", + "infeo_at_customer": "Infeo At Customer", + "infeo_at_housenumber": "Infeo At Housenumber", + "infeo_at_self": "Infeo At Self", + "infeo_at_street": "Infeo At Street", + "infeo_at_zone": "Infeo At Zone", + "innerwest_nsw_gov_au_self": "Innerwest Nsw Gov Au Self", + "innerwest_nsw_gov_au_street_name": "Innerwest Nsw Gov Au Street Name", + "innerwest_nsw_gov_au_street_number": "Innerwest Nsw Gov Au Street Number", + "innerwest_nsw_gov_au_suburb": "Innerwest Nsw Gov Au Suburb", + "insert_it_de_hnr": "Insert It De Hnr", + "insert_it_de_location_id": "Insert It De Location Id", + "insert_it_de_municipality": "Insert It De Municipality", + "insert_it_de_self": "Insert It De Self", + "insert_it_de_street": "Insert It De Street", + "ipswich_qld_gov_au_self": "Ipswich Qld Gov Au Self", + "ipswich_qld_gov_au_street": "Ipswich Qld Gov Au Street", + "ipswich_qld_gov_au_suburb": "Ipswich Qld Gov Au Suburb", + "iris_salten_no_address": "Iris Salten No Address", + "iris_salten_no_kommune": "Iris Salten No Kommune", + "iris_salten_no_self": "Iris Salten No Self", + "islington_gov_uk_self": "Islington Gov Uk Self", + "islington_gov_uk_uprn": "Islington Gov Uk Uprn", + "isontinambiente_it_address_id": "Isontinambiente It Address Id", + "isontinambiente_it_self": "Isontinambiente It Self", + "iweb_itouchvision_com_council": "Iweb Itouchvision Com Council", + "iweb_itouchvision_com_postcode": "Iweb Itouchvision Com Postcode", + "iweb_itouchvision_com_self": "Iweb Itouchvision Com Self", + "iweb_itouchvision_com_uprn": "Iweb Itouchvision Com Uprn", + "jointwastesolutions_org_borough": "Jointwastesolutions Org Borough", + "jointwastesolutions_org_house": "Jointwastesolutions Org House", + "jointwastesolutions_org_postcode": "Jointwastesolutions Org Postcode", + "jointwastesolutions_org_self": "Jointwastesolutions Org Self", + "jumomind_de_area_id": "Jumomind De Area Id", + "jumomind_de_city": "Jumomind De City", + "jumomind_de_city_id": "Jumomind De City Id", + "jumomind_de_house_number": "Jumomind De House Number", + "jumomind_de_self": "Jumomind De Self", + "jumomind_de_service_id": "Jumomind De Service Id", + "jumomind_de_street": "Jumomind De Street", + "juneavfall_se_self": "Juneavfall Se Self", + "juneavfall_se_street_address": "Juneavfall Se Street Address", + "kaev_niederlausitz_abf_suche": "Kaev Niederlausitz Abf Suche", + "kaev_niederlausitz_self": "Kaev Niederlausitz Self", + "karlsruhe_de_hnr": "House number", + "karlsruhe_de_ladeort": "Loading point", + "karlsruhe_de_self": "Karlsruhe De Self", + "karlsruhe_de_street": "Street", + "kiertokapula_fi_bill_number": "Kiertokapula Fi Bill Number", + "kiertokapula_fi_password": "Kiertokapula Fi Password", + "kiertokapula_fi_self": "Kiertokapula Fi Self", + "kingston_gov_uk_self": "Kingston Gov Uk Self", + "kingston_gov_uk_uprn": "Kingston Gov Uk Uprn", + "kingston_vic_gov_au_post_code": "Kingston Vic Gov Au Post Code", + "kingston_vic_gov_au_self": "Kingston Vic Gov Au Self", + "kingston_vic_gov_au_street_name": "Kingston Vic Gov Au Street Name", + "kingston_vic_gov_au_street_number": "Kingston Vic Gov Au Street Number", + "kingston_vic_gov_au_suburb": "Kingston Vic Gov Au Suburb", + "kirklees_gov_uk_door_num": "Kirklees Gov Uk Door Num", + "kirklees_gov_uk_postcode": "Kirklees Gov Uk Postcode", + "kirklees_gov_uk_self": "Kirklees Gov Uk Self", + "kirklees_gov_uk_uprn": "Kirklees Gov Uk Uprn", + "knox_vic_gov_au_self": "Knox Vic Gov Au Self", + "knox_vic_gov_au_street_address": "Knox Vic Gov Au Street Address", + "koeniz_ch_district": "Koeniz Ch District", + "koeniz_ch_municipality": "Koeniz Ch Municipality", + "koeniz_ch_self": "Koeniz Ch Self", + "korneuburg_stadtservice_at_self": "Korneuburg Stadtservice At Self", + "korneuburg_stadtservice_at_street_name": "Korneuburg Stadtservice At Street Name", + "korneuburg_stadtservice_at_street_number": "Korneuburg Stadtservice At Street Number", + "korneuburg_stadtservice_at_teilgebiet": "Korneuburg Stadtservice At Teilgebiet", + "ks_boerde_de_house_number": "Ks Boerde De House Number", + "ks_boerde_de_self": "Ks Boerde De Self", + "ks_boerde_de_street": "Ks Boerde De Street", + "ks_boerde_de_village": "Ks Boerde De Village", + "kuringgai_nsw_gov_au_post_code": "Kuringgai Nsw Gov Au Post Code", + "kuringgai_nsw_gov_au_self": "Kuringgai Nsw Gov Au Self", + "kuringgai_nsw_gov_au_street_name": "Kuringgai Nsw Gov Au Street Name", + "kuringgai_nsw_gov_au_street_number": "Kuringgai Nsw Gov Au Street Number", + "kuringgai_nsw_gov_au_suburb": "Kuringgai Nsw Gov Au Suburb", + "kwb_goslar_de_pois": "POIS", + "kwb_goslar_de_self": "Kwb Goslar De Self", + "kwu_de_city": "Kwu De City", + "kwu_de_number": "Kwu De Number", + "kwu_de_self": "Kwu De Self", + "kwu_de_street": "Kwu De Street", + "lakemac_nsw_gov_au_address": "Lakemac Nsw Gov Au Address", + "lakemac_nsw_gov_au_self": "Lakemac Nsw Gov Au Self", + "lancaster_gov_uk_house_number": "Lancaster Gov Uk House Number", + "lancaster_gov_uk_postcode": "Lancaster Gov Uk Postcode", + "lancaster_gov_uk_self": "Lancaster Gov Uk Self", + "landkreis_kusel_de_ortsgemeinde": "Landkreis Kusel De Ortsgemeinde", + "landkreis_kusel_de_self": "Landkreis Kusel De Self", + "landkreis_rhoen_grabfeld_city": "Landkreis Rhoen Grabfeld City", + "landkreis_rhoen_grabfeld_district": "Landkreis Rhoen Grabfeld District", + "landkreis_rhoen_grabfeld_self": "Landkreis Rhoen Grabfeld Self", + "landkreis_wittmund_de_city": "Landkreis Wittmund De City", + "landkreis_wittmund_de_self": "Landkreis Wittmund De Self", + "landkreis_wittmund_de_street": "Landkreis Wittmund De Street", + "lbbd_gov_uk_self": "Lbbd Gov Uk Self", + "lbbd_gov_uk_uprn": "Lbbd Gov Uk Uprn", + "lerum_se_self": "Lerum Se Self", + "lerum_se_street_address": "Lerum Se Street Address", + "lewisham_gov_uk_name": "Lewisham Gov Uk Name", + "lewisham_gov_uk_number": "Lewisham Gov Uk Number", + "lewisham_gov_uk_post_code": "Lewisham Gov Uk Post Code", + "lewisham_gov_uk_self": "Lewisham Gov Uk Self", + "lewisham_gov_uk_uprn": "Lewisham Gov Uk Uprn", + "lichfielddc_gov_uk_self": "Lichfielddc Gov Uk Self", + "lichfielddc_gov_uk_uprn": "Lichfielddc Gov Uk Uprn", + "lincoln_gov_uk_postcode": "Lincoln Gov Uk Postcode", + "lincoln_gov_uk_self": "Lincoln Gov Uk Self", + "lincoln_gov_uk_uprn": "Lincoln Gov Uk Uprn", + "lindau_ch_city": "Lindau Ch City", + "lindau_ch_self": "Lindau Ch Self", + "lisburn_castlereagh_gov_uk_house_number": "Lisburn Castlereagh Gov Uk House Number", + "lisburn_castlereagh_gov_uk_postcode": "Lisburn Castlereagh Gov Uk Postcode", + "lisburn_castlereagh_gov_uk_property_id": "Lisburn Castlereagh Gov Uk Property Id", + "lisburn_castlereagh_gov_uk_self": "Lisburn Castlereagh Gov Uk Self", + "liverpool_gov_uk_name_number": "Liverpool Gov Uk Name Number", + "liverpool_gov_uk_postcode": "Liverpool Gov Uk Postcode", + "liverpool_gov_uk_self": "Liverpool Gov Uk Self", + "liverpool_gov_uk_uprn": "Liverpool Gov Uk Uprn", + "lobbe_app_city": "Lobbe App City", + "lobbe_app_self": "Lobbe App Self", + "lobbe_app_state": "Lobbe App State", + "lobbe_app_street": "Lobbe App Street", + "logan_qld_gov_au_property_location": "Logan Qld Gov Au Property Location", + "logan_qld_gov_au_self": "Logan Qld Gov Au Self", + "lrasha_de_location": "Lrasha De Location", + "lrasha_de_self": "Lrasha De Self", + "lsr_nu_self": "Lsr Nu Self", + "lsr_nu_street_address": "Lsr Nu Street Address", + "lumire_se_address": "Lumire Se Address", + "lumire_se_self": "Lumire Se Self", + "lund_se_self": "Lund Se Self", + "lund_se_street_address": "Lund Se Street Address", + "mags_de_number": "Mags De Number", + "mags_de_self": "Mags De Self", + "mags_de_street": "Mags De Street", + "mags_de_turnus": "Mags De Turnus", + "maidstone_gov_uk_self": "Maidstone Gov Uk Self", + "maidstone_gov_uk_uprn": "Maidstone Gov Uk Uprn", + "maldon_gov_uk_self": "Maldon Gov Uk Self", + "maldon_gov_uk_uprn": "Maldon Gov Uk Uprn", + "mamirolle_info__": "Mamirolle Info", + "mamirolle_info_self": "Mamirolle Info Self", + "manchester_uk_self": "Manchester Uk Self", + "manchester_uk_uprn": "Manchester Uk Uprn", + "mansfield_gov_uk_self": "Mansfield Gov Uk Self", + "mansfield_gov_uk_uprn": "Mansfield Gov Uk Uprn", + "mansfield_vic_gov_au_self": "Mansfield Vic Gov Au Self", + "mansfield_vic_gov_au_street_address": "Mansfield Vic Gov Au Street Address", + "maribyrnong_vic_gov_au_self": "Maribyrnong Vic Gov Au Self", + "maribyrnong_vic_gov_au_street_name": "Maribyrnong Vic Gov Au Street Name", + "maribyrnong_vic_gov_au_street_number": "Maribyrnong Vic Gov Au Street Number", + "maribyrnong_vic_gov_au_suburb": "Maribyrnong Vic Gov Au Suburb", + "maroondah_vic_gov_au_address": "Maroondah Vic Gov Au Address", + "maroondah_vic_gov_au_self": "Maroondah Vic Gov Au Self", + "meinawb_de_address_suffix": "Meinawb De Address Suffix", + "meinawb_de_city": "Meinawb De City", + "meinawb_de_house_number": "Meinawb De House Number", + "meinawb_de_self": "Meinawb De Self", + "meinawb_de_street": "Meinawb De Street", + "melton_vic_gov_au_self": "Melton Vic Gov Au Self", + "melton_vic_gov_au_street_address": "Melton Vic Gov Au Street Address", + "merri_bek_vic_gov_au_address": "Merri Bek Vic Gov Au Address", + "merri_bek_vic_gov_au_self": "Merri Bek Vic Gov Au Self", + "merton_gov_uk_property": "Merton Gov Uk Property", + "merton_gov_uk_self": "Merton Gov Uk Self", + "mestorudna_cz_city_part": "Mestorudna Cz City Part", + "mestorudna_cz_self": "Mestorudna Cz Self", + "midsussex_gov_uk_address": "Midsussex Gov Uk Address", + "midsussex_gov_uk_house_name": "Midsussex Gov Uk House Name", + "midsussex_gov_uk_house_number": "Midsussex Gov Uk House Number", + "midsussex_gov_uk_postcode": "Midsussex Gov Uk Postcode", + "midsussex_gov_uk_self": "Midsussex Gov Uk Self", + "midsussex_gov_uk_street": "Midsussex Gov Uk Street", + "miljoteknik_se_self": "Miljoteknik Se Self", + "miljoteknik_se_street_address": "Miljoteknik Se Street Address", + "milton_keynes_gov_uk_self": "Milton Keynes Gov Uk Self", + "milton_keynes_gov_uk_uprn": "Milton Keynes Gov Uk Uprn", + "minrenovasjon_no_county_id": "Minrenovasjon No County Id", + "minrenovasjon_no_house_number": "Minrenovasjon No House Number", + "minrenovasjon_no_self": "Minrenovasjon No Self", + "minrenovasjon_no_street_code": "Minrenovasjon No Street Code", + "minrenovasjon_no_street_name": "Minrenovasjon No Street Name", + "moje_odpady_pl_address": "Moje Odpady Pl Address", + "moje_odpady_pl_city": "Moje Odpady Pl City", + "moje_odpady_pl_english": "Moje Odpady Pl English", + "moje_odpady_pl_house_number": "Moje Odpady Pl House Number", + "moje_odpady_pl_self": "Moje Odpady Pl Self", + "moje_odpady_pl_voivodeship": "Moje Odpady Pl Voivodeship", + "mojiodpadki_si_self": "Mojiodpadki Si Self", + "mojiodpadki_si_uprn": "Mojiodpadki Si Uprn", + "molndal_se_facility_id": "Molndal Se Facility Id", + "molndal_se_self": "Molndal Se Self", + "monaloga_de_plz": "ZIP", + "monaloga_de_self": "Monaloga De Self", + "monaloga_de_street": "Street", + "montreal_ca_sector": "Montreal Ca Sector", + "montreal_ca_self": "Montreal Ca Self", + "moray_gov_uk_id": "Moray Gov Uk Id", + "moray_gov_uk_self": "Moray Gov Uk Self", + "mosman_nsw_gov_au_address": "Mosman Nsw Gov Au Address", + "mosman_nsw_gov_au_self": "Mosman Nsw Gov Au Self", + "movar_no_address": "Movar No Address", + "movar_no_self": "Movar No Self", + "mpgk_com_pl_number": "Mpgk Com Pl Number", + "mpgk_com_pl_self": "Mpgk Com Pl Self", + "mpgk_com_pl_street": "Mpgk Com Pl Street", + "mrsc_vic_gov_au_self": "Mrsc Vic Gov Au Self", + "mrsc_vic_gov_au_street_address": "Mrsc Vic Gov Au Street Address", + "muellabfuhr_de_city": "Muellabfuhr De City", + "muellabfuhr_de_client": "Muellabfuhr De Client", + "muellabfuhr_de_district": "Muellabfuhr De District", + "muellabfuhr_de_self": "Muellabfuhr De Self", + "muellabfuhr_de_street": "Muellabfuhr De Street", + "muellmax_de_mm_frm_hnr_sel": "Muellmax De Mm Frm Hnr Sel", + "muellmax_de_mm_frm_ort_sel": "Muellmax De Mm Frm Ort Sel", + "muellmax_de_mm_frm_str_sel": "Muellmax De Mm Frm Str Sel", + "muellmax_de_self": "Muellmax De Self", + "muellmax_de_service": "Muellmax De Service", + "muenchenstein_ch_self": "Muenchenstein Ch Self", + "muenchenstein_ch_waste_district": "Muenchenstein Ch Waste District", + "myutility_winnipeg_ca_address": "Myutility Winnipeg Ca Address", + "myutility_winnipeg_ca_self": "Myutility Winnipeg Ca Self", + "napier_govt_nz_address": "Napier Govt Nz Address", + "napier_govt_nz_self": "Napier Govt Nz Self", + "nawma_sa_gov_au_pid": "Nawma Sa Gov Au Pid", + "nawma_sa_gov_au_self": "Nawma Sa Gov Au Self", + "nawma_sa_gov_au_street_name": "Nawma Sa Gov Au Street Name", + "nawma_sa_gov_au_street_number": "Nawma Sa Gov Au Street Number", + "nawma_sa_gov_au_suburb": "Nawma Sa Gov Au Suburb", + "newark_sherwooddc_gov_uk_self": "Newark Sherwooddc Gov Uk Self", + "newark_sherwooddc_gov_uk_uprn": "Newark Sherwooddc Gov Uk Uprn", + "newcastle_gov_uk_self": "Newcastle Gov Uk Self", + "newcastle_gov_uk_uprn": "Newcastle Gov Uk Uprn", + "newcastle_staffs_gov_uk_self": "Newcastle Staffs Gov Uk Self", + "newcastle_staffs_gov_uk_uprn": "Newcastle Staffs Gov Uk Uprn", + "newham_gov_uk_property": "Newham Gov Uk Property", + "newham_gov_uk_self": "Newham Gov Uk Self", + "nillumbik_vic_gov_au_self": "Nillumbik Vic Gov Au Self", + "nillumbik_vic_gov_au_street_address": "Nillumbik Vic Gov Au Street Address", + "north_ayrshire_gov_uk_self": "North Ayrshire Gov Uk Self", + "north_ayrshire_gov_uk_uprn": "North Ayrshire Gov Uk Uprn", + "north_kesteven_org_uk_self": "North Kesteven Org Uk Self", + "north_kesteven_org_uk_uprn": "North Kesteven Org Uk Uprn", + "northherts_gov_uk_address_name_numer": "Northherts Gov Uk Address Name Numer", + "northherts_gov_uk_address_postcode": "Northherts Gov Uk Address Postcode", + "northherts_gov_uk_address_street": "Northherts Gov Uk Address Street", + "northherts_gov_uk_self": "Northherts Gov Uk Self", + "northherts_gov_uk_street_town": "Northherts Gov Uk Street Town", + "northlincs_gov_uk_self": "Northlincs Gov Uk Self", + "northlincs_gov_uk_uprn": "Northlincs Gov Uk Uprn", + "northnorthants_gov_uk_self": "Northnorthants Gov Uk Self", + "northnorthants_gov_uk_uprn": "Northnorthants Gov Uk Uprn", + "northyorks_hambleton_gov_uk_self": "Northyorks Hambleton Gov Uk Self", + "northyorks_hambleton_gov_uk_uprn": "Northyorks Hambleton Gov Uk Uprn", + "northyorks_harrogate_gov_uk_self": "Northyorks Harrogate Gov Uk Self", + "northyorks_harrogate_gov_uk_uprn": "Northyorks Harrogate Gov Uk Uprn", + "northyorks_scarborough_gov_uk_self": "Northyorks Scarborough Gov Uk Self", + "northyorks_scarborough_gov_uk_uprn": "Northyorks Scarborough Gov Uk Uprn", + "northyorks_selby_gov_uk_self": "Northyorks Selby Gov Uk Self", + "northyorks_selby_gov_uk_uprn": "Northyorks Selby Gov Uk Uprn", + "nottingham_city_gov_uk_self": "Nottingham City Gov Uk Self", + "nottingham_city_gov_uk_uprn": "Nottingham City Gov Uk Uprn", + "nsomerset_gov_uk_postcode": "Nsomerset Gov Uk Postcode", + "nsomerset_gov_uk_self": "Nsomerset Gov Uk Self", + "nsomerset_gov_uk_uprn": "Nsomerset Gov Uk Uprn", + "nuernberger_land_de_id": "Nuernberger Land De Id", + "nuernberger_land_de_self": "Nuernberger Land De Self", + "nvaa_se_self": "Nvaa Se Self", + "nvaa_se_street_address": "Nvaa Se Street Address", + "nwleics_gov_uk_self": "Nwleics Gov Uk Self", + "nwleics_gov_uk_uprn": "Nwleics Gov Uk Uprn", + "nyc_gov_address": "Nyc Gov Address", + "nyc_gov_self": "Nyc Gov Self", + "oadby_wigston_gov_uk_address": "Oadby Wigston Gov Uk Address", + "oadby_wigston_gov_uk_self": "Oadby Wigston Gov Uk Self", + "odenserenovation_dk_addressNo": "Odenserenovation Dk Address No", + "odenserenovation_dk_self": "Odenserenovation Dk Self", + "offenbach_de_f_id_location": "Offenbach De F Id Location", + "offenbach_de_self": "Offenbach De Self", + "okc_gov_objectID": "Okc Gov Object Id", + "okc_gov_self": "Okc Gov Self", + "onkaparingacity_com_address": "Onkaparingacity Com Address", + "onkaparingacity_com_self": "Onkaparingacity Com Self", + "orillia_ca_email": "Orillia Ca Email", + "orillia_ca_password": "Orillia Ca Password", + "orillia_ca_self": "Orillia Ca Self", + "oslokommune_no_house_letter": "Oslokommune No House Letter", + "oslokommune_no_house_number": "Oslokommune No House Number", + "oslokommune_no_self": "Oslokommune No Self", + "oslokommune_no_street_id": "Oslokommune No Street Id", + "oslokommune_no_street_name": "Oslokommune No Street Name", + "oxford_gov_uk_postcode": "Oxford Gov Uk Postcode", + "oxford_gov_uk_self": "Oxford Gov Uk Self", + "oxford_gov_uk_uprn": "Oxford Gov Uk Uprn", + "peterborough_gov_uk_name": "Peterborough Gov Uk Name", + "peterborough_gov_uk_number": "Peterborough Gov Uk Number", + "peterborough_gov_uk_post_code": "Peterborough Gov Uk Post Code", + "peterborough_gov_uk_self": "Peterborough Gov Uk Self", + "peterborough_gov_uk_uprn": "Peterborough Gov Uk Uprn", + "pgh_st_house_number": "Pgh St House Number", + "pgh_st_self": "Pgh St Self", + "pgh_st_street_name": "Pgh St Street Name", + "pgh_st_zipcode": "Pgh St Zipcode", + "poriruacity_govt_nz_address": "Poriruacity Govt Nz Address", + "poriruacity_govt_nz_self": "Poriruacity Govt Nz Self", + "portenf_sa_gov_au_house_number": "Portenf Sa Gov Au House Number", + "portenf_sa_gov_au_self": "Portenf Sa Gov Au Self", + "portenf_sa_gov_au_street": "Portenf Sa Gov Au Street", + "portenf_sa_gov_au_suburb": "Portenf Sa Gov Au Suburb", + "portenf_sa_gov_au_unit_number": "Portenf Sa Gov Au Unit Number", + "portsmouth_gov_uk_self": "Portsmouth Gov Uk Self", + "portsmouth_gov_uk_uprn": "Portsmouth Gov Uk Uprn", + "portstephens_nsw_gov_au_self": "Portstephens Nsw Gov Au Self", + "portstephens_nsw_gov_au_street_name": "Portstephens Nsw Gov Au Street Name", + "portstephens_nsw_gov_au_street_number": "Portstephens Nsw Gov Au Street Number", + "portstephens_nsw_gov_au_suburb": "Portstephens Nsw Gov Au Suburb", + "potsdam_de_bio_rhythm": "Organics rhythm", + "potsdam_de_gelb_rhythm": "Recycling rhythm", + "potsdam_de_ortsteil": "District", + "potsdam_de_papier_rhythm": "Paper rhythm", + "potsdam_de_rest_rhythm": "General waste rhythm", + "potsdam_de_self": "Potsdam De Self", + "potsdam_de_strasse": "Street", + "poznan_pl_self": "Poznan Pl Self", + "poznan_pl_street_name": "Poznan Pl Street Name", + "poznan_pl_street_number": "Poznan Pl Street Number", + "pronatura_bydgoszcz_pl_self": "Pronatura Bydgoszcz Pl Self", + "pronatura_bydgoszcz_pl_street_name": "Pronatura Bydgoszcz Pl Street Name", + "pronatura_bydgoszcz_pl_street_number": "Pronatura Bydgoszcz Pl Street Number", + "rambo_se_address": "Rambo Se Address", + "rambo_se_self": "Rambo Se Self", + "rapperswil_be_ch_self": "Rapperswil Be Ch Self", + "rbwm_gov_uk_postcode": "Rbwm Gov Uk Postcode", + "rbwm_gov_uk_self": "Rbwm Gov Uk Self", + "rbwm_gov_uk_uprn": "Rbwm Gov Uk Uprn", + "rctcbc_gov_uk_self": "Rctcbc Gov Uk Self", + "rctcbc_gov_uk_uprn": "Rctcbc Gov Uk Uprn", + "rd4_nl_house_number": "Rd4 Nl House Number", + "rd4_nl_postal_code": "Rd4 Nl Postal Code", + "rd4_nl_self": "Rd4 Nl Self", + "reading_gov_uk_housenameornumber": "Reading Gov Uk Housenameornumber", + "reading_gov_uk_postcode": "Reading Gov Uk Postcode", + "reading_gov_uk_self": "Reading Gov Uk Self", + "reading_gov_uk_uprn": "Reading Gov Uk Uprn", + "real_luzern_ch_municipality_id": "Real Luzern Ch Municipality Id", + "real_luzern_ch_self": "Real Luzern Ch Self", + "real_luzern_ch_street_id": "Real Luzern Ch Street Id", + "recycleapp_be_add_events": "Recycleapp Be Add Events", + "recycleapp_be_house_number": "Recycleapp Be House Number", + "recycleapp_be_postcode": "Recycleapp Be Postcode", + "recycleapp_be_self": "Recycleapp Be Self", + "recycleapp_be_street": "Recycleapp Be Street", + "recyclecoach_com_city": "Recyclecoach Com City", + "recyclecoach_com_district_id": "Recyclecoach Com District Id", + "recyclecoach_com_project_id": "Recyclecoach Com Project Id", + "recyclecoach_com_self": "Recyclecoach Com Self", + "recyclecoach_com_state": "Recyclecoach Com State", + "recyclecoach_com_street": "Recyclecoach Com Street", + "recyclecoach_com_zone_id": "Recyclecoach Com Zone Id", + "recyclesmart_com_email": "Recyclesmart Com Email", + "recyclesmart_com_password": "Recyclesmart Com Password", + "recyclesmart_com_self": "Recyclesmart Com Self", + "redbridge_gov_uk_self": "Redbridge Gov Uk Self", + "redbridge_gov_uk_uprn": "Redbridge Gov Uk Uprn", + "redland_qld_gov_au_self": "Redland Qld Gov Au Self", + "redland_qld_gov_au_street_name": "Redland Qld Gov Au Street Name", + "redland_qld_gov_au_street_number": "Redland Qld Gov Au Street Number", + "redland_qld_gov_au_suburb": "Redland Qld Gov Au Suburb", + "regioentsorgung_de_city": "Regioentsorgung De City", + "regioentsorgung_de_house_number": "Regioentsorgung De House Number", + "regioentsorgung_de_self": "Regioentsorgung De Self", + "regioentsorgung_de_street": "Regioentsorgung De Street", + "reigatebanstead_gov_uk_self": "Reigatebanstead Gov Uk Self", + "reigatebanstead_gov_uk_uprn": "Reigatebanstead Gov Uk Uprn", + "remidt_no_address": "Remidt No Address", + "remidt_no_self": "Remidt No Self", + "renfrewshire_gov_uk_postcode": "Renfrewshire Gov Uk Postcode", + "renfrewshire_gov_uk_self": "Renfrewshire Gov Uk Self", + "renfrewshire_gov_uk_uprn": "Renfrewshire Gov Uk Uprn", + "renodjurs_dk_id": "Renodjurs Dk Id", + "renodjurs_dk_self": "Renodjurs Dk Self", + "renosyd_dk_house_number": "Renosyd Dk House Number", + "renosyd_dk_self": "Renosyd Dk Self", + "renoweb_dk_address": "Renoweb Dk Address", + "renoweb_dk_address_id": "Renoweb Dk Address Id", + "renoweb_dk_include_ordered_pickup_entries": "Renoweb Dk Include Ordered Pickup Entries", + "renoweb_dk_municipality": "Renoweb Dk Municipality", + "renoweb_dk_self": "Renoweb Dk Self", + "republicservices_com_method": "Republicservices Com Method", + "republicservices_com_self": "Republicservices Com Self", + "republicservices_com_street_address": "Republicservices Com Street Address", + "reso_gmbh_de_ort": "Reso Gmbh De Ort", + "reso_gmbh_de_ortsteil": "Reso Gmbh De Ortsteil", + "reso_gmbh_de_self": "Reso Gmbh De Self", + "rh_entsorgung_de_address_suffix": "Rh Entsorgung De Address Suffix", + "rh_entsorgung_de_city": "Rh Entsorgung De City", + "rh_entsorgung_de_house_number": "Rh Entsorgung De House Number", + "rh_entsorgung_de_self": "Rh Entsorgung De Self", + "rh_entsorgung_de_street": "Rh Entsorgung De Street", + "richmondshire_gov_uk_self": "Richmondshire Gov Uk Self", + "richmondshire_gov_uk_uprn": "Richmondshire Gov Uk Uprn", + "rotherham_gov_uk_self": "Rotherham Gov Uk Self", + "rotherham_gov_uk_uprn": "Rotherham Gov Uk Uprn", + "rotorua_lakes_council_nz_address": "Rotorua Lakes Council Nz Address", + "rotorua_lakes_council_nz_self": "Rotorua Lakes Council Nz Self", + "roundlookup_uk_council": "Roundlookup Uk Council", + "roundlookup_uk_self": "Roundlookup Uk Self", + "roundlookup_uk_uprn": "Roundlookup Uk Uprn", + "runnymede_gov_uk_self": "Runnymede Gov Uk Self", + "runnymede_gov_uk_uprn": "Runnymede Gov Uk Uprn", + "rushcliffe_gov_uk_address": "Rushcliffe Gov Uk Address", + "rushcliffe_gov_uk_postcode": "Rushcliffe Gov Uk Postcode", + "rushcliffe_gov_uk_self": "Rushcliffe Gov Uk Self", + "rushmoor_gov_uk_self": "Rushmoor Gov Uk Self", + "rushmoor_gov_uk_uprn": "Rushmoor Gov Uk Uprn", + "rv_de_hnr": "Rv De Hnr", + "rv_de_hnr_zusatz": "Rv De Hnr Zusatz", + "rv_de_ort": "Rv De Ort", + "rv_de_self": "Rv De Self", + "rv_de_strasse": "Rv De Strasse", + "ryde_nsw_gov_au_post_code": "Ryde Nsw Gov Au Post Code", + "ryde_nsw_gov_au_self": "Ryde Nsw Gov Au Self", + "ryde_nsw_gov_au_street_name": "Ryde Nsw Gov Au Street Name", + "ryde_nsw_gov_au_street_number": "Ryde Nsw Gov Au Street Number", + "ryde_nsw_gov_au_suburb": "Ryde Nsw Gov Au Suburb", + "salford_gov_uk_self": "Salford Gov Uk Self", + "salford_gov_uk_uprn": "Salford Gov Uk Uprn", + "samiljo_se_city": "Samiljo Se City", + "samiljo_se_self": "Samiljo Se Self", + "samiljo_se_street": "Samiljo Se Street", + "sammelkalender_ch_hnr": "Sammelkalender Ch Hnr", + "sammelkalender_ch_municipality": "Sammelkalender Ch Municipality", + "sammelkalender_ch_self": "Sammelkalender Ch Self", + "sammelkalender_ch_service_provider": "Sammelkalender Ch Service Provider", + "sammelkalender_ch_street": "Sammelkalender Ch Street", + "sandnes_no_bnumber": "Sandnes No Bnumber", + "sandnes_no_gnumber": "Sandnes No Gnumber", + "sandnes_no_id": "Sandnes No Id", + "sandnes_no_municipality": "Sandnes No Municipality", + "sandnes_no_self": "Sandnes No Self", + "sandnes_no_snumber": "Sandnes No Snumber", + "sbazv_de_city": "Sbazv De City", + "sbazv_de_district": "Sbazv De District", + "sbazv_de_self": "Sbazv De Self", + "sbazv_de_street": "Sbazv De Street", + "scambs_gov_uk_number": "Scambs Gov Uk Number", + "scambs_gov_uk_post_code": "Scambs Gov Uk Post Code", + "scambs_gov_uk_self": "Scambs Gov Uk Self", + "scheibbs_umweltverbaende_at_region": "Scheibbs Umweltverbaende At Region", + "scheibbs_umweltverbaende_at_self": "Scheibbs Umweltverbaende At Self", + "schweinfurt_de_address": "Schweinfurt De Address", + "schweinfurt_de_self": "Schweinfurt De Self", + "schweinfurt_de_showmobile": "Schweinfurt De Showmobile", + "seattle_gov_prem_code": "Seattle Gov Prem Code", + "seattle_gov_self": "Seattle Gov Self", + "seattle_gov_street_address": "Seattle Gov Street Address", + "sector27_de_city": "Sector27 De City", + "sector27_de_self": "Sector27 De Self", + "sector27_de_street": "Sector27 De Street", + "sepan_remondis_pl_city": "Sepan Remondis Pl City", + "sepan_remondis_pl_self": "Sepan Remondis Pl Self", + "sepan_remondis_pl_street_name": "Sepan Remondis Pl Street Name", + "sepan_remondis_pl_street_number": "Sepan Remondis Pl Street Number", + "sheffield_gov_uk_self": "Sheffield Gov Uk Self", + "sheffield_gov_uk_uprn": "Sheffield Gov Uk Uprn", + "shellharbourwaste_com_au_self": "Shellharbourwaste Com Au Self", + "shellharbourwaste_com_au_zoneID": "Shellharbourwaste Com Au Zone Id", + "sholland_gov_uk_postcode": "Sholland Gov Uk Postcode", + "sholland_gov_uk_self": "Sholland Gov Uk Self", + "sholland_gov_uk_uprn": "Sholland Gov Uk Uprn", + "shropshire_gov_uk_self": "Shropshire Gov Uk Self", + "shropshire_gov_uk_uprn": "Shropshire Gov Uk Uprn", + "sica_lu_municipality": "Sica Lu Municipality", + "sica_lu_self": "Sica Lu Self", + "sicaapp_lu_commune": "Sicaapp Lu Commune", + "sicaapp_lu_self": "Sicaapp Lu Self", + "sivom_rivedroite_fr_district": "Sivom Rivedroite Fr District", + "sivom_rivedroite_fr_self": "Sivom Rivedroite Fr Self", + "solihull_gov_uk_predict": "Solihull Gov Uk Predict", + "solihull_gov_uk_self": "Solihull Gov Uk Self", + "solihull_gov_uk_uprn": "Solihull Gov Uk Uprn", + "south_norfolk_and_broadland_gov_uk_address": "South Norfolk And Broadland Gov Uk Address", + "south_norfolk_and_broadland_gov_uk_address_payload": "South Norfolk And Broadland Gov Uk Address Payload", + "south_norfolk_and_broadland_gov_uk_postcode": "South Norfolk And Broadland Gov Uk Postcode", + "south_norfolk_and_broadland_gov_uk_self": "South Norfolk And Broadland Gov Uk Self", + "southampton_gov_uk_self": "Southampton Gov Uk Self", + "southampton_gov_uk_uprn": "Southampton Gov Uk Uprn", + "southderbyshire_gov_uk_self": "Southderbyshire Gov Uk Self", + "southderbyshire_gov_uk_uprn": "Southderbyshire Gov Uk Uprn", + "southglos_gov_uk_self": "Southglos Gov Uk Self", + "southglos_gov_uk_uprn": "Southglos Gov Uk Uprn", + "southkesteven_gov_uk_address_id": "Southkesteven Gov Uk Address Id", + "southkesteven_gov_uk_self": "Southkesteven Gov Uk Self", + "southtyneside_gov_uk_postcode": "Southtyneside Gov Uk Postcode", + "southtyneside_gov_uk_self": "Southtyneside Gov Uk Self", + "southtyneside_gov_uk_uprn": "Southtyneside Gov Uk Uprn", + "srvatervinning_se_address": "Srvatervinning Se Address", + "srvatervinning_se_city": "Srvatervinning Se City", + "srvatervinning_se_self": "Srvatervinning Se Self", + "ssam_se_self": "Ssam Se Self", + "ssam_se_street_address": "Ssam Se Street Address", + "stadtreinigung_dresden_de_self": "Stadtreinigung Dresden De Self", + "stadtreinigung_dresden_de_standort": "Stadtreinigung Dresden De Standort", + "stadtreinigung_hamburg_asId": "Stadtreinigung Hamburg As Id", + "stadtreinigung_hamburg_hnId": "Stadtreinigung Hamburg Hn Id", + "stadtreinigung_hamburg_self": "Stadtreinigung Hamburg Self", + "stadtreinigung_leipzig_de_house_number": "Stadtreinigung Leipzig De House Number", + "stadtreinigung_leipzig_de_self": "Stadtreinigung Leipzig De Self", + "stadtreinigung_leipzig_de_street": "Stadtreinigung Leipzig De Street", + "stadtservice_bruehl_de_hnr": "Stadtservice Bruehl De Hnr", + "stadtservice_bruehl_de_self": "Stadtservice Bruehl De Self", + "stadtservice_bruehl_de_strasse": "Stadtservice Bruehl De Strasse", + "staedteservice_de_city": "Staedteservice De City", + "staedteservice_de_house_number": "Staedteservice De House Number", + "staedteservice_de_self": "Staedteservice De Self", + "staedteservice_de_street_name": "Staedteservice De Street Name", + "staedteservice_de_street_number": "Staedteservice De Street Number", + "staffordbc_gov_uk_self": "Staffordbc Gov Uk Self", + "staffordbc_gov_uk_uprn": "Staffordbc Gov Uk Uprn", + "stalbans_gov_uk_self": "Stalbans Gov Uk Self", + "stalbans_gov_uk_uprn": "Stalbans Gov Uk Uprn", + "static_count": "Static Count", + "static_dates": "Static Dates", + "static_excludes": "Static Excludes", + "static_frequency": "Static Frequency", + "static_interval": "Static Interval", + "static_self": "Static Self", + "static_start": "Static Start", + "static_type": "Static Type", + "static_until": "Static Until", + "static_weekdays": "Static Weekdays", + "stavanger_no_bnumber": "Stavanger No Bnumber", + "stavanger_no_gnumber": "Stavanger No Gnumber", + "stavanger_no_id": "Stavanger No Id", + "stavanger_no_municipality": "Stavanger No Municipality", + "stavanger_no_self": "Stavanger No Self", + "stavanger_no_snumber": "Stavanger No Snumber", + "stevenage_gov_uk_self": "Stevenage Gov Uk Self", + "stevenage_gov_uk_uprn": "Stevenage Gov Uk Uprn", + "stirling_uk_route": "Stirling Uk Route", + "stirling_uk_self": "Stirling Uk Self", + "stirling_wa_gov_au_lat": "Stirling Wa Gov Au Lat", + "stirling_wa_gov_au_lon": "Stirling Wa Gov Au Lon", + "stirling_wa_gov_au_self": "Stirling Wa Gov Au Self", + "stockport_gov_uk_self": "Stockport Gov Uk Self", + "stockport_gov_uk_uprn": "Stockport Gov Uk Uprn", + "stockton_gov_uk_self": "Stockton Gov Uk Self", + "stockton_gov_uk_uprn": "Stockton Gov Uk Uprn", + "stoke_gov_uk_self": "Stoke Gov Uk Self", + "stoke_gov_uk_uprn": "Stoke Gov Uk Uprn", + "stonnington_vic_gov_au_self": "Stonnington Vic Gov Au Self", + "stonnington_vic_gov_au_street_address": "Stonnington Vic Gov Au Street Address", + "stratford_gov_uk_self": "Stratford Gov Uk Self", + "stratford_gov_uk_uprn": "Stratford Gov Uk Uprn", + "stroud_gov_uk_postcode": "Stroud Gov Uk Postcode", + "stroud_gov_uk_self": "Stroud Gov Uk Self", + "stroud_gov_uk_uprn": "Stroud Gov Uk Uprn", + "stuttgart_de_self": "Stuttgart De Self", + "stuttgart_de_street": "Stuttgart De Street", + "stuttgart_de_streetnr": "Stuttgart De Streetnr", + "sutton_gov_uk_id": "Sutton Gov Uk Id", + "sutton_gov_uk_self": "Sutton Gov Uk Self", + "swansea_gov_uk_post_code": "Swansea Gov Uk Post Code", + "swansea_gov_uk_self": "Swansea Gov Uk Self", + "swansea_gov_uk_street_name": "Swansea Gov Uk Street Name", + "swindon_gov_uk_self": "Swindon Gov Uk Self", + "swindon_gov_uk_uprn": "Swindon Gov Uk Uprn", + "sysav_se_self": "Sysav Se Self", + "sysav_se_street_address": "Sysav Se Street Address", + "tameside_gov_uk_postcode": "Tameside Gov Uk Postcode", + "tameside_gov_uk_self": "Tameside Gov Uk Self", + "tameside_gov_uk_uprn": "Tameside Gov Uk Uprn", + "tauranga_govt_nz_address": "Tauranga Govt Nz Address", + "tauranga_govt_nz_self": "Tauranga Govt Nz Self", + "tbv_velbert_de_self": "Tbv Velbert De Self", + "tbv_velbert_de_street": "Tbv Velbert De Street", + "tekniskaverken_se_city": "Tekniskaverken Se City", + "tekniskaverken_se_self": "Tekniskaverken Se Self", + "tekniskaverken_se_street": "Tekniskaverken Se Street", + "telford_gov_uk_name_number": "Telford Gov Uk Name Number", + "telford_gov_uk_post_code": "Telford Gov Uk Post Code", + "telford_gov_uk_self": "Telford Gov Uk Self", + "telford_gov_uk_uprn": "Telford Gov Uk Uprn", + "tewkesbury_gov_uk_postcode": "Tewkesbury Gov Uk Postcode", + "tewkesbury_gov_uk_self": "Tewkesbury Gov Uk Self", + "tewkesbury_gov_uk_uprn": "Tewkesbury Gov Uk Uprn", + "thehills_nsw_gov_au_houseNo": "Thehills Nsw Gov Au House No", + "thehills_nsw_gov_au_self": "Thehills Nsw Gov Au Self", + "thehills_nsw_gov_au_street": "Thehills Nsw Gov Au Street", + "thehills_nsw_gov_au_suburb": "Thehills Nsw Gov Au Suburb", + "tkeliai_lt_location": "Tkeliai Lt Location", + "tkeliai_lt_self": "Tkeliai Lt Self", + "tmbc_gov_uk_address": "Tmbc Gov Uk Address", + "tmbc_gov_uk_post_code": "Tmbc Gov Uk Post Code", + "tmbc_gov_uk_self": "Tmbc Gov Uk Self", + "tonnenleerung_de_self": "Tonnenleerung De Self", + "tonnenleerung_de_url": "Tonnenleerung De Url", + "toogoodtowaste_co_nz_address": "Toogoodtowaste Co Nz Address", + "toogoodtowaste_co_nz_self": "Toogoodtowaste Co Nz Self", + "toronto_ca_self": "Toronto Ca Self", + "toronto_ca_street_address": "Toronto Ca Street Address", + "townsville_qld_gov_au_property_id": "Townsville Qld Gov Au Property Id", + "townsville_qld_gov_au_self": "Townsville Qld Gov Au Self", + "tunbridgewells_gov_uk_self": "Tunbridgewells Gov Uk Self", + "tunbridgewells_gov_uk_uprn": "Tunbridgewells Gov Uk Uprn", + "ukbcd_file": "Ukbcd File", + "ukbcd_self": "Ukbcd Self", + "umweltverbaende_at_calendar": "Umweltverbaende At Calendar", + "umweltverbaende_at_calendar_splitter": "Umweltverbaende At Calendar Splitter", + "umweltverbaende_at_calendar_title_separator": "Umweltverbaende At Calendar Title Separator", + "umweltverbaende_at_district": "Umweltverbaende At District", + "umweltverbaende_at_municipal": "Umweltverbaende At Municipal", + "umweltverbaende_at_self": "Umweltverbaende At Self", + "unley_sa_gov_au_post_code": "Unley Sa Gov Au Post Code", + "unley_sa_gov_au_self": "Unley Sa Gov Au Self", + "unley_sa_gov_au_street_name": "Unley Sa Gov Au Street Name", + "unley_sa_gov_au_street_number": "Unley Sa Gov Au Street Number", + "unley_sa_gov_au_suburb": "Unley Sa Gov Au Suburb", + "uppsalavatten_se_city": "Uppsalavatten Se City", + "uppsalavatten_se_self": "Uppsalavatten Se Self", + "uppsalavatten_se_street": "Uppsalavatten Se Street", + "uttlesford_gov_uk_house": "Uttlesford Gov Uk House", + "uttlesford_gov_uk_self": "Uttlesford Gov Uk Self", + "valeofglamorgan_gov_uk_self": "Valeofglamorgan Gov Uk Self", + "valeofglamorgan_gov_uk_uprn": "Valeofglamorgan Gov Uk Uprn", + "vasyd_se_self": "Vasyd Se Self", + "vasyd_se_street_address": "Vasyd Se Street Address", + "vestfor_dk_number": "Vestfor Dk Number", + "vestfor_dk_self": "Vestfor Dk Self", + "vestfor_dk_streetName": "Vestfor Dk Street Name", + "vestfor_dk_zipCode": "Vestfor Dk Zip Code", + "victoriapark_wa_gov_au_address": "Victoriapark Wa Gov Au Address", + "victoriapark_wa_gov_au_predict": "Victoriapark Wa Gov Au Predict", + "victoriapark_wa_gov_au_self": "Victoriapark Wa Gov Au Self", + "vivab_se_building_id": "Vivab Se Building Id", + "vivab_se_self": "Vivab Se Self", + "vivab_se_street_address": "Vivab Se Street Address", + "vmeab_se_city": "Vmeab Se City", + "vmeab_se_self": "Vmeab Se Self", + "vmeab_se_street": "Vmeab Se Street", + "waipa_nz_address": "Waipa Nz Address", + "waipa_nz_self": "Waipa Nz Self", + "walsall_gov_uk_self": "Walsall Gov Uk Self", + "walsall_gov_uk_uprn": "Walsall Gov Uk Uprn", + "wanneroo_wa_gov_au_address": "Wanneroo Wa Gov Au Address", + "wanneroo_wa_gov_au_self": "Wanneroo Wa Gov Au Self", + "warrington_gov_uk_self": "Warrington Gov Uk Self", + "warrington_gov_uk_uprn": "Warrington Gov Uk Uprn", + "warszawa19115_pl_geolocation_id": "Warszawa19115 Pl Geolocation Id", + "warszawa19115_pl_self": "Warszawa19115 Pl Self", + "warszawa19115_pl_street_address": "Warszawa19115 Pl Street Address", + "warwickdc_gov_uk_self": "Warwickdc Gov Uk Self", + "warwickdc_gov_uk_uprn": "Warwickdc Gov Uk Uprn", + "was_wolfsburg_de_city": "Was Wolfsburg De City", + "was_wolfsburg_de_self": "Was Wolfsburg De Self", + "was_wolfsburg_de_street": "Was Wolfsburg De Street", + "wastenet_org_nz_address": "Wastenet Org Nz Address", + "wastenet_org_nz_entry_id": "Wastenet Org Nz Entry Id", + "wastenet_org_nz_self": "Wastenet Org Nz Self", + "waverley_gov_uk_address_name_numer": "Waverley Gov Uk Address Name Numer", + "waverley_gov_uk_address_postcode": "Waverley Gov Uk Address Postcode", + "waverley_gov_uk_address_street": "Waverley Gov Uk Address Street", + "waverley_gov_uk_self": "Waverley Gov Uk Self", + "waverley_gov_uk_street_town": "Waverley Gov Uk Street Town", + "wealden_gov_uk_self": "Wealden Gov Uk Self", + "wealden_gov_uk_uprn": "Wealden Gov Uk Uprn", + "welhat_gov_uk_postcode": "Welhat Gov Uk Postcode", + "welhat_gov_uk_self": "Welhat Gov Uk Self", + "welhat_gov_uk_uprn": "Welhat Gov Uk Uprn", + "wellington_govt_nz_self": "Wellington Govt Nz Self", + "wellington_govt_nz_streetId": "Wellington Govt Nz Street Id", + "wellington_govt_nz_streetName": "Wellington Govt Nz Street Name", + "wermelskirchen_de_house_number": "Wermelskirchen De House Number", + "wermelskirchen_de_self": "Wermelskirchen De Self", + "wermelskirchen_de_street": "Wermelskirchen De Street", + "west_dunbartonshire_gov_uk_house_number": "West Dunbartonshire Gov Uk House Number", + "west_dunbartonshire_gov_uk_self": "West Dunbartonshire Gov Uk Self", + "west_dunbartonshire_gov_uk_street": "West Dunbartonshire Gov Uk Street", + "west_dunbartonshire_gov_uk_town": "West Dunbartonshire Gov Uk Town", + "west_dunbartonshire_gov_uk_uprn": "West Dunbartonshire Gov Uk Uprn", + "west_norfolk_gov_uk_self": "West Norfolk Gov Uk Self", + "west_norfolk_gov_uk_uprn": "West Norfolk Gov Uk Uprn", + "westberks_gov_uk_housenumberorname": "Westberks Gov Uk Housenumberorname", + "westberks_gov_uk_postcode": "Westberks Gov Uk Postcode", + "westberks_gov_uk_self": "Westberks Gov Uk Self", + "westberks_gov_uk_uprn": "Westberks Gov Uk Uprn", + "westnorthants_gov_uk_self": "Westnorthants Gov Uk Self", + "westnorthants_gov_uk_uprn": "Westnorthants Gov Uk Uprn", + "westoxon_gov_uk_address": "Westoxon Gov Uk Address", + "westoxon_gov_uk_self": "Westoxon Gov Uk Self", + "westsuffolk_gov_uk_self": "Westsuffolk Gov Uk Self", + "westsuffolk_gov_uk_uprn": "Westsuffolk Gov Uk Uprn", + "whitehorse_vic_gov_au_address": "Whitehorse Vic Gov Au Address", + "whitehorse_vic_gov_au_self": "Whitehorse Vic Gov Au Self", + "whittlesea_vic_gov_au_self": "Whittlesea Vic Gov Au Self", + "whittlesea_vic_gov_au_street_address": "Whittlesea Vic Gov Au Street Address", + "wigan_gov_uk_postcode": "Wigan Gov Uk Postcode", + "wigan_gov_uk_self": "Wigan Gov Uk Self", + "wigan_gov_uk_uprn": "Wigan Gov Uk Uprn", + "wiltshire_gov_uk_postcode": "Wiltshire Gov Uk Postcode", + "wiltshire_gov_uk_self": "Wiltshire Gov Uk Self", + "wiltshire_gov_uk_uprn": "Wiltshire Gov Uk Uprn", + "winterthur_ch_self": "Winterthur Ch Self", + "winterthur_ch_street": "Winterthur Ch Street", + "wirral_gov_uk_self": "Wirral Gov Uk Self", + "wirral_gov_uk_street": "Wirral Gov Uk Street", + "wirral_gov_uk_suburb": "Wirral Gov Uk Suburb", + "wokingham_gov_uk_address": "Wokingham Gov Uk Address", + "wokingham_gov_uk_postcode": "Wokingham Gov Uk Postcode", + "wokingham_gov_uk_property": "Wokingham Gov Uk Property", + "wokingham_gov_uk_self": "Wokingham Gov Uk Self", + "wollondilly_nsw_gov_au_address": "Wollondilly Nsw Gov Au Address", + "wollondilly_nsw_gov_au_self": "Wollondilly Nsw Gov Au Self", + "wollongongwaste_com_au_propertyID": "Wollongongwaste Com Au Property Id", + "wollongongwaste_com_au_self": "Wollongongwaste Com Au Self", + "wsz_moosburg_at_address": "Wsz Moosburg At Address", + "wsz_moosburg_at_address_id": "Wsz Moosburg At Address Id", + "wsz_moosburg_at_municipal": "Wsz Moosburg At Municipal", + "wsz_moosburg_at_self": "Wsz Moosburg At Self", + "wsz_moosburg_at_street": "Wsz Moosburg At Street", + "wuerzburg_de_district": "Wuerzburg De District", + "wuerzburg_de_self": "Wuerzburg De Self", + "wuerzburg_de_street": "Wuerzburg De Street", + "wychavon_gov_uk_self": "Wychavon Gov Uk Self", + "wychavon_gov_uk_uprn": "Wychavon Gov Uk Uprn", + "wyndham_vic_gov_au_self": "Wyndham Vic Gov Au Self", + "wyndham_vic_gov_au_street_address": "Wyndham Vic Gov Au Street Address", + "wyreforestdc_gov_uk_garden_cutomer": "Wyreforestdc Gov Uk Garden Cutomer", + "wyreforestdc_gov_uk_self": "Wyreforestdc Gov Uk Self", + "wyreforestdc_gov_uk_street": "Wyreforestdc Gov Uk Street", + "wyreforestdc_gov_uk_town": "Wyreforestdc Gov Uk Town", + "ximmio_nl_company": "Ximmio Nl Company", + "ximmio_nl_house_number": "Ximmio Nl House Number", + "ximmio_nl_post_code": "Ximmio Nl Post Code", + "ximmio_nl_self": "Ximmio Nl Self", + "yarra_ranges_vic_gov_au_self": "Yarra Ranges Vic Gov Au Self", + "yarra_ranges_vic_gov_au_street_address": "Yarra Ranges Vic Gov Au Street Address", + "york_gov_uk_self": "York Gov Uk Self", + "york_gov_uk_uprn": "York Gov Uk Uprn", + "zakb_de_hnr": "House number", + "zakb_de_hnr_zusatz": "House number addition", + "zakb_de_ort": "City", + "zakb_de_self": "Zakb De Self", + "zakb_de_strasse": "Street", + "zva_sek_de_bezirk": "City district", + "zva_sek_de_ortsteil": "District", + "zva_sek_de_self": "Zva Sek De Self", + "zva_sek_de_strasse": "Street", + "zva_wmk_de_city": "Zva Wmk De City", + "zva_wmk_de_self": "Zva Wmk De Self", + "zva_wmk_de_street": "Zva Wmk De Street" } } }, diff --git a/update_docu_links.py b/update_docu_links.py index 94d476b6..31252e63 100755 --- a/update_docu_links.py +++ b/update_docu_links.py @@ -34,6 +34,7 @@ START_SERVICE_SECTION = "" END_SERVICE_SECTION = "" LANGUAGES = ["en", "de"] +ARG_TRANSLATIONS_TO_KEEP = ["calendar_title"] class SourceInfo: @@ -401,20 +402,12 @@ def update_json( "default_params": e.extra_info_default_params, } ) - params.update(e.params) - + params.update([f"{e.module}_{p}" for p in e.params]) for lang, translations in e.custom_param_translation.items(): if lang in param_translations: - for key, value in translations.items(): - if ( - key in param_translations[lang] - and value != param_translations[lang][key] - ): - print( - f'Conflicting translations for language {lang} "{key}" => "{value}" ({e.module}) AND "{param_translations[lang][key]}"' - ) - - param_translations[lang].update(translations) + param_translations[lang].update( + {f"{e.module}_{k}": v for k, v in translations.items()} + ) else: param_translations[lang] = translations.copy() @@ -434,9 +427,13 @@ def update_json( ) as f: translations = json.load(f) - arg_translations = translations["config"]["step"]["args"]["data"] + arg_translations = {} + for key, value in translations["config"]["step"]["args"]["data"].items(): + if key in ARG_TRANSLATIONS_TO_KEEP: + arg_translations[key] = value for param in params: + param = f"{param}" if param in param_translations.get(lang, {}): arg_translations[param] = param_translations[lang][param] elif lang == "en" and param not in arg_translations: @@ -444,6 +441,9 @@ def update_json( [s.capitalize() for s in split_camel_and_snake_case(param)] ) + arg_translations = {k: arg_translations[k] for k in sorted(arg_translations)} + + translations["config"]["step"]["args"]["data"] = arg_translations translations["config"]["step"]["reconfigure"]["data"] = arg_translations with open(