Commit 7b08008c authored by Mariia Shvedchenko's avatar Mariia Shvedchenko Committed by Commit Bot

[Autofill] Add changes to fix tests.

The MatchingPattern's negative pattern type from std::string to base::Optional<std::string> has been changed and the resulting changes have been made. This fixes that every pattern's negative pattern vacuously matched.

Bug: 1142579
Change-Id: Ida580b33e9a4f0f42accdfcce082aa428ad12275
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2500221Reviewed-by: default avatarChristoph Schwering <schwering@google.com>
Commit-Queue: Christoph Schwering <schwering@google.com>
Commit-Queue: Mariia Shvedchenko <mariiash@google.com>
Cr-Commit-Position: refs/heads/master@{#821023}
parent f9a33ab2
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_PARSING_AUTOFILL_PARSING_UTILS_H_ #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_PARSING_AUTOFILL_PARSING_UTILS_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_PARSING_AUTOFILL_PARSING_UTILS_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_PARSING_AUTOFILL_PARSING_UTILS_H_
#include <base/optional.h>
#include <string> #include <string>
namespace autofill { namespace autofill {
...@@ -51,7 +52,7 @@ struct MatchingPattern { ...@@ -51,7 +52,7 @@ struct MatchingPattern {
std::string pattern_identifier; std::string pattern_identifier;
std::string positive_pattern; std::string positive_pattern;
float positive_score = 1.1f; float positive_score = 1.1f;
std::string negative_pattern; base::Optional<std::string> negative_pattern;
int match_field_attributes; int match_field_attributes;
int match_field_input_types; int match_field_input_types;
std::string language; std::string language;
......
...@@ -207,7 +207,9 @@ bool FormField::ParseFieldSpecifics( ...@@ -207,7 +207,9 @@ bool FormField::ParseFieldSpecifics(
if (base::FeatureList::IsEnabled( if (base::FeatureList::IsEnabled(
features:: features::
kAutofillApplyNegativePatternsForFieldTypeDetectionHeuristics)) { kAutofillApplyNegativePatternsForFieldTypeDetectionHeuristics)) {
if (FormField::Match(field, base::UTF8ToUTF16(pattern.negative_pattern), if (pattern.negative_pattern.has_value() &&
FormField::Match(field,
base::UTF8ToUTF16(pattern.negative_pattern.value()),
pattern.match_field_attributes, pattern.match_field_attributes,
pattern.match_field_input_types, logging)) { pattern.match_field_input_types, logging)) {
continue; continue;
......
...@@ -47,15 +47,19 @@ bool ParseMatchingPattern(PatternProvider::Map& patterns, ...@@ -47,15 +47,19 @@ bool ParseMatchingPattern(PatternProvider::Map& patterns,
base::Optional<int> match_field_input_types = base::Optional<int> match_field_input_types =
value.FindIntKey(kMatchFieldInputTypesKey); value.FindIntKey(kMatchFieldInputTypesKey);
if (!pattern_identifier || !positive_pattern || !negative_pattern || if (!pattern_identifier || !positive_pattern || !positive_score ||
!positive_score || !match_field_attributes || !match_field_input_types) !match_field_attributes || !match_field_input_types)
return false; return false;
autofill::MatchingPattern new_pattern; autofill::MatchingPattern new_pattern;
new_pattern.pattern_identifier = *pattern_identifier; new_pattern.pattern_identifier = *pattern_identifier;
new_pattern.positive_pattern = *positive_pattern; new_pattern.positive_pattern = *positive_pattern;
new_pattern.positive_score = *positive_score; new_pattern.positive_score = *positive_score;
if (negative_pattern != nullptr) {
new_pattern.negative_pattern = *negative_pattern; new_pattern.negative_pattern = *negative_pattern;
} else {
new_pattern.negative_pattern = base::nullopt;
}
new_pattern.match_field_attributes = match_field_attributes.value(); new_pattern.match_field_attributes = match_field_attributes.value();
new_pattern.match_field_input_types = match_field_input_types.value(); new_pattern.match_field_input_types = match_field_input_types.value();
new_pattern.language = language; new_pattern.language = language;
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
"pattern_identifier": "en_attention_ignored_preserving", "pattern_identifier": "en_attention_ignored_preserving",
"positive_pattern": "attention|attn", "positive_pattern": "attention|attn",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
"pattern_identifier": "en_region_ignored_preserving", "pattern_identifier": "en_region_ignored_preserving",
"positive_pattern": "province|region|other", "positive_pattern": "province|region|other",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
"pattern_identifier": "es_region_ignored_preserving", "pattern_identifier": "es_region_ignored_preserving",
"positive_pattern": "provincia", "positive_pattern": "provincia",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
"pattern_identifier": "pt_region_ignored_preserving", "pattern_identifier": "pt_region_ignored_preserving",
"positive_pattern": "bairro|suburb", "positive_pattern": "bairro|suburb",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
"pattern_identifier": "en_address_name_ignored_preserving", "pattern_identifier": "en_address_name_ignored_preserving",
"positive_pattern": "address.*nickname|address.*label", "positive_pattern": "address.*nickname|address.*label",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
"pattern_identifier": "en_company_preserving", "pattern_identifier": "en_company_preserving",
"positive_pattern": "company|business|organization|organisation", "positive_pattern": "company|business|organization|organisation",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
"pattern_identifier": "de_company_preserving", "pattern_identifier": "de_company_preserving",
"positive_pattern": "(?<!con)firma|firmenname", "positive_pattern": "(?<!con)firma|firmenname",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -81,7 +81,7 @@ ...@@ -81,7 +81,7 @@
"pattern_identifier": "es_company_preserving", "pattern_identifier": "es_company_preserving",
"positive_pattern": "empresa", "positive_pattern": "empresa",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
"pattern_identifier": "fr_company_preserving", "pattern_identifier": "fr_company_preserving",
"positive_pattern": "societe|société", "positive_pattern": "societe|société",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
"pattern_identifier": "it_company_preserving", "pattern_identifier": "it_company_preserving",
"positive_pattern": "ragione.?sociale", "positive_pattern": "ragione.?sociale",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -111,7 +111,7 @@ ...@@ -111,7 +111,7 @@
"pattern_identifier": "ja_company_preserving", "pattern_identifier": "ja_company_preserving",
"positive_pattern": "会社", "positive_pattern": "会社",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -121,7 +121,7 @@ ...@@ -121,7 +121,7 @@
"pattern_identifier": "ru_company_preserving", "pattern_identifier": "ru_company_preserving",
"positive_pattern": "название.?компании", "positive_pattern": "название.?компании",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -131,7 +131,7 @@ ...@@ -131,7 +131,7 @@
"pattern_identifier": "zh_company_preserving", "pattern_identifier": "zh_company_preserving",
"positive_pattern": "单位|公司", "positive_pattern": "单位|公司",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -141,7 +141,7 @@ ...@@ -141,7 +141,7 @@
"pattern_identifier": "fa_company_preserving", "pattern_identifier": "fa_company_preserving",
"positive_pattern": "شرکت", "positive_pattern": "شرکت",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -151,7 +151,7 @@ ...@@ -151,7 +151,7 @@
"pattern_identifier": "ko_company_preserving", "pattern_identifier": "ko_company_preserving",
"positive_pattern": "회사|직장", "positive_pattern": "회사|직장",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -163,7 +163,7 @@ ...@@ -163,7 +163,7 @@
"pattern_identifier": "en_address_line_1_preserving", "pattern_identifier": "en_address_line_1_preserving",
"positive_pattern": "^address$|address[_-]?line(one)?|address1|addr1|street|(?:shipping|billing)address$|house.?name", "positive_pattern": "^address$|address[_-]?line(one)?|address1|addr1|street|(?:shipping|billing)address$|house.?name",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -173,7 +173,7 @@ ...@@ -173,7 +173,7 @@
"pattern_identifier": "de_address_line_1_preserving", "pattern_identifier": "de_address_line_1_preserving",
"positive_pattern": "strasse|straße", "positive_pattern": "strasse|straße",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -183,7 +183,7 @@ ...@@ -183,7 +183,7 @@
"pattern_identifier": "es_address_line_1_preserving", "pattern_identifier": "es_address_line_1_preserving",
"positive_pattern": "direccion|dirección", "positive_pattern": "direccion|dirección",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -193,7 +193,7 @@ ...@@ -193,7 +193,7 @@
"pattern_identifier": "fr_address_line_1_preserving", "pattern_identifier": "fr_address_line_1_preserving",
"positive_pattern": "adresse", "positive_pattern": "adresse",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -203,7 +203,7 @@ ...@@ -203,7 +203,7 @@
"pattern_identifier": "it_address_line_1_preserving", "pattern_identifier": "it_address_line_1_preserving",
"positive_pattern": "indirizzo", "positive_pattern": "indirizzo",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -213,7 +213,7 @@ ...@@ -213,7 +213,7 @@
"pattern_identifier": "ja_address_line_1_preserving", "pattern_identifier": "ja_address_line_1_preserving",
"positive_pattern": "^住所$|住所1", "positive_pattern": "^住所$|住所1",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -223,7 +223,7 @@ ...@@ -223,7 +223,7 @@
"pattern_identifier": "pt_address_line_1_preserving", "pattern_identifier": "pt_address_line_1_preserving",
"positive_pattern": "morada|((?<!identificação do )endereço)", "positive_pattern": "morada|((?<!identificação do )endereço)",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -233,7 +233,7 @@ ...@@ -233,7 +233,7 @@
"pattern_identifier": "ru_address_line_1_preserving", "pattern_identifier": "ru_address_line_1_preserving",
"positive_pattern": "Адрес", "positive_pattern": "Адрес",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -243,7 +243,7 @@ ...@@ -243,7 +243,7 @@
"pattern_identifier": "zh_address_line_1_preserving", "pattern_identifier": "zh_address_line_1_preserving",
"positive_pattern": "地址", "positive_pattern": "地址",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -253,7 +253,7 @@ ...@@ -253,7 +253,7 @@
"pattern_identifier": "tr_address_line_1_preserving", "pattern_identifier": "tr_address_line_1_preserving",
"positive_pattern": "(\\b|_)adres(?! (başlığı(nız)?|tarifi))(\\b|_)", "positive_pattern": "(\\b|_)adres(?! (başlığı(nız)?|tarifi))(\\b|_)",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -263,7 +263,7 @@ ...@@ -263,7 +263,7 @@
"pattern_identifier": "ko_address_line_1_preserving", "pattern_identifier": "ko_address_line_1_preserving",
"positive_pattern": "^주소.?$|주소.?1", "positive_pattern": "^주소.?$|주소.?1",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -275,7 +275,7 @@ ...@@ -275,7 +275,7 @@
"pattern_identifier": "en_address_line_1_label_preserving", "pattern_identifier": "en_address_line_1_label_preserving",
"positive_pattern": "(^\\W*address)|(address\\W*$)|(?:shipping|billing|mailing|pick.?up|drop.?off|delivery|sender|postal|recipient|home|work|office|school|business|mail)[\\s\\-]+address|address\\s+(of|for|to|from)", "positive_pattern": "(^\\W*address)|(address\\W*$)|(?:shipping|billing|mailing|pick.?up|drop.?off|delivery|sender|postal|recipient|home|work|office|school|business|mail)[\\s\\-]+address|address\\s+(of|for|to|from)",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -285,7 +285,7 @@ ...@@ -285,7 +285,7 @@
"pattern_identifier": "fr_address_line_1_label_preserving", "pattern_identifier": "fr_address_line_1_label_preserving",
"positive_pattern": "adresse", "positive_pattern": "adresse",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -295,7 +295,7 @@ ...@@ -295,7 +295,7 @@
"pattern_identifier": "it_address_line_1_label_preserving", "pattern_identifier": "it_address_line_1_label_preserving",
"positive_pattern": "indirizzo", "positive_pattern": "indirizzo",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -305,7 +305,7 @@ ...@@ -305,7 +305,7 @@
"pattern_identifier": "ja_address_line_1_label_preserving", "pattern_identifier": "ja_address_line_1_label_preserving",
"positive_pattern": "住所", "positive_pattern": "住所",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -315,7 +315,7 @@ ...@@ -315,7 +315,7 @@
"pattern_identifier": "zh_address_line_1_label_preserving", "pattern_identifier": "zh_address_line_1_label_preserving",
"positive_pattern": "地址", "positive_pattern": "地址",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -325,7 +325,7 @@ ...@@ -325,7 +325,7 @@
"pattern_identifier": "tr_address_line_1_label_preserving", "pattern_identifier": "tr_address_line_1_label_preserving",
"positive_pattern": "(\\b|_)adres(?! (başlığı(nız)?|tarifi))(\\b|_)", "positive_pattern": "(\\b|_)adres(?! (başlığı(nız)?|tarifi))(\\b|_)",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -335,7 +335,7 @@ ...@@ -335,7 +335,7 @@
"pattern_identifier": "ko_address_line_1_label_preserving", "pattern_identifier": "ko_address_line_1_label_preserving",
"positive_pattern": "주소", "positive_pattern": "주소",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 17 "match_field_input_types": 17
} }
...@@ -347,7 +347,7 @@ ...@@ -347,7 +347,7 @@
"pattern_identifier": "en_address_line_2_preserving", "pattern_identifier": "en_address_line_2_preserving",
"positive_pattern": "address[_-]?line(2|two)|address2|addr2|street|suite|unit", "positive_pattern": "address[_-]?line(2|two)|address2|addr2|street|suite|unit",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -357,7 +357,7 @@ ...@@ -357,7 +357,7 @@
"pattern_identifier": "de_address_line_2_preserving", "pattern_identifier": "de_address_line_2_preserving",
"positive_pattern": "adresszusatz|ergänzende.?angaben", "positive_pattern": "adresszusatz|ergänzende.?angaben",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -367,7 +367,7 @@ ...@@ -367,7 +367,7 @@
"pattern_identifier": "es_address_line_2_preserving", "pattern_identifier": "es_address_line_2_preserving",
"positive_pattern": "direccion2|colonia|adicional", "positive_pattern": "direccion2|colonia|adicional",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -377,7 +377,7 @@ ...@@ -377,7 +377,7 @@
"pattern_identifier": "fr_address_line_2_preserving", "pattern_identifier": "fr_address_line_2_preserving",
"positive_pattern": "addresssuppl|complementnom|appartement", "positive_pattern": "addresssuppl|complementnom|appartement",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -387,7 +387,7 @@ ...@@ -387,7 +387,7 @@
"pattern_identifier": "it_address_line_2_preserving", "pattern_identifier": "it_address_line_2_preserving",
"positive_pattern": "indirizzo2", "positive_pattern": "indirizzo2",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -397,7 +397,7 @@ ...@@ -397,7 +397,7 @@
"pattern_identifier": "ja_address_line_2_preserving", "pattern_identifier": "ja_address_line_2_preserving",
"positive_pattern": "住所2", "positive_pattern": "住所2",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -407,7 +407,7 @@ ...@@ -407,7 +407,7 @@
"pattern_identifier": "pt_address_line_2_preserving", "pattern_identifier": "pt_address_line_2_preserving",
"positive_pattern": "complemento|addrcomplement", "positive_pattern": "complemento|addrcomplement",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -417,7 +417,7 @@ ...@@ -417,7 +417,7 @@
"pattern_identifier": "ru_address_line_2_preserving", "pattern_identifier": "ru_address_line_2_preserving",
"positive_pattern": "Улица", "positive_pattern": "Улица",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -427,7 +427,7 @@ ...@@ -427,7 +427,7 @@
"pattern_identifier": "zh_address_line_2_preserving", "pattern_identifier": "zh_address_line_2_preserving",
"positive_pattern": "地址2", "positive_pattern": "地址2",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -437,7 +437,7 @@ ...@@ -437,7 +437,7 @@
"pattern_identifier": "ko_address_line_2_preserving", "pattern_identifier": "ko_address_line_2_preserving",
"positive_pattern": "주소.?2", "positive_pattern": "주소.?2",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -449,7 +449,7 @@ ...@@ -449,7 +449,7 @@
"pattern_identifier": "en_address_line_2_label_preserving", "pattern_identifier": "en_address_line_2_label_preserving",
"positive_pattern": "address|line", "positive_pattern": "address|line",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -459,7 +459,7 @@ ...@@ -459,7 +459,7 @@
"pattern_identifier": "fr_address_line_2_label_preserving", "pattern_identifier": "fr_address_line_2_label_preserving",
"positive_pattern": "adresse", "positive_pattern": "adresse",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -469,7 +469,7 @@ ...@@ -469,7 +469,7 @@
"pattern_identifier": "it_address_line_2_label_preserving", "pattern_identifier": "it_address_line_2_label_preserving",
"positive_pattern": "indirizzo", "positive_pattern": "indirizzo",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -479,7 +479,7 @@ ...@@ -479,7 +479,7 @@
"pattern_identifier": "zh_address_line_2_label_preserving", "pattern_identifier": "zh_address_line_2_label_preserving",
"positive_pattern": "地址", "positive_pattern": "地址",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -489,7 +489,7 @@ ...@@ -489,7 +489,7 @@
"pattern_identifier": "ko_address_line_2_label_preserving", "pattern_identifier": "ko_address_line_2_label_preserving",
"positive_pattern": "주소", "positive_pattern": "주소",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 1, "match_field_attributes": 1,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -501,7 +501,7 @@ ...@@ -501,7 +501,7 @@
"pattern_identifier": "en_address_line_extra_preserving", "pattern_identifier": "en_address_line_extra_preserving",
"positive_pattern": "address.*line[3-9]|address[3-9]|addr[3-9]|street|line[3-9]", "positive_pattern": "address.*line[3-9]|address[3-9]|addr[3-9]|street|line[3-9]",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -511,7 +511,7 @@ ...@@ -511,7 +511,7 @@
"pattern_identifier": "es_address_line_extra_preserving", "pattern_identifier": "es_address_line_extra_preserving",
"positive_pattern": "municipio", "positive_pattern": "municipio",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -521,7 +521,7 @@ ...@@ -521,7 +521,7 @@
"pattern_identifier": "fr_address_line_extra_preserving", "pattern_identifier": "fr_address_line_extra_preserving",
"positive_pattern": "batiment|residence", "positive_pattern": "batiment|residence",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -531,7 +531,7 @@ ...@@ -531,7 +531,7 @@
"pattern_identifier": "it_address_line_extra_preserving", "pattern_identifier": "it_address_line_extra_preserving",
"positive_pattern": "indirizzo[3-9]", "positive_pattern": "indirizzo[3-9]",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -543,7 +543,7 @@ ...@@ -543,7 +543,7 @@
"pattern_identifier": "en_address_lookup_preserving", "pattern_identifier": "en_address_lookup_preserving",
"positive_pattern": "lookup", "positive_pattern": "lookup",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -555,7 +555,7 @@ ...@@ -555,7 +555,7 @@
"pattern_identifier": "en_country_preserving", "pattern_identifier": "en_country_preserving",
"positive_pattern": "country|countries", "positive_pattern": "country|countries",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -565,7 +565,7 @@ ...@@ -565,7 +565,7 @@
"pattern_identifier": "es_country_preserving", "pattern_identifier": "es_country_preserving",
"positive_pattern": "país|pais", "positive_pattern": "país|pais",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -575,7 +575,7 @@ ...@@ -575,7 +575,7 @@
"pattern_identifier": "de_country_preserving", "pattern_identifier": "de_country_preserving",
"positive_pattern": "(\\b|_)land(\\b|_)(?!.*(mark.*))", "positive_pattern": "(\\b|_)land(\\b|_)(?!.*(mark.*))",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -585,7 +585,7 @@ ...@@ -585,7 +585,7 @@
"pattern_identifier": "ja_country_preserving", "pattern_identifier": "ja_country_preserving",
"positive_pattern": "(?<!(入|出))国", "positive_pattern": "(?<!(入|出))国",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -595,7 +595,7 @@ ...@@ -595,7 +595,7 @@
"pattern_identifier": "zh_country_preserving", "pattern_identifier": "zh_country_preserving",
"positive_pattern": "国家", "positive_pattern": "国家",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -605,7 +605,7 @@ ...@@ -605,7 +605,7 @@
"pattern_identifier": "ko_country_preserving", "pattern_identifier": "ko_country_preserving",
"positive_pattern": "국가|나라", "positive_pattern": "국가|나라",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -615,7 +615,7 @@ ...@@ -615,7 +615,7 @@
"pattern_identifier": "tr_country_preserving", "pattern_identifier": "tr_country_preserving",
"positive_pattern": "(\\b|_)(ülke|ulce|ulke)(\\b|_)", "positive_pattern": "(\\b|_)(ülke|ulce|ulke)(\\b|_)",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -625,7 +625,7 @@ ...@@ -625,7 +625,7 @@
"pattern_identifier": "fa_country_preserving", "pattern_identifier": "fa_country_preserving",
"positive_pattern": "کشور", "positive_pattern": "کشور",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -637,7 +637,7 @@ ...@@ -637,7 +637,7 @@
"pattern_identifier": "en_country_location_preserving", "pattern_identifier": "en_country_location_preserving",
"positive_pattern": "location", "positive_pattern": "location",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 136 "match_field_input_types": 136
} }
...@@ -649,7 +649,7 @@ ...@@ -649,7 +649,7 @@
"pattern_identifier": "en_zip_code_preserving", "pattern_identifier": "en_zip_code_preserving",
"positive_pattern": "zip|postal|post.*code|pcode|pin.?code", "positive_pattern": "zip|postal|post.*code|pcode|pin.?code",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -659,7 +659,7 @@ ...@@ -659,7 +659,7 @@
"pattern_identifier": "de_zip_code_preserving", "pattern_identifier": "de_zip_code_preserving",
"positive_pattern": "postleitzahl", "positive_pattern": "postleitzahl",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -669,7 +669,7 @@ ...@@ -669,7 +669,7 @@
"pattern_identifier": "es_zip_code_preserving", "pattern_identifier": "es_zip_code_preserving",
"positive_pattern": "\\bcp\\b", "positive_pattern": "\\bcp\\b",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -679,7 +679,7 @@ ...@@ -679,7 +679,7 @@
"pattern_identifier": "fr_zip_code_preserving", "pattern_identifier": "fr_zip_code_preserving",
"positive_pattern": "\\bcdp\\b", "positive_pattern": "\\bcdp\\b",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -689,7 +689,7 @@ ...@@ -689,7 +689,7 @@
"pattern_identifier": "it_zip_code_preserving", "pattern_identifier": "it_zip_code_preserving",
"positive_pattern": "\\bcap\\b", "positive_pattern": "\\bcap\\b",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -699,7 +699,7 @@ ...@@ -699,7 +699,7 @@
"pattern_identifier": "ja_zip_code_preserving", "pattern_identifier": "ja_zip_code_preserving",
"positive_pattern": "郵便番号", "positive_pattern": "郵便番号",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -709,7 +709,7 @@ ...@@ -709,7 +709,7 @@
"pattern_identifier": "pt_zip_code_preserving", "pattern_identifier": "pt_zip_code_preserving",
"positive_pattern": "codigo|codpos|\\bcep\\b", "positive_pattern": "codigo|codpos|\\bcep\\b",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -719,7 +719,7 @@ ...@@ -719,7 +719,7 @@
"pattern_identifier": "ru_zip_code_preserving", "pattern_identifier": "ru_zip_code_preserving",
"positive_pattern": "Почтовый.?Индекс", "positive_pattern": "Почтовый.?Индекс",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -729,7 +729,7 @@ ...@@ -729,7 +729,7 @@
"pattern_identifier": "hi_zip_code_preserving", "pattern_identifier": "hi_zip_code_preserving",
"positive_pattern": "पिन.?कोड", "positive_pattern": "पिन.?कोड",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -739,7 +739,7 @@ ...@@ -739,7 +739,7 @@
"pattern_identifier": "ml_zip_code_preserving", "pattern_identifier": "ml_zip_code_preserving",
"positive_pattern": "പിന്‍കോഡ്", "positive_pattern": "പിന്‍കോഡ്",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -749,7 +749,7 @@ ...@@ -749,7 +749,7 @@
"pattern_identifier": "zh_zip_code_preserving", "pattern_identifier": "zh_zip_code_preserving",
"positive_pattern": "邮政编码|邮编|郵遞區號", "positive_pattern": "邮政编码|邮编|郵遞區號",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -759,7 +759,7 @@ ...@@ -759,7 +759,7 @@
"pattern_identifier": "tr_zip_code_preserving", "pattern_identifier": "tr_zip_code_preserving",
"positive_pattern": "(\\b|_)posta kodu(\\b|_)", "positive_pattern": "(\\b|_)posta kodu(\\b|_)",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -769,7 +769,7 @@ ...@@ -769,7 +769,7 @@
"pattern_identifier": "ko_zip_code_preserving", "pattern_identifier": "ko_zip_code_preserving",
"positive_pattern": "우편.?번호", "positive_pattern": "우편.?번호",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -781,7 +781,7 @@ ...@@ -781,7 +781,7 @@
"pattern_identifier": "en_zip_4_preserving", "pattern_identifier": "en_zip_4_preserving",
"positive_pattern": "zip|^-$|post2", "positive_pattern": "zip|^-$|post2",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -791,7 +791,7 @@ ...@@ -791,7 +791,7 @@
"pattern_identifier": "pt_zip_4_preserving", "pattern_identifier": "pt_zip_4_preserving",
"positive_pattern": "codpos2", "positive_pattern": "codpos2",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -803,7 +803,7 @@ ...@@ -803,7 +803,7 @@
"pattern_identifier": "en_city_preserving", "pattern_identifier": "en_city_preserving",
"positive_pattern": "city|town|suburb", "positive_pattern": "city|town|suburb",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -813,7 +813,7 @@ ...@@ -813,7 +813,7 @@
"pattern_identifier": "de_city_preserving", "pattern_identifier": "de_city_preserving",
"positive_pattern": "\\bort\\b|stadt", "positive_pattern": "\\bort\\b|stadt",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -823,7 +823,7 @@ ...@@ -823,7 +823,7 @@
"pattern_identifier": "es_city_preserving", "pattern_identifier": "es_city_preserving",
"positive_pattern": "ciudad|provincia|localidad|poblacion", "positive_pattern": "ciudad|provincia|localidad|poblacion",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -833,7 +833,7 @@ ...@@ -833,7 +833,7 @@
"pattern_identifier": "fr_city_preserving", "pattern_identifier": "fr_city_preserving",
"positive_pattern": "ville|commune", "positive_pattern": "ville|commune",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -843,7 +843,7 @@ ...@@ -843,7 +843,7 @@
"pattern_identifier": "it_city_preserving", "pattern_identifier": "it_city_preserving",
"positive_pattern": "localita", "positive_pattern": "localita",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -853,7 +853,7 @@ ...@@ -853,7 +853,7 @@
"pattern_identifier": "ja_city_preserving", "pattern_identifier": "ja_city_preserving",
"positive_pattern": "市区町村", "positive_pattern": "市区町村",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -863,7 +863,7 @@ ...@@ -863,7 +863,7 @@
"pattern_identifier": "pt_city_preserving", "pattern_identifier": "pt_city_preserving",
"positive_pattern": "cidade", "positive_pattern": "cidade",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -873,7 +873,7 @@ ...@@ -873,7 +873,7 @@
"pattern_identifier": "ru_city_preserving", "pattern_identifier": "ru_city_preserving",
"positive_pattern": "Город", "positive_pattern": "Город",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -883,7 +883,7 @@ ...@@ -883,7 +883,7 @@
"pattern_identifier": "zh_city_preserving", "pattern_identifier": "zh_city_preserving",
"positive_pattern": "市|分區", "positive_pattern": "市|分區",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -893,7 +893,7 @@ ...@@ -893,7 +893,7 @@
"pattern_identifier": "fa_city_preserving", "pattern_identifier": "fa_city_preserving",
"positive_pattern": "شهر", "positive_pattern": "شهر",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -903,7 +903,7 @@ ...@@ -903,7 +903,7 @@
"pattern_identifier": "hi_city_preserving", "pattern_identifier": "hi_city_preserving",
"positive_pattern": "शहर|ग्राम|गाँव", "positive_pattern": "शहर|ग्राम|गाँव",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -913,7 +913,7 @@ ...@@ -913,7 +913,7 @@
"pattern_identifier": "ml_city_preserving", "pattern_identifier": "ml_city_preserving",
"positive_pattern": "നഗരം|ഗ്രാമം", "positive_pattern": "നഗരം|ഗ്രാമം",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -923,7 +923,7 @@ ...@@ -923,7 +923,7 @@
"pattern_identifier": "tr_city_preserving", "pattern_identifier": "tr_city_preserving",
"positive_pattern": "((\\b|_|\\*)([İii̇]l[cç]e(miz|niz)?)(\\b|_|\\*))", "positive_pattern": "((\\b|_|\\*)([İii̇]l[cç]e(miz|niz)?)(\\b|_|\\*))",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -933,7 +933,7 @@ ...@@ -933,7 +933,7 @@
"pattern_identifier": "ko_city_preserving", "pattern_identifier": "ko_city_preserving",
"positive_pattern": "^시[^도·・]|시[·・]?군[·・]?구", "positive_pattern": "^시[^도·・]|시[·・]?군[·・]?구",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -945,7 +945,7 @@ ...@@ -945,7 +945,7 @@
"pattern_identifier": "en_state_preserving", "pattern_identifier": "en_state_preserving",
"positive_pattern": "(?<!(united|hist|history).?)state|county|region|province|county|principality", "positive_pattern": "(?<!(united|hist|history).?)state|county|region|province|county|principality",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -955,7 +955,7 @@ ...@@ -955,7 +955,7 @@
"pattern_identifier": "ja_state_preserving", "pattern_identifier": "ja_state_preserving",
"positive_pattern": "都道府県", "positive_pattern": "都道府県",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -965,7 +965,7 @@ ...@@ -965,7 +965,7 @@
"pattern_identifier": "pt_state_preserving", "pattern_identifier": "pt_state_preserving",
"positive_pattern": "estado|provincia", "positive_pattern": "estado|provincia",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -975,7 +975,7 @@ ...@@ -975,7 +975,7 @@
"pattern_identifier": "ru_state_preserving", "pattern_identifier": "ru_state_preserving",
"positive_pattern": "область", "positive_pattern": "область",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -985,7 +985,7 @@ ...@@ -985,7 +985,7 @@
"pattern_identifier": "zh_state_preserving", "pattern_identifier": "zh_state_preserving",
"positive_pattern": "省|地區", "positive_pattern": "省|地區",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -995,7 +995,7 @@ ...@@ -995,7 +995,7 @@
"pattern_identifier": "ml_state_preserving", "pattern_identifier": "ml_state_preserving",
"positive_pattern": "സംസ്ഥാനം", "positive_pattern": "സംസ്ഥാനം",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -1005,7 +1005,7 @@ ...@@ -1005,7 +1005,7 @@
"pattern_identifier": "fa_state_preserving", "pattern_identifier": "fa_state_preserving",
"positive_pattern": "استان", "positive_pattern": "استان",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -1015,7 +1015,7 @@ ...@@ -1015,7 +1015,7 @@
"pattern_identifier": "hi_state_preserving", "pattern_identifier": "hi_state_preserving",
"positive_pattern": "राज्य", "positive_pattern": "राज्य",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -1025,7 +1025,7 @@ ...@@ -1025,7 +1025,7 @@
"pattern_identifier": "tr_state_preserving", "pattern_identifier": "tr_state_preserving",
"positive_pattern": "((\\b|_|\\*)(eyalet|[şs]ehir|[İii̇]l(imiz)?|kent)(\\b|_|\\*))", "positive_pattern": "((\\b|_|\\*)(eyalet|[şs]ehir|[İii̇]l(imiz)?|kent)(\\b|_|\\*))",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -1035,7 +1035,7 @@ ...@@ -1035,7 +1035,7 @@
"pattern_identifier": "ko_state_preserving", "pattern_identifier": "ko_state_preserving",
"positive_pattern": "^시[·・]?도", "positive_pattern": "^시[·・]?도",
"positive_score": 1.1, "positive_score": 1.1,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 137 "match_field_input_types": 137
} }
...@@ -1047,7 +1047,7 @@ ...@@ -1047,7 +1047,7 @@
"pattern_identifier": "en_search_term_preserving", "pattern_identifier": "en_search_term_preserving",
"positive_pattern": "^q$|search|query|qry", "positive_pattern": "^q$|search|query|qry",
"positive_score": 0.8, "positive_score": 0.8,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 145 "match_field_input_types": 145
} }
...@@ -1057,7 +1057,7 @@ ...@@ -1057,7 +1057,7 @@
"pattern_identifier": "de_search_term_preserving", "pattern_identifier": "de_search_term_preserving",
"positive_pattern": "suche.*", "positive_pattern": "suche.*",
"positive_score": 0.8, "positive_score": 0.8,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 145 "match_field_input_types": 145
} }
...@@ -1067,7 +1067,7 @@ ...@@ -1067,7 +1067,7 @@
"pattern_identifier": "zh_search_term_preserving", "pattern_identifier": "zh_search_term_preserving",
"positive_pattern": "搜索", "positive_pattern": "搜索",
"positive_score": 0.8, "positive_score": 0.8,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 145 "match_field_input_types": 145
} }
...@@ -1077,7 +1077,7 @@ ...@@ -1077,7 +1077,7 @@
"pattern_identifier": "ja_search_term_preserving", "pattern_identifier": "ja_search_term_preserving",
"positive_pattern": "探す|検索", "positive_pattern": "探す|検索",
"positive_score": 0.8, "positive_score": 0.8,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 145 "match_field_input_types": 145
} }
...@@ -1087,7 +1087,7 @@ ...@@ -1087,7 +1087,7 @@
"pattern_identifier": "fr_search_term_preserving", "pattern_identifier": "fr_search_term_preserving",
"positive_pattern": "recherch.*", "positive_pattern": "recherch.*",
"positive_score": 0.8, "positive_score": 0.8,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 145 "match_field_input_types": 145
} }
...@@ -1097,7 +1097,7 @@ ...@@ -1097,7 +1097,7 @@
"pattern_identifier": "pt_search_term_preserving", "pattern_identifier": "pt_search_term_preserving",
"positive_pattern": "busca", "positive_pattern": "busca",
"positive_score": 0.8, "positive_score": 0.8,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 145 "match_field_input_types": 145
} }
...@@ -1107,7 +1107,7 @@ ...@@ -1107,7 +1107,7 @@
"pattern_identifier": "fa_search_term_preserving", "pattern_identifier": "fa_search_term_preserving",
"positive_pattern": "جستجو", "positive_pattern": "جستجو",
"positive_score": 0.8, "positive_score": 0.8,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 145 "match_field_input_types": 145
} }
...@@ -1117,7 +1117,7 @@ ...@@ -1117,7 +1117,7 @@
"pattern_identifier": "ru_search_term_preserving", "pattern_identifier": "ru_search_term_preserving",
"positive_pattern": "искать|найти|поиск", "positive_pattern": "искать|найти|поиск",
"positive_score": 0.8, "positive_score": 0.8,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 145 "match_field_input_types": 145
} }
...@@ -1129,7 +1129,7 @@ ...@@ -1129,7 +1129,7 @@
"pattern_identifier": "en_price_preserving", "pattern_identifier": "en_price_preserving",
"positive_pattern": "\\bprice\\b|\\brate\\b|\\bcost\\b", "positive_pattern": "\\bprice\\b|\\brate\\b|\\bcost\\b",
"positive_score": 0.95, "positive_score": 0.95,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 217 "match_field_input_types": 217
} }
...@@ -1139,7 +1139,7 @@ ...@@ -1139,7 +1139,7 @@
"pattern_identifier": "ar_price_preserving", "pattern_identifier": "ar_price_preserving",
"positive_pattern": "قیمة‎|سعر‎", "positive_pattern": "قیمة‎|سعر‎",
"positive_score": 0.95, "positive_score": 0.95,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 217 "match_field_input_types": 217
} }
...@@ -1149,7 +1149,7 @@ ...@@ -1149,7 +1149,7 @@
"pattern_identifier": "fa_price_preserving", "pattern_identifier": "fa_price_preserving",
"positive_pattern": "قیمت", "positive_pattern": "قیمت",
"positive_score": 0.95, "positive_score": 0.95,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 217 "match_field_input_types": 217
} }
...@@ -1159,7 +1159,7 @@ ...@@ -1159,7 +1159,7 @@
"pattern_identifier": "fr_price_preserving", "pattern_identifier": "fr_price_preserving",
"positive_pattern": "\\bprix\\b|\\bcoût\\b|\\bcout\\b|\\btarif\\b", "positive_pattern": "\\bprix\\b|\\bcoût\\b|\\bcout\\b|\\btarif\\b",
"positive_score": 0.95, "positive_score": 0.95,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 217 "match_field_input_types": 217
} }
...@@ -1171,7 +1171,7 @@ ...@@ -1171,7 +1171,7 @@
"pattern_identifier": "en_name_on_card_preserving", "pattern_identifier": "en_name_on_card_preserving",
"positive_pattern": "card.?(?:holder|owner)|name.*(\\b)?on(\\b)?.*card|(?:card|cc).?name|cc.?full.?name", "positive_pattern": "card.?(?:holder|owner)|name.*(\\b)?on(\\b)?.*card|(?:card|cc).?name|cc.?full.?name",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1181,7 +1181,7 @@ ...@@ -1181,7 +1181,7 @@
"pattern_identifier": "de_name_on_card_preserving", "pattern_identifier": "de_name_on_card_preserving",
"positive_pattern": "karteninhaber", "positive_pattern": "karteninhaber",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1191,7 +1191,7 @@ ...@@ -1191,7 +1191,7 @@
"pattern_identifier": "es_name_on_card_preserving", "pattern_identifier": "es_name_on_card_preserving",
"positive_pattern": "nombre.*tarjeta", "positive_pattern": "nombre.*tarjeta",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1201,7 +1201,7 @@ ...@@ -1201,7 +1201,7 @@
"pattern_identifier": "fr_name_on_card_preserving", "pattern_identifier": "fr_name_on_card_preserving",
"positive_pattern": "nom.*carte", "positive_pattern": "nom.*carte",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1211,7 +1211,7 @@ ...@@ -1211,7 +1211,7 @@
"pattern_identifier": "it_name_on_card_preserving", "pattern_identifier": "it_name_on_card_preserving",
"positive_pattern": "nome.*cart", "positive_pattern": "nome.*cart",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1221,7 +1221,7 @@ ...@@ -1221,7 +1221,7 @@
"pattern_identifier": "ja_name_on_card_preserving", "pattern_identifier": "ja_name_on_card_preserving",
"positive_pattern": "名前", "positive_pattern": "名前",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1231,7 +1231,7 @@ ...@@ -1231,7 +1231,7 @@
"pattern_identifier": "ru_name_on_card_preserving", "pattern_identifier": "ru_name_on_card_preserving",
"positive_pattern": "Имя.*карты", "positive_pattern": "Имя.*карты",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1241,7 +1241,7 @@ ...@@ -1241,7 +1241,7 @@
"pattern_identifier": "zh_name_on_card_preserving", "pattern_identifier": "zh_name_on_card_preserving",
"positive_pattern": "信用卡开户名|开户名|持卡人姓名|持卡人姓名", "positive_pattern": "信用卡开户名|开户名|持卡人姓名|持卡人姓名",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1253,7 +1253,7 @@ ...@@ -1253,7 +1253,7 @@
"pattern_identifier": "en_name_on_card_contextual_preserving", "pattern_identifier": "en_name_on_card_contextual_preserving",
"positive_pattern": "name", "positive_pattern": "name",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1265,7 +1265,7 @@ ...@@ -1265,7 +1265,7 @@
"pattern_identifier": "en_card_number_preserving", "pattern_identifier": "en_card_number_preserving",
"positive_pattern": "(add)?(?:card|cc|acct).?(?:number|#|no|num|field)", "positive_pattern": "(add)?(?:card|cc|acct).?(?:number|#|no|num|field)",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 101 "match_field_input_types": 101
} }
...@@ -1275,7 +1275,7 @@ ...@@ -1275,7 +1275,7 @@
"pattern_identifier": "de_card_number_preserving", "pattern_identifier": "de_card_number_preserving",
"positive_pattern": "(?<!telefon|haus|person|fødsels)nummer", "positive_pattern": "(?<!telefon|haus|person|fødsels)nummer",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 101 "match_field_input_types": 101
} }
...@@ -1285,7 +1285,7 @@ ...@@ -1285,7 +1285,7 @@
"pattern_identifier": "ja_card_number_preserving", "pattern_identifier": "ja_card_number_preserving",
"positive_pattern": "カード番号", "positive_pattern": "カード番号",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 101 "match_field_input_types": 101
} }
...@@ -1295,7 +1295,7 @@ ...@@ -1295,7 +1295,7 @@
"pattern_identifier": "ru_card_number_preserving", "pattern_identifier": "ru_card_number_preserving",
"positive_pattern": "Номер.*карты", "positive_pattern": "Номер.*карты",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 101 "match_field_input_types": 101
} }
...@@ -1305,7 +1305,7 @@ ...@@ -1305,7 +1305,7 @@
"pattern_identifier": "zh_card_number_preserving", "pattern_identifier": "zh_card_number_preserving",
"positive_pattern": "信用卡号|信用卡号码|信用卡卡號", "positive_pattern": "信用卡号|信用卡号码|信用卡卡號",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 101 "match_field_input_types": 101
} }
...@@ -1315,7 +1315,7 @@ ...@@ -1315,7 +1315,7 @@
"pattern_identifier": "ko_card_number_preserving", "pattern_identifier": "ko_card_number_preserving",
"positive_pattern": "카드", "positive_pattern": "카드",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 101 "match_field_input_types": 101
} }
...@@ -1325,7 +1325,7 @@ ...@@ -1325,7 +1325,7 @@
"pattern_identifier": "es_card_number_preserving", "pattern_identifier": "es_card_number_preserving",
"positive_pattern": "(numero|número|numéro)(?!.*(document|fono|phone|réservation))", "positive_pattern": "(numero|número|numéro)(?!.*(document|fono|phone|réservation))",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 101 "match_field_input_types": 101
} }
...@@ -1335,7 +1335,7 @@ ...@@ -1335,7 +1335,7 @@
"pattern_identifier": "pt_card_number_preserving", "pattern_identifier": "pt_card_number_preserving",
"positive_pattern": "(numero|número|numéro)(?!.*(document|fono|phone|réservation))", "positive_pattern": "(numero|número|numéro)(?!.*(document|fono|phone|réservation))",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 101 "match_field_input_types": 101
} }
...@@ -1345,7 +1345,7 @@ ...@@ -1345,7 +1345,7 @@
"pattern_identifier": "fr_card_number_preserving", "pattern_identifier": "fr_card_number_preserving",
"positive_pattern": "(numero|número|numéro)(?!.*(document|fono|phone|réservation))", "positive_pattern": "(numero|número|numéro)(?!.*(document|fono|phone|réservation))",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 101 "match_field_input_types": 101
} }
...@@ -1357,7 +1357,7 @@ ...@@ -1357,7 +1357,7 @@
"pattern_identifier": "en_card_cvc_preserving", "pattern_identifier": "en_card_cvc_preserving",
"positive_pattern": "verification|card.?identification|security.?code|card.?code|security.?value|security.?number|card.?pin|c-v-v|(cvn|cvv|cvc|csc|cvd|cid|ccv)(field)?|\\bcid\\b", "positive_pattern": "verification|card.?identification|security.?code|card.?code|security.?value|security.?number|card.?pin|c-v-v|(cvn|cvv|cvc|csc|cvd|cid|ccv)(field)?|\\bcid\\b",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 101 "match_field_input_types": 101
} }
...@@ -1369,7 +1369,7 @@ ...@@ -1369,7 +1369,7 @@
"pattern_identifier": "en_card_exp_month_preserving", "pattern_identifier": "en_card_exp_month_preserving",
"positive_pattern": "expir|exp.*mo|exp.*date|ccmonth|cardmonth|addmonth", "positive_pattern": "expir|exp.*mo|exp.*date|ccmonth|cardmonth|addmonth",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1379,7 +1379,7 @@ ...@@ -1379,7 +1379,7 @@
"pattern_identifier": "de_card_exp_month_preserving", "pattern_identifier": "de_card_exp_month_preserving",
"positive_pattern": "gueltig|gültig|monat", "positive_pattern": "gueltig|gültig|monat",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1389,7 +1389,7 @@ ...@@ -1389,7 +1389,7 @@
"pattern_identifier": "es_card_exp_month_preserving", "pattern_identifier": "es_card_exp_month_preserving",
"positive_pattern": "fecha", "positive_pattern": "fecha",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1399,7 +1399,7 @@ ...@@ -1399,7 +1399,7 @@
"pattern_identifier": "fr_card_exp_month_preserving", "pattern_identifier": "fr_card_exp_month_preserving",
"positive_pattern": "date.*exp", "positive_pattern": "date.*exp",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1409,7 +1409,7 @@ ...@@ -1409,7 +1409,7 @@
"pattern_identifier": "it_card_exp_month_preserving", "pattern_identifier": "it_card_exp_month_preserving",
"positive_pattern": "scadenza", "positive_pattern": "scadenza",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1419,7 +1419,7 @@ ...@@ -1419,7 +1419,7 @@
"pattern_identifier": "ja_card_exp_month_preserving", "pattern_identifier": "ja_card_exp_month_preserving",
"positive_pattern": "有効期限", "positive_pattern": "有効期限",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1429,7 +1429,7 @@ ...@@ -1429,7 +1429,7 @@
"pattern_identifier": "pt_card_exp_month_preserving", "pattern_identifier": "pt_card_exp_month_preserving",
"positive_pattern": "validade", "positive_pattern": "validade",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1439,7 +1439,7 @@ ...@@ -1439,7 +1439,7 @@
"pattern_identifier": "ru_card_exp_month_preserving", "pattern_identifier": "ru_card_exp_month_preserving",
"positive_pattern": "Срок действия карты", "positive_pattern": "Срок действия карты",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1449,7 +1449,7 @@ ...@@ -1449,7 +1449,7 @@
"pattern_identifier": "zh_card_exp_month_preserving", "pattern_identifier": "zh_card_exp_month_preserving",
"positive_pattern": "月", "positive_pattern": "月",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1461,7 +1461,7 @@ ...@@ -1461,7 +1461,7 @@
"pattern_identifier": "en_card_exp_year_preserving", "pattern_identifier": "en_card_exp_year_preserving",
"positive_pattern": "exp|^/|(add)?year", "positive_pattern": "exp|^/|(add)?year",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1471,7 +1471,7 @@ ...@@ -1471,7 +1471,7 @@
"pattern_identifier": "de_card_exp_year_preserving", "pattern_identifier": "de_card_exp_year_preserving",
"positive_pattern": "ablaufdatum|gueltig|gültig|jahr", "positive_pattern": "ablaufdatum|gueltig|gültig|jahr",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1481,7 +1481,7 @@ ...@@ -1481,7 +1481,7 @@
"pattern_identifier": "es_card_exp_year_preserving", "pattern_identifier": "es_card_exp_year_preserving",
"positive_pattern": "fecha", "positive_pattern": "fecha",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1491,7 +1491,7 @@ ...@@ -1491,7 +1491,7 @@
"pattern_identifier": "it_card_exp_year_preserving", "pattern_identifier": "it_card_exp_year_preserving",
"positive_pattern": "scadenza", "positive_pattern": "scadenza",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1501,7 +1501,7 @@ ...@@ -1501,7 +1501,7 @@
"pattern_identifier": "ja_card_exp_year_preserving", "pattern_identifier": "ja_card_exp_year_preserving",
"positive_pattern": "有効期限", "positive_pattern": "有効期限",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1511,7 +1511,7 @@ ...@@ -1511,7 +1511,7 @@
"pattern_identifier": "pt_card_exp_year_preserving", "pattern_identifier": "pt_card_exp_year_preserving",
"positive_pattern": "validade", "positive_pattern": "validade",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1521,7 +1521,7 @@ ...@@ -1521,7 +1521,7 @@
"pattern_identifier": "ru_card_exp_year_preserving", "pattern_identifier": "ru_card_exp_year_preserving",
"positive_pattern": "Срок действия карты", "positive_pattern": "Срок действия карты",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1531,7 +1531,7 @@ ...@@ -1531,7 +1531,7 @@
"pattern_identifier": "zh_card_exp_year_preserving", "pattern_identifier": "zh_card_exp_year_preserving",
"positive_pattern": "年|有效期", "positive_pattern": "年|有效期",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1543,7 +1543,7 @@ ...@@ -1543,7 +1543,7 @@
"pattern_identifier": "en_card_exp_date_2_digit_year_preserving", "pattern_identifier": "en_card_exp_date_2_digit_year_preserving",
"positive_pattern": "(?:exp.*date[^y\\n\\r]*|mm\\s*[-/]?\\s*)yy(?:[^y]|$)", "positive_pattern": "(?:exp.*date[^y\\n\\r]*|mm\\s*[-/]?\\s*)yy(?:[^y]|$)",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1555,7 +1555,7 @@ ...@@ -1555,7 +1555,7 @@
"pattern_identifier": "en_card_exp_date_4_digit_year_preserving", "pattern_identifier": "en_card_exp_date_4_digit_year_preserving",
"positive_pattern": "(?:exp.*date[^y\\n\\r]*|mm\\s*[-/]?\\s*)yyyy(?:[^y]|$)", "positive_pattern": "(?:exp.*date[^y\\n\\r]*|mm\\s*[-/]?\\s*)yyyy(?:[^y]|$)",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1567,7 +1567,7 @@ ...@@ -1567,7 +1567,7 @@
"pattern_identifier": "en_card_exp_date_preserving", "pattern_identifier": "en_card_exp_date_preserving",
"positive_pattern": "expir|exp.*date|^expfield$", "positive_pattern": "expir|exp.*date|^expfield$",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1577,7 +1577,7 @@ ...@@ -1577,7 +1577,7 @@
"pattern_identifier": "de_card_exp_date_preserving", "pattern_identifier": "de_card_exp_date_preserving",
"positive_pattern": "gueltig|gültig", "positive_pattern": "gueltig|gültig",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1587,7 +1587,7 @@ ...@@ -1587,7 +1587,7 @@
"pattern_identifier": "es_card_exp_date_preserving", "pattern_identifier": "es_card_exp_date_preserving",
"positive_pattern": "fecha", "positive_pattern": "fecha",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1597,7 +1597,7 @@ ...@@ -1597,7 +1597,7 @@
"pattern_identifier": "fr_card_exp_date_preserving", "pattern_identifier": "fr_card_exp_date_preserving",
"positive_pattern": "date.*exp", "positive_pattern": "date.*exp",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1607,7 +1607,7 @@ ...@@ -1607,7 +1607,7 @@
"pattern_identifier": "it_card_exp_date_preserving", "pattern_identifier": "it_card_exp_date_preserving",
"positive_pattern": "scadenza", "positive_pattern": "scadenza",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1617,7 +1617,7 @@ ...@@ -1617,7 +1617,7 @@
"pattern_identifier": "ja_card_exp_date_preserving", "pattern_identifier": "ja_card_exp_date_preserving",
"positive_pattern": "有効期限", "positive_pattern": "有効期限",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1627,7 +1627,7 @@ ...@@ -1627,7 +1627,7 @@
"pattern_identifier": "pt_card_exp_date_preserving", "pattern_identifier": "pt_card_exp_date_preserving",
"positive_pattern": "validade", "positive_pattern": "validade",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1637,7 +1637,7 @@ ...@@ -1637,7 +1637,7 @@
"pattern_identifier": "ru_card_exp_date_preserving", "pattern_identifier": "ru_card_exp_date_preserving",
"positive_pattern": "Срок действия карты", "positive_pattern": "Срок действия карты",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 237 "match_field_input_types": 237
} }
...@@ -1649,7 +1649,7 @@ ...@@ -1649,7 +1649,7 @@
"pattern_identifier": "en_gift_card_preserving", "pattern_identifier": "en_gift_card_preserving",
"positive_pattern": "gift.?(card|cert)", "positive_pattern": "gift.?(card|cert)",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 197 "match_field_input_types": 197
} }
...@@ -1661,7 +1661,7 @@ ...@@ -1661,7 +1661,7 @@
"pattern_identifier": "en_debit_gift_card_preserving", "pattern_identifier": "en_debit_gift_card_preserving",
"positive_pattern": "(?:visa|mastercard|discover|amex|american express).*gift.?card", "positive_pattern": "(?:visa|mastercard|discover|amex|american express).*gift.?card",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 197 "match_field_input_types": 197
} }
...@@ -1673,7 +1673,7 @@ ...@@ -1673,7 +1673,7 @@
"pattern_identifier": "en_debit_card_preserving", "pattern_identifier": "en_debit_card_preserving",
"positive_pattern": "debit.*card", "positive_pattern": "debit.*card",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 197 "match_field_input_types": 197
} }
...@@ -1685,7 +1685,7 @@ ...@@ -1685,7 +1685,7 @@
"pattern_identifier": "en_day_preserving", "pattern_identifier": "en_day_preserving",
"positive_pattern": "day", "positive_pattern": "day",
"positive_score": 1.0, "positive_score": 1.0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 9 "match_field_input_types": 9
} }
...@@ -1697,7 +1697,7 @@ ...@@ -1697,7 +1697,7 @@
"pattern_identifier": "en_email_preserving", "pattern_identifier": "en_email_preserving",
"positive_pattern": "e.?mail", "positive_pattern": "e.?mail",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1707,7 +1707,7 @@ ...@@ -1707,7 +1707,7 @@
"pattern_identifier": "fr_email_preserving", "pattern_identifier": "fr_email_preserving",
"positive_pattern": "courriel", "positive_pattern": "courriel",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1717,7 +1717,7 @@ ...@@ -1717,7 +1717,7 @@
"pattern_identifier": "es_email_preserving", "pattern_identifier": "es_email_preserving",
"positive_pattern": "correo.*electr(o|ó)nico", "positive_pattern": "correo.*electr(o|ó)nico",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1727,7 +1727,7 @@ ...@@ -1727,7 +1727,7 @@
"pattern_identifier": "ja_email_preserving", "pattern_identifier": "ja_email_preserving",
"positive_pattern": "メールアドレス", "positive_pattern": "メールアドレス",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1737,7 +1737,7 @@ ...@@ -1737,7 +1737,7 @@
"pattern_identifier": "ru_email_preserving", "pattern_identifier": "ru_email_preserving",
"positive_pattern": "Электронной.?Почты", "positive_pattern": "Электронной.?Почты",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1747,7 +1747,7 @@ ...@@ -1747,7 +1747,7 @@
"pattern_identifier": "zh_email_preserving", "pattern_identifier": "zh_email_preserving",
"positive_pattern": "邮件|邮箱|電郵地址", "positive_pattern": "邮件|邮箱|電郵地址",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1757,7 +1757,7 @@ ...@@ -1757,7 +1757,7 @@
"pattern_identifier": "ml_email_preserving", "pattern_identifier": "ml_email_preserving",
"positive_pattern": "ഇ-മെയില്‍|ഇലക്ട്രോണിക്.?മെയിൽ", "positive_pattern": "ഇ-മെയില്‍|ഇലക്ട്രോണിക്.?മെയിൽ",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1767,7 +1767,7 @@ ...@@ -1767,7 +1767,7 @@
"pattern_identifier": "fa_email_preserving", "pattern_identifier": "fa_email_preserving",
"positive_pattern": "ایمیل|پست.*الکترونیک", "positive_pattern": "ایمیل|پست.*الکترونیک",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1777,7 +1777,7 @@ ...@@ -1777,7 +1777,7 @@
"pattern_identifier": "hi_email_preserving", "pattern_identifier": "hi_email_preserving",
"positive_pattern": "ईमेल|इलॅक्ट्रॉनिक.?मेल", "positive_pattern": "ईमेल|इलॅक्ट्रॉनिक.?मेल",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1787,7 +1787,7 @@ ...@@ -1787,7 +1787,7 @@
"pattern_identifier": "tr_email_preserving", "pattern_identifier": "tr_email_preserving",
"positive_pattern": "(\\b|_)eposta(\\b|_)", "positive_pattern": "(\\b|_)eposta(\\b|_)",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1797,7 +1797,7 @@ ...@@ -1797,7 +1797,7 @@
"pattern_identifier": "ko_email_preserving", "pattern_identifier": "ko_email_preserving",
"positive_pattern": "(?:이메일|전자.?우편|[Ee]-?mail)(.?주소)?", "positive_pattern": "(?:이메일|전자.?우편|[Ee]-?mail)(.?주소)?",
"positive_score": 1.4, "positive_score": 1.4,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 3 "match_field_input_types": 3
} }
...@@ -1809,7 +1809,7 @@ ...@@ -1809,7 +1809,7 @@
"pattern_identifier": "en_name_ignored_preserving", "pattern_identifier": "en_name_ignored_preserving",
"positive_pattern": "user.?name|user.?id|nickname|maiden name|title|prefix|suffix", "positive_pattern": "user.?name|user.?id|nickname|maiden name|title|prefix|suffix",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1819,7 +1819,7 @@ ...@@ -1819,7 +1819,7 @@
"pattern_identifier": "tr_name_ignored_preserving", "pattern_identifier": "tr_name_ignored_preserving",
"positive_pattern": "adres başlığınız", "positive_pattern": "adres başlığınız",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1829,7 +1829,7 @@ ...@@ -1829,7 +1829,7 @@
"pattern_identifier": "de_name_ignored_preserving", "pattern_identifier": "de_name_ignored_preserving",
"positive_pattern": "vollständiger.?name", "positive_pattern": "vollständiger.?name",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1839,7 +1839,7 @@ ...@@ -1839,7 +1839,7 @@
"pattern_identifier": "zh_name_ignored_preserving", "pattern_identifier": "zh_name_ignored_preserving",
"positive_pattern": "用户名", "positive_pattern": "用户名",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1849,7 +1849,7 @@ ...@@ -1849,7 +1849,7 @@
"pattern_identifier": "ko_name_ignored_preserving", "pattern_identifier": "ko_name_ignored_preserving",
"positive_pattern": "(?:사용자.?)?아이디|사용자.?ID", "positive_pattern": "(?:사용자.?)?아이디|사용자.?ID",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1861,7 +1861,7 @@ ...@@ -1861,7 +1861,7 @@
"pattern_identifier": "en_full_name_preserving", "pattern_identifier": "en_full_name_preserving",
"positive_pattern": "^name|full.?name|your.?name|customer.?name|bill.?name|ship.?name|name.*first.*last|firstandlastname", "positive_pattern": "^name|full.?name|your.?name|customer.?name|bill.?name|ship.?name|name.*first.*last|firstandlastname",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1871,7 +1871,7 @@ ...@@ -1871,7 +1871,7 @@
"pattern_identifier": "es_full_name_preserving", "pattern_identifier": "es_full_name_preserving",
"positive_pattern": "nombre.*y.*apellidos", "positive_pattern": "nombre.*y.*apellidos",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1881,7 +1881,7 @@ ...@@ -1881,7 +1881,7 @@
"pattern_identifier": "fr_full_name_preserving", "pattern_identifier": "fr_full_name_preserving",
"positive_pattern": "^nom(?!bre)", "positive_pattern": "^nom(?!bre)",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1891,7 +1891,7 @@ ...@@ -1891,7 +1891,7 @@
"pattern_identifier": "ja_full_name_preserving", "pattern_identifier": "ja_full_name_preserving",
"positive_pattern": "お名前|氏名", "positive_pattern": "お名前|氏名",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1901,7 +1901,7 @@ ...@@ -1901,7 +1901,7 @@
"pattern_identifier": "pt_full_name_preserving", "pattern_identifier": "pt_full_name_preserving",
"positive_pattern": "^nome", "positive_pattern": "^nome",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1911,7 +1911,7 @@ ...@@ -1911,7 +1911,7 @@
"pattern_identifier": "fa_full_name_preserving", "pattern_identifier": "fa_full_name_preserving",
"positive_pattern": "نام.*نام.*خانوادگی", "positive_pattern": "نام.*نام.*خانوادگی",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1921,7 +1921,7 @@ ...@@ -1921,7 +1921,7 @@
"pattern_identifier": "zh_full_name_preserving", "pattern_identifier": "zh_full_name_preserving",
"positive_pattern": "姓名", "positive_pattern": "姓名",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1931,7 +1931,7 @@ ...@@ -1931,7 +1931,7 @@
"pattern_identifier": "tr_full_name_preserving", "pattern_identifier": "tr_full_name_preserving",
"positive_pattern": "(\\b|_|\\*)ad[ı]? soyad[ı]?(\\b|_|\\*)", "positive_pattern": "(\\b|_|\\*)ad[ı]? soyad[ı]?(\\b|_|\\*)",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1941,7 +1941,7 @@ ...@@ -1941,7 +1941,7 @@
"pattern_identifier": "ko_full_name_preserving", "pattern_identifier": "ko_full_name_preserving",
"positive_pattern": "성명", "positive_pattern": "성명",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1953,7 +1953,7 @@ ...@@ -1953,7 +1953,7 @@
"pattern_identifier": "en_name_specific_preserving", "pattern_identifier": "en_name_specific_preserving",
"positive_pattern": "^name", "positive_pattern": "^name",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1963,7 +1963,7 @@ ...@@ -1963,7 +1963,7 @@
"pattern_identifier": "fr_name_specific_preserving", "pattern_identifier": "fr_name_specific_preserving",
"positive_pattern": "^nom", "positive_pattern": "^nom",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1973,7 +1973,7 @@ ...@@ -1973,7 +1973,7 @@
"pattern_identifier": "pt_name_specific_preserving", "pattern_identifier": "pt_name_specific_preserving",
"positive_pattern": "^nome", "positive_pattern": "^nome",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1985,7 +1985,7 @@ ...@@ -1985,7 +1985,7 @@
"pattern_identifier": "en_first_name_preserving", "pattern_identifier": "en_first_name_preserving",
"positive_pattern": "first.*name|initials|fname|first$|given.*name", "positive_pattern": "first.*name|initials|fname|first$|given.*name",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -1995,7 +1995,7 @@ ...@@ -1995,7 +1995,7 @@
"pattern_identifier": "de_first_name_preserving", "pattern_identifier": "de_first_name_preserving",
"positive_pattern": "vorname", "positive_pattern": "vorname",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2005,7 +2005,7 @@ ...@@ -2005,7 +2005,7 @@
"pattern_identifier": "es_first_name_preserving", "pattern_identifier": "es_first_name_preserving",
"positive_pattern": "nombre", "positive_pattern": "nombre",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2015,7 +2015,7 @@ ...@@ -2015,7 +2015,7 @@
"pattern_identifier": "fr_first_name_preserving", "pattern_identifier": "fr_first_name_preserving",
"positive_pattern": "forename|prénom|prenom", "positive_pattern": "forename|prénom|prenom",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2025,7 +2025,7 @@ ...@@ -2025,7 +2025,7 @@
"pattern_identifier": "ja_first_name_preserving", "pattern_identifier": "ja_first_name_preserving",
"positive_pattern": "名", "positive_pattern": "名",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2035,7 +2035,7 @@ ...@@ -2035,7 +2035,7 @@
"pattern_identifier": "pt_first_name_preserving", "pattern_identifier": "pt_first_name_preserving",
"positive_pattern": "nome", "positive_pattern": "nome",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2045,7 +2045,7 @@ ...@@ -2045,7 +2045,7 @@
"pattern_identifier": "ru_first_name_preserving", "pattern_identifier": "ru_first_name_preserving",
"positive_pattern": "Имя", "positive_pattern": "Имя",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2055,7 +2055,7 @@ ...@@ -2055,7 +2055,7 @@
"pattern_identifier": "fa_first_name_preserving", "pattern_identifier": "fa_first_name_preserving",
"positive_pattern": "نام", "positive_pattern": "نام",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2065,7 +2065,7 @@ ...@@ -2065,7 +2065,7 @@
"pattern_identifier": "ko_first_name_preserving", "pattern_identifier": "ko_first_name_preserving",
"positive_pattern": "이름", "positive_pattern": "이름",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2075,7 +2075,7 @@ ...@@ -2075,7 +2075,7 @@
"pattern_identifier": "ml_first_name_preserving", "pattern_identifier": "ml_first_name_preserving",
"positive_pattern": "പേര്", "positive_pattern": "പേര്",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2085,7 +2085,7 @@ ...@@ -2085,7 +2085,7 @@
"pattern_identifier": "tr_first_name_preserving", "pattern_identifier": "tr_first_name_preserving",
"positive_pattern": "(\\b|_|\\*)(isim|ad|ad(i|ı|iniz|ınız)?)(\\b|_|\\*)", "positive_pattern": "(\\b|_|\\*)(isim|ad|ad(i|ı|iniz|ınız)?)(\\b|_|\\*)",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2095,7 +2095,7 @@ ...@@ -2095,7 +2095,7 @@
"pattern_identifier": "hi_first_name_preserving", "pattern_identifier": "hi_first_name_preserving",
"positive_pattern": "नाम", "positive_pattern": "नाम",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2107,7 +2107,7 @@ ...@@ -2107,7 +2107,7 @@
"pattern_identifier": "en_middle_initial_preserving", "pattern_identifier": "en_middle_initial_preserving",
"positive_pattern": "middle.*initial|m\\.i\\.|mi$|\\bmi\\b", "positive_pattern": "middle.*initial|m\\.i\\.|mi$|\\bmi\\b",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2119,7 +2119,7 @@ ...@@ -2119,7 +2119,7 @@
"pattern_identifier": "en_middle_name_preserving", "pattern_identifier": "en_middle_name_preserving",
"positive_pattern": "middle.*name|mname|middle$", "positive_pattern": "middle.*name|mname|middle$",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2131,7 +2131,7 @@ ...@@ -2131,7 +2131,7 @@
"pattern_identifier": "en_last_name_preserving", "pattern_identifier": "en_last_name_preserving",
"positive_pattern": "last.*name|lname|surname(?!\\d)|last$|secondname|family.*name", "positive_pattern": "last.*name|lname|surname(?!\\d)|last$|secondname|family.*name",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2141,7 +2141,7 @@ ...@@ -2141,7 +2141,7 @@
"pattern_identifier": "de_last_name_preserving", "pattern_identifier": "de_last_name_preserving",
"positive_pattern": "nachname", "positive_pattern": "nachname",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2151,7 +2151,7 @@ ...@@ -2151,7 +2151,7 @@
"pattern_identifier": "es_last_name_preserving", "pattern_identifier": "es_last_name_preserving",
"positive_pattern": "apellidos?", "positive_pattern": "apellidos?",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2161,7 +2161,7 @@ ...@@ -2161,7 +2161,7 @@
"pattern_identifier": "fr_last_name_preserving", "pattern_identifier": "fr_last_name_preserving",
"positive_pattern": "famille|^nom(?!bre)", "positive_pattern": "famille|^nom(?!bre)",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2171,7 +2171,7 @@ ...@@ -2171,7 +2171,7 @@
"pattern_identifier": "it_last_name_preserving", "pattern_identifier": "it_last_name_preserving",
"positive_pattern": "cognome", "positive_pattern": "cognome",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2181,7 +2181,7 @@ ...@@ -2181,7 +2181,7 @@
"pattern_identifier": "ja_last_name_preserving", "pattern_identifier": "ja_last_name_preserving",
"positive_pattern": "姓", "positive_pattern": "姓",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2191,7 +2191,7 @@ ...@@ -2191,7 +2191,7 @@
"pattern_identifier": "pt_last_name_preserving", "pattern_identifier": "pt_last_name_preserving",
"positive_pattern": "apelidos|surename|sobrenome", "positive_pattern": "apelidos|surename|sobrenome",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2201,7 +2201,7 @@ ...@@ -2201,7 +2201,7 @@
"pattern_identifier": "ru_last_name_preserving", "pattern_identifier": "ru_last_name_preserving",
"positive_pattern": "Фамилия", "positive_pattern": "Фамилия",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2211,7 +2211,7 @@ ...@@ -2211,7 +2211,7 @@
"pattern_identifier": "fa_last_name_preserving", "pattern_identifier": "fa_last_name_preserving",
"positive_pattern": "نام.*خانوادگی", "positive_pattern": "نام.*خانوادگی",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2221,7 +2221,7 @@ ...@@ -2221,7 +2221,7 @@
"pattern_identifier": "hi_last_name_preserving", "pattern_identifier": "hi_last_name_preserving",
"positive_pattern": "उपनाम", "positive_pattern": "उपनाम",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2231,7 +2231,7 @@ ...@@ -2231,7 +2231,7 @@
"pattern_identifier": "ml_last_name_preserving", "pattern_identifier": "ml_last_name_preserving",
"positive_pattern": "മറുപേര്", "positive_pattern": "മറുപേര്",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2241,7 +2241,7 @@ ...@@ -2241,7 +2241,7 @@
"pattern_identifier": "tr_last_name_preserving", "pattern_identifier": "tr_last_name_preserving",
"positive_pattern": "(\\b|_|\\*)(soyisim|soyad(i|ı|iniz|ınız)?)(\\b|_|\\*)", "positive_pattern": "(\\b|_|\\*)(soyisim|soyad(i|ı|iniz|ınız)?)(\\b|_|\\*)",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2251,7 +2251,7 @@ ...@@ -2251,7 +2251,7 @@
"pattern_identifier": "ko_last_name_preserving", "pattern_identifier": "ko_last_name_preserving",
"positive_pattern": "\\b성(?:[^명]|\\b)", "positive_pattern": "\\b성(?:[^명]|\\b)",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2263,7 +2263,7 @@ ...@@ -2263,7 +2263,7 @@
"pattern_identifier": "es_last_name_first_preserving", "pattern_identifier": "es_last_name_first_preserving",
"positive_pattern": "(primer.*apellido)|(apellido1)|(apellido.*paterno)|surname_?1|first(\\s|_)?surname", "positive_pattern": "(primer.*apellido)|(apellido1)|(apellido.*paterno)|surname_?1|first(\\s|_)?surname",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2275,7 +2275,7 @@ ...@@ -2275,7 +2275,7 @@
"pattern_identifier": "es_last_name_second_preserving", "pattern_identifier": "es_last_name_second_preserving",
"positive_pattern": "(segund.*apellido)|(apellido2)|(apellido.*materno)|surname_?2|second(\\s|_)?surname", "positive_pattern": "(segund.*apellido)|(apellido2)|(apellido.*materno)|surname_?2|second(\\s|_)?surname",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2287,7 +2287,7 @@ ...@@ -2287,7 +2287,7 @@
"pattern_identifier": "en_honorific_prefix_preserving", "pattern_identifier": "en_honorific_prefix_preserving",
"positive_pattern": "^title:?$|(salutation(?! and given name))", "positive_pattern": "^title:?$|(salutation(?! and given name))",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2297,7 +2297,7 @@ ...@@ -2297,7 +2297,7 @@
"pattern_identifier": "de_honorific_prefix_preserving", "pattern_identifier": "de_honorific_prefix_preserving",
"positive_pattern": "anrede|titel", "positive_pattern": "anrede|titel",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2307,7 +2307,7 @@ ...@@ -2307,7 +2307,7 @@
"pattern_identifier": "es_honorific_prefix_preserving", "pattern_identifier": "es_honorific_prefix_preserving",
"positive_pattern": "tratamiento|encabezamiento", "positive_pattern": "tratamiento|encabezamiento",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2317,7 +2317,7 @@ ...@@ -2317,7 +2317,7 @@
"pattern_identifier": "it_honorific_prefix_preserving", "pattern_identifier": "it_honorific_prefix_preserving",
"positive_pattern": "titolo", "positive_pattern": "titolo",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2327,7 +2327,7 @@ ...@@ -2327,7 +2327,7 @@
"pattern_identifier": "fr_honorific_prefix_preserving", "pattern_identifier": "fr_honorific_prefix_preserving",
"positive_pattern": "titre", "positive_pattern": "titre",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2337,7 +2337,7 @@ ...@@ -2337,7 +2337,7 @@
"pattern_identifier": "ru_honorific_prefix_preserving", "pattern_identifier": "ru_honorific_prefix_preserving",
"positive_pattern": "обраще́ние|зва́ние", "positive_pattern": "обраще́ние|зва́ние",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2347,7 +2347,7 @@ ...@@ -2347,7 +2347,7 @@
"pattern_identifier": "el_honorific_prefix_preserving", "pattern_identifier": "el_honorific_prefix_preserving",
"positive_pattern": "προσφώνηση", "positive_pattern": "προσφώνηση",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2357,7 +2357,7 @@ ...@@ -2357,7 +2357,7 @@
"pattern_identifier": "tr_honorific_prefix_preserving", "pattern_identifier": "tr_honorific_prefix_preserving",
"positive_pattern": "hitap", "positive_pattern": "hitap",
"positive_score": 0.9, "positive_score": 0.9,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2369,7 +2369,7 @@ ...@@ -2369,7 +2369,7 @@
"pattern_identifier": "en_phone_preserving", "pattern_identifier": "en_phone_preserving",
"positive_pattern": "phone|mobile|contact.?number", "positive_pattern": "phone|mobile|contact.?number",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2379,7 +2379,7 @@ ...@@ -2379,7 +2379,7 @@
"pattern_identifier": "de_phone_preserving", "pattern_identifier": "de_phone_preserving",
"positive_pattern": "telefonnummer", "positive_pattern": "telefonnummer",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2389,7 +2389,7 @@ ...@@ -2389,7 +2389,7 @@
"pattern_identifier": "es_phone_preserving", "pattern_identifier": "es_phone_preserving",
"positive_pattern": "telefono|teléfono", "positive_pattern": "telefono|teléfono",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2399,7 +2399,7 @@ ...@@ -2399,7 +2399,7 @@
"pattern_identifier": "fr_phone_preserving", "pattern_identifier": "fr_phone_preserving",
"positive_pattern": "telfixe", "positive_pattern": "telfixe",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2409,7 +2409,7 @@ ...@@ -2409,7 +2409,7 @@
"pattern_identifier": "ja_phone_preserving", "pattern_identifier": "ja_phone_preserving",
"positive_pattern": "電話", "positive_pattern": "電話",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2419,7 +2419,7 @@ ...@@ -2419,7 +2419,7 @@
"pattern_identifier": "pt_phone_preserving", "pattern_identifier": "pt_phone_preserving",
"positive_pattern": "telefone|telemovel", "positive_pattern": "telefone|telemovel",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2429,7 +2429,7 @@ ...@@ -2429,7 +2429,7 @@
"pattern_identifier": "ru_phone_preserving", "pattern_identifier": "ru_phone_preserving",
"positive_pattern": "телефон", "positive_pattern": "телефон",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2439,7 +2439,7 @@ ...@@ -2439,7 +2439,7 @@
"pattern_identifier": "hi_phone_preserving", "pattern_identifier": "hi_phone_preserving",
"positive_pattern": "मोबाइल", "positive_pattern": "मोबाइल",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2449,7 +2449,7 @@ ...@@ -2449,7 +2449,7 @@
"pattern_identifier": "tr_phone_preserving", "pattern_identifier": "tr_phone_preserving",
"positive_pattern": "(\\b|_|\\*)telefon(\\b|_|\\*)", "positive_pattern": "(\\b|_|\\*)telefon(\\b|_|\\*)",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2459,7 +2459,7 @@ ...@@ -2459,7 +2459,7 @@
"pattern_identifier": "zh_phone_preserving", "pattern_identifier": "zh_phone_preserving",
"positive_pattern": "电话", "positive_pattern": "电话",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2469,7 +2469,7 @@ ...@@ -2469,7 +2469,7 @@
"pattern_identifier": "ml_phone_preserving", "pattern_identifier": "ml_phone_preserving",
"positive_pattern": "മൊബൈല്‍", "positive_pattern": "മൊബൈല്‍",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2479,7 +2479,7 @@ ...@@ -2479,7 +2479,7 @@
"pattern_identifier": "ko_phone_preserving", "pattern_identifier": "ko_phone_preserving",
"positive_pattern": "(?:전화|핸드폰|휴대폰|휴대전화)(?:.?번호)?", "positive_pattern": "(?:전화|핸드폰|휴대폰|휴대전화)(?:.?번호)?",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2491,7 +2491,7 @@ ...@@ -2491,7 +2491,7 @@
"pattern_identifier": "en_augmented_phone_country_code_preserving", "pattern_identifier": "en_augmented_phone_country_code_preserving",
"positive_pattern": "^[^0-9+]*(?:\\+|00)\\s*([1-9]\\d{0,3})\\D*$", "positive_pattern": "^[^0-9+]*(?:\\+|00)\\s*([1-9]\\d{0,3})\\D*$",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2503,7 +2503,7 @@ ...@@ -2503,7 +2503,7 @@
"pattern_identifier": "en_phone_country_code_preserving", "pattern_identifier": "en_phone_country_code_preserving",
"positive_pattern": "country.*code|ccode|_cc|phone.*code|user.*phone.*code", "positive_pattern": "country.*code|ccode|_cc|phone.*code|user.*phone.*code",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 77 "match_field_input_types": 77
} }
...@@ -2515,7 +2515,7 @@ ...@@ -2515,7 +2515,7 @@
"pattern_identifier": "en_phone_area_code_no_text_preserving", "pattern_identifier": "en_phone_area_code_no_text_preserving",
"positive_pattern": "^\\($", "positive_pattern": "^\\($",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2527,7 +2527,7 @@ ...@@ -2527,7 +2527,7 @@
"pattern_identifier": "en_phone_area_code_preserving", "pattern_identifier": "en_phone_area_code_preserving",
"positive_pattern": "area.*code|acode|area", "positive_pattern": "area.*code|acode|area",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2537,7 +2537,7 @@ ...@@ -2537,7 +2537,7 @@
"pattern_identifier": "ko_phone_area_code_preserving", "pattern_identifier": "ko_phone_area_code_preserving",
"positive_pattern": "지역.?번호", "positive_pattern": "지역.?번호",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2549,7 +2549,7 @@ ...@@ -2549,7 +2549,7 @@
"pattern_identifier": "en_phone_prefix_separator_preserving", "pattern_identifier": "en_phone_prefix_separator_preserving",
"positive_pattern": "^-$|^\\)$", "positive_pattern": "^-$|^\\)$",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2561,7 +2561,7 @@ ...@@ -2561,7 +2561,7 @@
"pattern_identifier": "en_phone_suffix_separator_preserving", "pattern_identifier": "en_phone_suffix_separator_preserving",
"positive_pattern": "^-$", "positive_pattern": "^-$",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2573,7 +2573,7 @@ ...@@ -2573,7 +2573,7 @@
"pattern_identifier": "en_phone_prefix_preserving", "pattern_identifier": "en_phone_prefix_preserving",
"positive_pattern": "prefix|exchange", "positive_pattern": "prefix|exchange",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2583,7 +2583,7 @@ ...@@ -2583,7 +2583,7 @@
"pattern_identifier": "fr_phone_prefix_preserving", "pattern_identifier": "fr_phone_prefix_preserving",
"positive_pattern": "preselection", "positive_pattern": "preselection",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2593,7 +2593,7 @@ ...@@ -2593,7 +2593,7 @@
"pattern_identifier": "pt_phone_prefix_preserving", "pattern_identifier": "pt_phone_prefix_preserving",
"positive_pattern": "ddd", "positive_pattern": "ddd",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2605,7 +2605,7 @@ ...@@ -2605,7 +2605,7 @@
"pattern_identifier": "en_phone_suffix_preserving", "pattern_identifier": "en_phone_suffix_preserving",
"positive_pattern": "suffix", "positive_pattern": "suffix",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2617,7 +2617,7 @@ ...@@ -2617,7 +2617,7 @@
"pattern_identifier": "en_phone_extension_preserving", "pattern_identifier": "en_phone_extension_preserving",
"positive_pattern": "\\bext|ext\\b|extension", "positive_pattern": "\\bext|ext\\b|extension",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2627,7 +2627,7 @@ ...@@ -2627,7 +2627,7 @@
"pattern_identifier": "pt_phone_extension_preserving", "pattern_identifier": "pt_phone_extension_preserving",
"positive_pattern": "ramal", "positive_pattern": "ramal",
"positive_score": 1.3, "positive_score": 1.3,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 69 "match_field_input_types": 69
} }
...@@ -2639,7 +2639,7 @@ ...@@ -2639,7 +2639,7 @@
"pattern_identifier": "en_passport_preserving", "pattern_identifier": "en_passport_preserving",
"positive_pattern": "document.*number|passport", "positive_pattern": "document.*number|passport",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2649,7 +2649,7 @@ ...@@ -2649,7 +2649,7 @@
"pattern_identifier": "fr_passport_preserving", "pattern_identifier": "fr_passport_preserving",
"positive_pattern": "passeport", "positive_pattern": "passeport",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2659,7 +2659,7 @@ ...@@ -2659,7 +2659,7 @@
"pattern_identifier": "es_passport_preserving", "pattern_identifier": "es_passport_preserving",
"positive_pattern": "numero.*documento|pasaporte", "positive_pattern": "numero.*documento|pasaporte",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2669,7 +2669,7 @@ ...@@ -2669,7 +2669,7 @@
"pattern_identifier": "ja_passport_preserving", "pattern_identifier": "ja_passport_preserving",
"positive_pattern": "書類", "positive_pattern": "書類",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2681,7 +2681,7 @@ ...@@ -2681,7 +2681,7 @@
"pattern_identifier": "en_travel_origin_preserving", "pattern_identifier": "en_travel_origin_preserving",
"positive_pattern": "point.*of.*entry|arrival", "positive_pattern": "point.*of.*entry|arrival",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2691,7 +2691,7 @@ ...@@ -2691,7 +2691,7 @@
"pattern_identifier": "es_travel_origin_preserving", "pattern_identifier": "es_travel_origin_preserving",
"positive_pattern": "punto.*internaci(o|ó)n|fecha.*llegada", "positive_pattern": "punto.*internaci(o|ó)n|fecha.*llegada",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2701,7 +2701,7 @@ ...@@ -2701,7 +2701,7 @@
"pattern_identifier": "ja_travel_origin_preserving", "pattern_identifier": "ja_travel_origin_preserving",
"positive_pattern": "入国", "positive_pattern": "入国",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2713,7 +2713,7 @@ ...@@ -2713,7 +2713,7 @@
"pattern_identifier": "en_travel_destination_preserving", "pattern_identifier": "en_travel_destination_preserving",
"positive_pattern": "departure", "positive_pattern": "departure",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2723,7 +2723,7 @@ ...@@ -2723,7 +2723,7 @@
"pattern_identifier": "es_travel_destination_preserving", "pattern_identifier": "es_travel_destination_preserving",
"positive_pattern": "fecha.*salida|destino", "positive_pattern": "fecha.*salida|destino",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2733,7 +2733,7 @@ ...@@ -2733,7 +2733,7 @@
"pattern_identifier": "ja_travel_destination_preserving", "pattern_identifier": "ja_travel_destination_preserving",
"positive_pattern": "出国", "positive_pattern": "出国",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2745,7 +2745,7 @@ ...@@ -2745,7 +2745,7 @@
"pattern_identifier": "en_flight_preserving", "pattern_identifier": "en_flight_preserving",
"positive_pattern": "airline|flight", "positive_pattern": "airline|flight",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2755,7 +2755,7 @@ ...@@ -2755,7 +2755,7 @@
"pattern_identifier": "es_flight_preserving", "pattern_identifier": "es_flight_preserving",
"positive_pattern": "aerol(i|í)nea|n(u|ú)mero.*vuelo", "positive_pattern": "aerol(i|í)nea|n(u|ú)mero.*vuelo",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2765,7 +2765,7 @@ ...@@ -2765,7 +2765,7 @@
"pattern_identifier": "ja_flight_preserving", "pattern_identifier": "ja_flight_preserving",
"positive_pattern": "便名|航空会社", "positive_pattern": "便名|航空会社",
"positive_score": 1.2, "positive_score": 1.2,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2777,7 +2777,7 @@ ...@@ -2777,7 +2777,7 @@
"pattern_identifier": "en_upi_virtual_payment_address_user@(IFSC/Aadhaar/Mobile/RuPay)_preserving", "pattern_identifier": "en_upi_virtual_payment_address_user@(IFSC/Aadhaar/Mobile/RuPay)_preserving",
"positive_pattern": "^[\\w.+-_]+@(\\w+\\.ifsc\\.npci|aadhaar\\.npci|mobile\\.npci|rupay\\.npci)$", "positive_pattern": "^[\\w.+-_]+@(\\w+\\.ifsc\\.npci|aadhaar\\.npci|mobile\\.npci|rupay\\.npci)$",
"positive_score": 0, "positive_score": 0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
}, },
...@@ -2785,7 +2785,7 @@ ...@@ -2785,7 +2785,7 @@
"pattern_identifier": "en_upi_virtual_payment_address_user@(bank_list)_preserving", "pattern_identifier": "en_upi_virtual_payment_address_user@(bank_list)_preserving",
"positive_pattern": "^[\\w.+-_]+@(airtel|airtelpaymentsbank|albk|allahabadbank|allbank|andb|apb|apl|axis|axisbank|axisgo|bandhan|barodampay|birla|boi|cbin|cboi|centralbank|cmsidfc|cnrb|csbcash|csbpay|cub|dbs|dcb|dcbbank|denabank|dlb|eazypay|equitas|ezeepay|fbl|federal|finobank|hdfcbank|hsbc|icici|idbi|idbibank|idfc|idfcbank|idfcnetc|ikwik|imobile|indbank|indianbank|indianbk|indus|iob|jkb|jsb|jsbp|karb|karurvysyabank|kaypay|kbl|kbl052|kmb|kmbl|kotak|kvb|kvbank|lime|lvb|lvbank|mahb|obc|okaxis|okbizaxis|okhdfcbank|okicici|oksbi|paytm|payzapp|pingpay|pnb|pockets|psb|purz|rajgovhdfcbank|rbl|sbi|sc|scb|scbl|scmobile|sib|srcb|synd|syndbank|syndicate|tjsb|tjsp|ubi|uboi|uco|unionbank|unionbankofindia|united|upi|utbi|vijayabank|vijb|vjb|ybl|yesbank|yesbankltd)$", "positive_pattern": "^[\\w.+-_]+@(airtel|airtelpaymentsbank|albk|allahabadbank|allbank|andb|apb|apl|axis|axisbank|axisgo|bandhan|barodampay|birla|boi|cbin|cboi|centralbank|cmsidfc|cnrb|csbcash|csbpay|cub|dbs|dcb|dcbbank|denabank|dlb|eazypay|equitas|ezeepay|fbl|federal|finobank|hdfcbank|hsbc|icici|idbi|idbibank|idfc|idfcbank|idfcnetc|ikwik|imobile|indbank|indianbank|indianbk|indus|iob|jkb|jsb|jsbp|karb|karurvysyabank|kaypay|kbl|kbl052|kmb|kmbl|kotak|kvb|kvbank|lime|lvb|lvbank|mahb|obc|okaxis|okbizaxis|okhdfcbank|okicici|oksbi|paytm|payzapp|pingpay|pnb|pockets|psb|purz|rajgovhdfcbank|rbl|sbi|sc|scb|scbl|scmobile|sib|srcb|synd|syndbank|syndicate|tjsb|tjsp|ubi|uboi|uco|unionbank|unionbankofindia|united|upi|utbi|vijayabank|vijb|vjb|ybl|yesbank|yesbankltd)$",
"positive_score": 0, "positive_score": 0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2797,7 +2797,7 @@ ...@@ -2797,7 +2797,7 @@
"pattern_identifier": "en_international_bank_account_number_preserving", "pattern_identifier": "en_international_bank_account_number_preserving",
"positive_pattern": "^[a-zA-Z]{2}[0-9]{2}[a-zA-Z0-9]{4}[0-9]{7}([a-zA-Z0-9]?){0,16}$", "positive_pattern": "^[a-zA-Z]{2}[0-9]{2}[a-zA-Z0-9]{4}[0-9]{7}([a-zA-Z0-9]?){0,16}$",
"positive_score": 0, "positive_score": 0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2809,7 +2809,7 @@ ...@@ -2809,7 +2809,7 @@
"pattern_identifier": "en_credit_card_cvc_preserving", "pattern_identifier": "en_credit_card_cvc_preserving",
"positive_pattern": "^\\d{3,4}$", "positive_pattern": "^\\d{3,4}$",
"positive_score": 0, "positive_score": 0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2821,7 +2821,7 @@ ...@@ -2821,7 +2821,7 @@
"pattern_identifier": "en_credit_card_exp_year_preserving", "pattern_identifier": "en_credit_card_exp_year_preserving",
"positive_pattern": "^[2][0][1-9][0-9]$", "positive_pattern": "^[2][0][1-9][0-9]$",
"positive_score": 0, "positive_score": 0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2833,7 +2833,7 @@ ...@@ -2833,7 +2833,7 @@
"pattern_identifier": "en_url_search_action_preserving", "pattern_identifier": "en_url_search_action_preserving",
"positive_pattern": "/search(/|((\\w*\\.\\w+)?$))", "positive_pattern": "/search(/|((\\w*\\.\\w+)?$))",
"positive_score": 0, "positive_score": 0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2845,7 +2845,7 @@ ...@@ -2845,7 +2845,7 @@
"pattern_identifier": "en_social_security_preserving", "pattern_identifier": "en_social_security_preserving",
"positive_pattern": "ssn|social.?security.?(num(ber)?|#)*", "positive_pattern": "ssn|social.?security.?(num(ber)?|#)*",
"positive_score": 0, "positive_score": 0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
...@@ -2857,7 +2857,7 @@ ...@@ -2857,7 +2857,7 @@
"pattern_identifier": "en_one_time_password_preserving", "pattern_identifier": "en_one_time_password_preserving",
"positive_pattern": "one.?time|sms.?(code|token|password|pwd|pass)", "positive_pattern": "one.?time|sms.?(code|token|password|pwd|pass)",
"positive_score": 0, "positive_score": 0,
"negative_pattern": "", "negative_pattern": null,
"match_field_attributes": 3, "match_field_attributes": 3,
"match_field_input_types": 1 "match_field_input_types": 1
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment