diff --git a/source/constructs/api/common/enum.py b/source/constructs/api/common/enum.py index 8d660071..1fed210a 100644 --- a/source/constructs/api/common/enum.py +++ b/source/constructs/api/common/enum.py @@ -94,6 +94,9 @@ class MessageEnum(Enum): SOURCE_JDBC_NO_CREDENTIAL = {1231: "No credential"} SOURCE_JDBC_NO_AUTH = {1232: "No authorization"} SOURCE_JDBC_DUPLICATE_AUTH = {1233: "Duplicate authorization"} + SOURCE_JDBC_ALREADY_EXISTS = {1234: "JDBC connection with the same instance already exists"} + SOURCE_GLUE_DATABASE_EXISTS = {1235: "Glue database with the same name already exists"} + SOURCE_GLUE_DATABASE_NO_INSTANCE = {1236: "Glue database does not exist"} # label LABEL_EXIST_FAILED = {1611: "Cannot create duplicated label"} diff --git a/source/constructs/api/data_source/crud.py b/source/constructs/api/data_source/crud.py index ddecc91f..647ec73d 100644 --- a/source/constructs/api/data_source/crud.py +++ b/source/constructs/api/data_source/crud.py @@ -1,10 +1,23 @@ import datetime from sqlalchemy import desc -from common.enum import ConnectionState, MessageEnum, Provider, SourceRegionStatus, SourceProviderStatus, SourceResourcesStatus, SourceAccountStatus +from common.enum import (ConnectionState, + MessageEnum, + Provider, + SourceRegionStatus, + SourceProviderStatus, + SourceResourcesStatus, + SourceAccountStatus) from common.query_condition import QueryCondition, query_with_condition from db.database import get_session -from db.models_data_source import S3BucketSource, Account, RdsInstanceSource, JDBCInstanceSource, SourceRegion, SourceProvider, SourceResource +from db.models_data_source import (S3BucketSource, + Account, + RdsInstanceSource, + JDBCInstanceSource, + SourceRegion, + SourceProvider, + SourceResource, + SourceGlueDatabase) from common.exception_handler import BizException from . import schemas @@ -95,6 +108,11 @@ def list_rds_instance_source(condition: QueryCondition): instances = query_with_condition(instances, condition) return instances +def list_glue_database_by_name(name: str): + return get_session().query(SourceGlueDatabase).filter(SourceGlueDatabase.glue_database_name == name).all() + +def list_jdbc_instance_source_by_instance_id(instance_id: str): + return get_session().query(JDBCInstanceSource).filter(JDBCInstanceSource.instance_id == instance_id).all() def list_jdbc_instance_source(provider_id: int): # instances = Nonex @@ -142,7 +160,7 @@ def get_jdbc_instance_source_glue_state(provider_id: int, account: str, region: rds = get_session().query(JDBCInstanceSource).filter(JDBCInstanceSource.data_source_id == account_tmp[0], JDBCInstanceSource.instance_id == instance_id, JDBCInstanceSource.region == region, - JDBCInstanceSource.aws_account == account).order_by( + JDBCInstanceSource.account_id == account).order_by( desc(JDBCInstanceSource.detection_history_id)).first() if rds is not None: return rds.glue_state @@ -172,7 +190,10 @@ def get_rds_instance_source(account: str, region: str, instance_id: str): RdsInstanceSource.region == region, RdsInstanceSource.instance_id == instance_id).scalar() -def get_jdbc_instance_source(provider: str, account: str, region: str, instance_id: str): +def get_glue_database_source(provider: int, account: str, region: str, instance_id: str): + pass + +def get_jdbc_instance_source(provider: int, account: str, region: str, instance_id: str): return get_session().query(JDBCInstanceSource).filter(JDBCInstanceSource.account_provider_id == provider, JDBCInstanceSource.account_id == account, JDBCInstanceSource.region == region, @@ -508,6 +529,24 @@ def get_source_rds_account_region(): .all() ) +def add_glue_database(glueDatabase: schemas.SourceGlueDatabase): + session = get_session() + + glue_database = SourceGlueDatabase() + glue_database.glue_database_name = glueDatabase.glue_database_name + glue_database.glue_database_location_uri = glueDatabase.glue_database_location_uri + glue_database.glue_database_description = glueDatabase.glue_database_description + glue_database.glue_database_create_time = glueDatabase.glue_database_create_time + glue_database.glue_database_catalog_id = glueDatabase.glue_database_catalog_id + glue_database.region = glueDatabase.region + glue_database.account_id = glueDatabase.account_id + + session.add(glue_database) + session.commit() + session.refresh(glue_database) + + return glue_database + def add_jdbc_conn(jdbcConn: schemas.JDBCInstanceSource): session = get_session() @@ -528,7 +567,7 @@ def add_jdbc_conn(jdbcConn: schemas.JDBCInstanceSource): jdbc_instance_source.jdbc_driver_jar_uri = jdbcConn.jdbc_driver_jar_uri jdbc_instance_source.instance_class = jdbcConn.instance_class jdbc_instance_source.instance_status = jdbcConn.instance_status - jdbc_instance_source.account_provider = jdbcConn.account_provider + jdbc_instance_source.account_provider_id = jdbcConn.account_provider jdbc_instance_source.account_id = jdbcConn.account_id jdbc_instance_source.region = jdbcConn.region jdbc_instance_source.data_source_id = jdbcConn.data_source_id diff --git a/source/constructs/api/data_source/glue_database_detector.py b/source/constructs/api/data_source/glue_database_detector.py new file mode 100644 index 00000000..986ccca7 --- /dev/null +++ b/source/constructs/api/data_source/glue_database_detector.py @@ -0,0 +1,125 @@ +import os + +import boto3 +import logging + +from common.constant import const +from common.enum import ConnectionState, DatabaseType, Provider +from db.database import get_session +from db.models_data_source import DetectionHistory, RdsInstanceSource, Account +from . import crud +from . import service +from catalog.service import delete_catalog_by_database_region +from sqlalchemy.orm import Session +import asyncio + +sts_client = boto3.client('sts') +admin_account_region = boto3.session.Session().region_name +logger = logging.getLogger() +logger.setLevel(logging.INFO) + +async def detect_glue_database_connection(session: Session, aws_account_id: str): + iam_role_name = crud.get_iam_role(aws_account_id) + history = DetectionHistory(aws_account=aws_account_id, source_type='jdbc', state=0) + session.add(history) + session.commit() + assumed_role_object = sts_client.assume_role( + RoleArn=f"{iam_role_name}", + RoleSessionName="rds-instance-source-detection" + ) + credentials = assumed_role_object['Credentials'] + regions = crud.get_account_agent_regions(aws_account_id) + for region in regions: + total_rds = 0 + connected_rds = 0 + client = boto3.client( + 'rds', + aws_access_key_id=credentials['AccessKeyId'], + aws_secret_access_key=credentials['SecretAccessKey'], + aws_session_token=credentials['SessionToken'], + region_name=region + ) + rds_agent_list = [] + """ :type : pyboto3.rds """ + logger.info("detect_rds_data_source") + for instance in client.describe_db_instances()['DBInstances']: + logger.info(instance) + if instance['Engine'] not in const.RDS_SUPPORTED_ENGINES: + continue + rds_agent_list.append(instance['DBInstanceIdentifier']) + rds_instance_source = session.query(RdsInstanceSource).filter( + RdsInstanceSource.instance_id == instance['DBInstanceIdentifier'], + RdsInstanceSource.region == region, + # RdsInstanceSource.instance_class == instance['DBInstanceClass'], + # RdsInstanceSource.engine == instance['Engine'], + # RdsInstanceSource.instance_status == instance['DBInstanceStatus'], + # RdsInstanceSource.address == instance['Endpoint']['Address'] if 'Endpoint' in instance else '', + # RdsInstanceSource.port == instance['Endpoint']['Port'] if 'Endpoint' in instance else '', + # RdsInstanceSource.master_username == instance['MasterUsername'], + RdsInstanceSource.aws_account == aws_account_id, + ).scalar() + if rds_instance_source is None: + rds_instance_source = RdsInstanceSource(instance_id=str(instance['DBInstanceIdentifier']), + region=region, + instance_class=instance['DBInstanceClass'], + engine=instance['Engine'], + instance_status=instance['DBInstanceStatus'], + address=instance['Endpoint']['Address'], + port=instance['Endpoint']['Port'], + master_username=instance['MasterUsername'], + # created_time=instance['Engine'], + aws_account=aws_account_id + + ) + rds_instance_source.detection_history_id = history.id + session.merge(rds_instance_source) + total_rds += 1 + if crud.get_rds_instance_source_glue_state(aws_account_id, region, str( + instance['DBInstanceIdentifier'])) == ConnectionState.ACTIVE.value: + connected_rds += 1 + + session.commit() + # Get RDS instance in data source table + query_result = session.query(RdsInstanceSource).filter(RdsInstanceSource.aws_account == aws_account_id, RdsInstanceSource.account_id == 0).all() + rds_db_list = [] + rds_db_region_list = [] + rds_db_glue_state = [] + for row in query_result: + rds_db_list.append(row.bucket_name) + rds_db_region_list.append(row.region) + rds_db_glue_state.append(row.glue_state) # None is unconnected + deleted_rds_list = list(set(rds_db_list) - set(rds_agent_list)) + for deleted_rds_instance in deleted_rds_list: + index = deleted_rds_list.index(deleted_rds_instance) + rds_connection_state = rds_db_glue_state[index] + deleted_rds_region = rds_db_region_list[index] + + if rds_connection_state is not None: + # The RDS instance is a connected data source + service.delete_rds_connection(aws_account_id, deleted_rds_region, deleted_rds_instance) + + # Delete data catalog in case the user first connect it and generate data catalog then disconnect it + try: + delete_catalog_by_database_region(deleted_rds_instance, deleted_rds_region, DatabaseType.RDS) + except Exception as e: + logger.error(str(e)) + crud.delete_rds_instance_source_by_instance_id(aws_account_id, deleted_rds_region, deleted_rds_instance) + account = session.query(Account).filter(Account.account_provider_id == Provider.AWS_CLOUD.value, + Account.account_id == aws_account_id, + Account.region == region).first() + # TODO support multiple regions + crud.update_rds_instance_count(account=aws_account_id, region=admin_account_region) + + +async def detect_multiple_account_in_async(accounts): + session = get_session() + tasks = [] + + for aws_account_id in accounts: + task = asyncio.create_task(detect_glue_database_connection(session, aws_account_id)) + tasks.append(task) + await asyncio.gather(*tasks) + + +def detect(accounts): + asyncio.run(detect_multiple_account_in_async(accounts)) diff --git a/source/constructs/api/data_source/main.py b/source/constructs/api/data_source/main.py index 91269315..c4d67221 100644 --- a/source/constructs/api/data_source/main.py +++ b/source/constructs/api/data_source/main.py @@ -33,6 +33,17 @@ def list_rds_instances(condition: QueryCondition): page=condition.page, )) +@router.post("/list-glue-database", response_model=BaseResponse[Page[schemas.JDBCInstanceSource]]) +@inject_session +def list_glue_databases(condition: QueryCondition): + instances = service.list_glue_databases(condition) + if instances is None: + return None + return paginate(instances, Params( + size=condition.size, + page=condition.page, + )) + @router.post("/list-jdbc", response_model=BaseResponse[Page[schemas.JDBCInstanceSource]]) @inject_session def list_jdbc_instances(condition: QueryCondition): @@ -93,16 +104,37 @@ def sync_rds_connection(rds: schemas.SourceRdsConnection): rds.rds_secret ) +@router.post("/delete-glue-database", response_model=BaseResponse) +@inject_session +def delete_glue_database(glueDatabase: schemas.SourceDeteteGlueDatabase): + return service.delete_glue_database( + int(glueDatabase.account_provider), + glueDatabase.account_id, + glueDatabase.region, + glueDatabase.name + ) + +# TODO +@router.post("/sync-glue-database", response_model=BaseResponse) +@inject_session +def sync_glue_database(jdbc: schemas.SourceGlueDatabase): + return service.sync_glue_database( + jdbc.account_id, + jdbc.region, + jdbc.instance + ) + @router.post("/delete-jdbc", response_model=BaseResponse) @inject_session def delete_jdbc_connection(jdbc: schemas.SourceDeteteJDBCConnection): return service.delete_jdbc_connection( + int(jdbc.account_provider), jdbc.account_id, jdbc.region, jdbc.instance ) - +# TODO @router.post("/sync-jdbc", response_model=BaseResponse) @inject_session def sync_jdbc_connection(jdbc: schemas.SourceJDBCConnection): @@ -133,8 +165,8 @@ def refresh_data_source(type: schemas.NewDataSource): @router.get("/coverage", response_model=BaseResponse[schemas.SourceCoverage]) @inject_session -def get_data_source_coverage(provider_id:int): - return service.get_data_source_coverage() +def get_data_source_coverage(provider_id: int): + return service.get_data_source_coverage(provider_id) @router.post("/list-account", response_model=BaseResponse[Page[schemas.Account]]) @@ -178,6 +210,11 @@ def get_secrets(account: str, region: str): def get_admin_account_info(): return service.get_admin_account_info() +@router.post("/add-glue-database", response_model=BaseResponse) +@inject_session +def add_glue_database(glueDataBase: schemas.SourceGlueDatabase): + return service.add_glue_database(glueDataBase) + @router.post("/add-jdbc-conn", response_model=BaseResponse) @inject_session def add_jdbc_conn(jdbcConn: schemas.JDBCInstanceSource): @@ -188,6 +225,10 @@ def add_jdbc_conn(jdbcConn: schemas.JDBCInstanceSource): def query_glue_connections(account: schemas.AdminAccountInfo): return service.query_glue_connections(account) +@router.post("/query-glue-databases", response_model=BaseResponse) +@inject_session +def query_glue_databases(account: schemas.AdminAccountInfo): + return service.query_glue_databases(account) @router.post("/query-account-network", response_model=BaseResponse) @inject_session diff --git a/source/constructs/api/data_source/schemas.py b/source/constructs/api/data_source/schemas.py index 6693cdb4..942d75a8 100644 --- a/source/constructs/api/data_source/schemas.py +++ b/source/constructs/api/data_source/schemas.py @@ -89,6 +89,21 @@ class DynamodbTableSource(BaseModel): class Config: orm_mode = True +class SourceGlueDatabase(BaseModel): + + id: int + glue_database_name: Optional[str] + glue_database_description: Optional[str] + glue_database_location_uri: Optional[str] + glue_database_create_time: Optional[str] + glue_database_catalog_id: Optional[str] + account_id: Optional[str] + region: Optional[str] + version: Optional[int] + create_by: Optional[str] + create_time: Optional[datetime.datetime] + modify_by: Optional[str] + modify_time: Optional[datetime.datetime] class RdsInstanceSource(BaseModel): id: int @@ -198,6 +213,11 @@ class SourceJDBCConnection(BaseModel): password: Optional[str] secret: Optional[str] +class SourceDeteteGlueDatabase(BaseModel): + account_provider: int + account_id: str + region: str + name: str class SourceDeteteJDBCConnection(BaseModel): account_provider: int diff --git a/source/constructs/api/data_source/service.py b/source/constructs/api/data_source/service.py index 339bf214..e6cfd6e5 100644 --- a/source/constructs/api/data_source/service.py +++ b/source/constructs/api/data_source/service.py @@ -16,7 +16,7 @@ from discovery_job.service import can_delete_database as can_delete_job_database from discovery_job.service import delete_database as delete_job_database from . import s3_detector, rds_detector, crud -from .schemas import AdminAccountInfo, JDBCInstanceSource, ProviderResourceFullInfo, SourceResourceBase, SourceCoverage +from .schemas import AdminAccountInfo, JDBCInstanceSource, ProviderResourceFullInfo, SourceResourceBase, SourceCoverage, SourceGlueDatabase SLEEP_TIME = 5 SLEEP_MIN_TIME = 2 @@ -363,10 +363,16 @@ def sync_jdbc_connection( MessageEnum.SOURCE_ASSUME_ROLE_FAILED.get_msg()) # TODO +def before_delete_glue_database(provider, account, region, name): + glue_database = crud.get_glue_database_source(provider, account, region, name) + if glue_database is None: + raise BizException(MessageEnum.SOURCE_GLUE_DATABASE_NO_INSTANCE.get_code(), + MessageEnum.SOURCE_GLUE_DATABASE_NO_INSTANCE.get_msg()) + # Delete third-party connection -def before_delete_jdbc_connection(provider, account, region, instance_id): - jdbc_instance = crud.get_jdbc_instance_source(provider, account, region, instance_id) +def before_delete_jdbc_connection(provider_id, account, region, instance_id): + jdbc_instance = crud.get_jdbc_instance_source(provider_id, account, region, instance_id) if jdbc_instance is None: raise BizException(MessageEnum.SOURCE_RDS_NO_INSTANCE.get_code(), MessageEnum.SOURCE_RDS_NO_INSTANCE.get_msg()) @@ -377,7 +383,7 @@ def before_delete_jdbc_connection(provider, account, region, instance_id): # raise BizException(MessageEnum.SOURCE_RDS_NO_DATABASE.get_code(), # MessageEnum.SOURCE_RDS_NO_DATABASE.get_msg()) # crawler, if crawling try to stop and raise, if pending raise directly - state = crud.get_jdbc_instance_source_glue_state(provider, account, region, instance_id) + state = crud.get_jdbc_instance_source_glue_state(provider_id, account, region, instance_id) if state == ConnectionState.PENDING.value: raise BizException(MessageEnum.SOURCE_DELETE_WHEN_CONNECTING.get_code(), MessageEnum.SOURCE_DELETE_WHEN_CONNECTING.get_msg()) @@ -395,10 +401,12 @@ def before_delete_jdbc_connection(provider, account, region, instance_id): database_name=jdbc_instance): raise BizException(MessageEnum.DISCOVERY_JOB_CAN_NOT_DELETE_DATABASE.get_code(), MessageEnum.DISCOVERY_JOB_CAN_NOT_DELETE_DATABASE.get_msg()) + +def delete_glue_database(provider_id: int, account: str, region: str, name: str): + before_delete_glue_database(provider_id, account, region, name) - -def delete_jdbc_connection(provider: str, account: str, region: str, instance_id: str): - before_delete_jdbc_connection(provider, account, region, instance_id) +def delete_jdbc_connection(provider_id: int, account: str, region: str, instance_id: str): + before_delete_jdbc_connection(provider_id, account, region, instance_id) err = [] # 1/3 delete job database try: @@ -1189,7 +1197,18 @@ def get_secrets(account: str, region: str): def get_admin_account_info(): return AdminAccountInfo(account_id=_admin_account_id, region=_admin_account_region) +def add_glue_database(glueDataBase: SourceGlueDatabase): + list = crud.list_glue_database_by_name(glueDataBase.glue_database_name) + if list: + raise BizException(MessageEnum.SOURCE_GLUE_DATABASE_EXISTS.get_code(), + MessageEnum.SOURCE_GLUE_DATABASE_EXISTS.get_msg()) + crud.add_glue_database(glueDataBase) + def add_jdbc_conn(jdbcConn: JDBCInstanceSource): + list = crud.list_jdbc_instance_source_by_instance_id(jdbcConn.instance_id) + if list: + raise BizException(MessageEnum.SOURCE_JDBC_ALREADY_EXISTS.get_code(), + MessageEnum.SOURCE_JDBC_ALREADY_EXISTS.get_msg()) response = boto3.client('glue', region_name=jdbcConn.region).create_connection( CatalogId=jdbcConn.account_id, ConnectionInput={ @@ -1217,12 +1236,6 @@ def add_jdbc_conn(jdbcConn: JDBCInstanceSource): } } ) - -# { -# "FromFederationSource": null, -# "Message": "Validation for connection properties failed (Service: AWSGlue; Status Code: 400; Error Code: InvalidInputException; Request ID: f8afe2b1-4e68-4e43-a769-936b28346fe6; Proxy: null)" -# } - if response['ResponseMetadata']['HTTPStatusCode'] == 200: crud.add_jdbc_conn(jdbcConn) @@ -1589,6 +1602,10 @@ def query_glue_connections(account: AdminAccountInfo): MaxResults=100, HidePassword=True)['ConnectionList'] +def query_glue_databases(account: AdminAccountInfo): + glue_client = boto3.client('glue', region_name=_admin_account_region) + return glue_client.get_databases()['DatabaseList'] + def query_account_network(account: AdminAccountInfo): ec2_client = boto3.client('ec2', region_name=account.region) response = ec2_client.describe_security_groups(GroupNames=["SDPS-CustomDB"]) diff --git a/source/constructs/api/db/models_data_source.py b/source/constructs/api/db/models_data_source.py index b8325cc7..5f355d16 100644 --- a/source/constructs/api/db/models_data_source.py +++ b/source/constructs/api/db/models_data_source.py @@ -258,6 +258,23 @@ class JDBCInstanceSource(Base): modify_by = sa.Column(sa.String(255)) modify_time = sa.Column(sa.DateTime()) +class SourceGlueDatabase(Base): + + __tablename__ = 'source_glue_database' + + id = sa.Column(sa.Integer(), primary_key=True) + glue_database_name = sa.Column(sa.String(255)) + glue_database_description = sa.Column(sa.String(255)) + glue_database_location_uri = sa.Column(sa.String(255)) + glue_database_create_time = sa.Column(sa.String(255)) + glue_database_catalog_id = sa.Column(sa.String(255)) + account_id = sa.Column(sa.String(255)) + region = sa.Column(sa.String(255)) + version = sa.Column(sa.Integer()) + create_by = sa.Column(sa.String(255)) + create_time = sa.Column(sa.TIMESTAMP()) + modify_by = sa.Column(sa.String(255)) + modify_time = sa.Column(sa.TIMESTAMP()) class DynamodbTableSource(Base): __tablename__ = 'source_dynamodb_table' diff --git a/source/constructs/api/db/models_template.py b/source/constructs/api/db/models_template.py index b2b957f4..aae94a78 100644 --- a/source/constructs/api/db/models_template.py +++ b/source/constructs/api/db/models_template.py @@ -39,6 +39,8 @@ class TemplateIdentifier(Base): id = Column(Integer(), autoincrement=True, primary_key=True) description = Column(String(255), info={'searchable': True}) type = Column(SmallInteger()) + max_distance = Column(Integer()) + min_occurrence = Column(Integer()) version = Column(Integer()) name = Column(String(255), nullable=False, info={'searchable': True}) classification = Column(SmallInteger()) diff --git a/source/constructs/api/template/schemas.py b/source/constructs/api/template/schemas.py index 306a1637..9aef8d74 100644 --- a/source/constructs/api/template/schemas.py +++ b/source/constructs/api/template/schemas.py @@ -44,6 +44,8 @@ class TemplateIdentifier(BaseModel): privacy: Optional[int] rule: Optional[str] header_keywords: Optional[str] + max_distance: Optional[int] + min_occurrence: Optional[int] props: Optional[list] exclude_keywords: Optional[str] diff --git a/source/constructs/lib/admin/database/1.0.x-1.1.0/20_update.sql b/source/constructs/lib/admin/database/1.0.x-1.1.0/20_update.sql index 71e24bb5..f10efe7f 100644 --- a/source/constructs/lib/admin/database/1.0.x-1.1.0/20_update.sql +++ b/source/constructs/lib/admin/database/1.0.x-1.1.0/20_update.sql @@ -6,7 +6,6 @@ alter table source_account change column delegated_aws_account_id delegated_acco alter table source_account add total_jdbc_instance int default 0 after connect_rds_instance; alter table source_account add connected_jdbc_instance int default 0 after total_jdbc_instance; alter table source_account add account_provider_id int default 1 after id; -alter table template_identifier add base_type int default 1 after id; alter table template_identifier add max_distance int default null after exclude_keywords; alter table template_identifier add min_occurrence int default null after exclude_keywords; @@ -136,3 +135,8 @@ INSERT INTO source_resource (resource_name, provider_id) VALUES ('GlueData', 1); INSERT INTO source_resource (resource_name, provider_id) VALUES ('CustomJDBC', 1); INSERT INTO source_resource (resource_name, provider_id) VALUES ('CustomJDBC', 2); INSERT INTO source_resource (resource_name, provider_id) VALUES ('CustomJDBC', 3); + +INSERT INTO template_identifier (description, type, name, create_by) VALUES ('Face identifier for image detecting (Built-in)',3,'FACE','SDPS'); +INSERT INTO template_identifier (description, type, name, create_by) VALUES ('Business license identifier for image detecting (Built-in)',3,'Business License','SDPS'); +INSERT INTO template_identifier (description, type, name, create_by) VALUES ('Car license identifier for image detecting (Built-in)',3,'Car_License','SDPS'); +INSERT INTO template_identifier (description, type, name, create_by) VALUES ('ID card identifier for image detecting (Built-in)',3,'ID_Card','SDPS'); diff --git a/source/constructs/lib/admin/database/whole/10_data_source.sql b/source/constructs/lib/admin/database/whole/10_data_source.sql index 9b79c606..e391773c 100644 --- a/source/constructs/lib/admin/database/whole/10_data_source.sql +++ b/source/constructs/lib/admin/database/whole/10_data_source.sql @@ -198,6 +198,23 @@ create table source_rds_instance modify_time timestamp null ); +create table source_glue_database +( + id int auto_increment primary key, + glue_database_name varchar(255) null, + glue_database_description varchar(255) null, + glue_database_location_uri varchar(255) null, + glue_database_create_time varchar(255) null, + glue_database_catalog_id varchar(255) null, + account_id varchar(255) null, + region varchar(255) null, + version int null, + create_by varchar(255) null, + create_time timestamp null, + modify_by varchar(255) null, + modify_time timestamp null +); + create table source_jdbc_instance ( id int auto_increment primary key, diff --git a/source/constructs/lib/admin/database/whole/90_init.sql b/source/constructs/lib/admin/database/whole/90_init.sql index 9579a2b9..923e3235 100644 --- a/source/constructs/lib/admin/database/whole/90_init.sql +++ b/source/constructs/lib/admin/database/whole/90_init.sql @@ -7,274 +7,280 @@ INSERT INTO template_identifier_prop (id, prop_name, prop_type) VALUES (3, 'S2', INSERT INTO template_identifier_prop (id, prop_name, prop_type) VALUES (4, 'S3', 2); INSERT INTO template_identifier_prop (id, prop_name, prop_type) VALUES (5, 'S4', 2); DELETE FROM template_identifier WHERE type in (0, 2); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (1, 1, 'AI-based identifier for detecting Chinese name. (Built-in)', 0, 'CHINA_CHINESE_NAME', 0, 1, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (2, 1, 'AI-based identifier for detecting Chinese address. (Built-in)', 0, 'CHINA_ADDRESS', 0, 1, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (7, 1, 'Regex-based identifier for detecting Chinese nationality (Built-in)', 0, 'CHINA_NATIONALITY', 1, 1, '(?:斐济|汤加|纽埃|坦桑尼亚|西撒哈拉|加拿大|美国|哈萨克斯坦|乌兹别克斯坦|巴布亚新几内亚|印度尼西亚|阿根廷|智利|刚果(金)|索马里|肯尼亚|苏丹|乍得|海地|多米尼加|俄罗斯|巴哈马|巴林|马尔维纳斯群岛(福克兰)|挪威|格陵兰|法属南部和南极领地|东帝汶|南非|莱索托|墨西哥|乌拉圭|巴西|玻利维亚|秘鲁|哥伦比亚|巴拿马|哥斯达黎加|尼加拉瓜|洪都拉斯|萨尔瓦多|危地马拉|伯利兹|委内瑞拉|圭亚那|苏里南|法国|安道尔|厄瓜多尔|波多黎各|牙买加|古巴|津巴布韦|博茨瓦纳|纳米比亚|塞内加尔|马里|毛里塔尼亚|贝宁|尼日尔|尼日利亚|喀麦隆|多哥|加纳|科特迪瓦|几内亚|几内亚比绍|利比里亚|塞拉利昂|布基纳法索|中非|刚果(布)|加蓬|赤道几内亚|赞比亚|马拉维|莫桑比克|斯威士兰|安哥拉|布隆迪|以色列|黎巴嫩|马达加斯加|毛里求斯|巴勒斯坦|冈比亚|突尼斯|阿尔及利亚|约旦|阿联酋|卡塔尔|科威特|伊拉克|阿曼|瓦努阿图|柬埔寨|泰国|老挝|缅甸|越南|朝鲜|韩国|蒙古|印度|孟加拉国|不丹|尼泊尔|巴基斯坦|阿富汗|塔吉克斯坦|吉尔吉斯斯坦|土库曼斯坦|伊朗|叙利亚|亚美尼亚|瑞典|白俄罗斯|乌克兰|波兰|奥地利|匈牙利|摩尔多瓦|罗马尼亚|立陶宛|拉脱维亚|爱沙尼亚|德国|保加利亚|希腊|土耳其|阿尔巴尼亚|克罗地亚|瑞士|卢森堡|比利时|荷兰|葡萄牙|西班牙|爱尔兰|新喀里多尼亚|所罗门群岛|瑙鲁|新西兰|澳大利亚|马尔代夫|斯里兰卡|中国|意大利|马耳他|丹麦|英国|冰岛|阿塞拜疆|格鲁吉亚|菲律宾|马来西亚|新加坡|文莱|斯洛文尼亚|芬兰|斯洛伐克|捷克|厄立特里亚|日本|巴拉圭|也门|沙特阿拉伯|南极洲|北塞浦路斯|塞浦路斯|摩洛哥|埃及|利比亚|埃塞俄比亚|吉布提|索马里兰|乌干达|卢旺达|波黑|北马其顿|塞尔维亚|黑山|科索沃|特立尼达和多巴哥|南苏丹)', '[\"nationality\",\"nation\",\"国籍\",\"国家\",\"guoji\",\"guojia\"]', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (8, 1, 'Regex-based identifier for detecting Chinese bank card Id (Built-in)', 0, 'CHINA_BANK_CARD', 1, 1, '\\b(?:436|966|888|940|870|685|609|629|602|968|433|405|422|303|601|589|552|456|438|664|412|434|421|442|185|695|620|911|621|843|504|548|524|526|998|955|694|990|623|905|512|989|909|103|688|603|984|622|472|566|410|900|690|624|683|627|985|625|999|468|427|415|666|402)(\\d{9}|\\d{13}|\\d{14}|\\d{16})\\b', '[\"account\",\"bank\",\"debit\",\"账号\",\"账户\",\"卡号\",\"银行卡\",\"储蓄卡\",\"借记卡\",\"zhanghao\",\"zhanghu\",\"kahao\",\"yinhangka\",\"chuxuka\",\"jiejika\"]', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (10, 1, 'Glue identifier for detecting person name. (Built-in)', 2, 'PERSON_NAME', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (11, 1, 'Glue identifier for detecting email. (Built-in)', 2, 'EMAIL', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (12, 1, 'Glue identifier for detecting credit card. (Built-in)', 2, 'CREDIT_CARD', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (13, 1, 'Glue identifier for detecting ip address. (Built-in)', 2, 'IP_ADDRESS', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (14, 1, 'Glue identifier for detecting mac address. (Built-in)', 2, 'MAC_ADDRESS', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (15, 1, 'Glue identifier for detecting phone number. (Built-in)', 2, 'PHONE_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (16, 1, 'Glue identifier for detecting usa passport number. (Built-in)', 2, 'USA_PASSPORT_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (17, 1, 'Glue identifier for detecting usa ssn. (Built-in)', 2, 'USA_SSN', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (18, 1, 'Glue identifier for detecting usa itin. (Built-in)', 2, 'USA_ITIN', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (19, 1, 'Glue identifier for detecting bank account. (Built-in)', 2, 'BANK_ACCOUNT', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (20, 1, 'Glue identifier for detecting usa driving license. (Built-in)', 2, 'USA_DRIVING_LICENSE', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (21, 1, 'Glue identifier for detecting usa hcpcs code. (Built-in)', 2, 'USA_HCPCS_CODE', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (22, 1, 'Glue identifier for detecting usa national drug code. (Built-in)', 2, 'USA_NATIONAL_DRUG_CODE', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (23, 1, 'Glue identifier for detecting usa national provider identifier. (Built-in)', 2, 'USA_NATIONAL_PROVIDER_IDENTIFIER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (24, 1, 'Glue identifier for detecting usa dea number. (Built-in)', 2, 'USA_DEA_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (25, 1, 'Glue identifier for detecting usa health insurance claim number. (Built-in)', 2, 'USA_HEALTH_INSURANCE_CLAIM_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (26, 1, 'Glue identifier for detecting usa medicare beneficiary identifier. (Built-in)', 2, 'USA_MEDICARE_BENEFICIARY_IDENTIFIER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (27, 1, 'Glue identifier for detecting japan bank account. (Built-in)', 2, 'JAPAN_BANK_ACCOUNT', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (28, 1, 'Glue identifier for detecting japan driving license. (Built-in)', 2, 'JAPAN_DRIVING_LICENSE', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (29, 1, 'Glue identifier for detecting japan my number. (Built-in)', 2, 'JAPAN_MY_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (30, 1, 'Glue identifier for detecting japan passport number. (Built-in)', 2, 'JAPAN_PASSPORT_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (31, 1, 'Glue identifier for detecting uk bank account. (Built-in)', 2, 'UK_BANK_ACCOUNT', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (32, 1, 'Glue identifier for detecting uk bank sort code. (Built-in)', 2, 'UK_BANK_SORT_CODE', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (33, 1, 'Glue identifier for detecting uk driving license. (Built-in)', 2, 'UK_DRIVING_LICENSE', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (34, 1, 'Glue identifier for detecting uk electoral roll number. (Built-in)', 2, 'UK_ELECTORAL_ROLL_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (35, 1, 'Glue identifier for detecting uk national health service number. (Built-in)', 2, 'UK_NATIONAL_HEALTH_SERVICE_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (36, 1, 'Glue identifier for detecting uk national insurance number. (Built-in)', 2, 'UK_NATIONAL_INSURANCE_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (37, 1, 'Glue identifier for detecting uk passport number. (Built-in)', 2, 'UK_PASSPORT_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (38, 1, 'Glue identifier for detecting uk phone number. (Built-in)', 2, 'UK_PHONE_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (39, 1, 'Glue identifier for detecting uk unique taxpayer reference number. (Built-in)', 2, 'UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (40, 1, 'Glue identifier for detecting uk value added tax. (Built-in)', 2, 'UK_VALUE_ADDED_TAX', 0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (41, 1, 'Glue identifier for detecting date. (Built-in)', 2,'DATE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (42, 1, 'Glue identifier for detecting usa_atin. (Built-in)', 2,'USA_ATIN',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (43, 1, 'Glue identifier for detecting usa_ptin. (Built-in)', 2,'USA_PTIN',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (44, 1, 'Glue identifier for detecting usa_cpt_code. (Built-in)', 2,'USA_CPT_CODE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (45, 1, 'Glue identifier for detecting argentina_tax_identification_number. (Built-in)', 2,'ARGENTINA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (46, 1, 'Glue identifier for detecting australia_business_number. (Built-in)', 2,'AUSTRALIA_BUSINESS_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (47, 1, 'Glue identifier for detecting australia_company_number. (Built-in)', 2,'AUSTRALIA_COMPANY_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (48, 1, 'Glue identifier for detecting australia_driving_license. (Built-in)', 2,'AUSTRALIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (49, 1, 'Glue identifier for detecting australia_medicare_number. (Built-in)', 2,'AUSTRALIA_MEDICARE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (50, 1, 'Glue identifier for detecting australia_passport_number. (Built-in)', 2,'AUSTRALIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (51, 1, 'Glue identifier for detecting australia_tax_file_number. (Built-in)', 2,'AUSTRALIA_TAX_FILE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (52, 1, 'Glue identifier for detecting austria_driving_license. (Built-in)', 2,'AUSTRIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (53, 1, 'Glue identifier for detecting austria_passport_number. (Built-in)', 2,'AUSTRIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (54, 1, 'Glue identifier for detecting austria_ssn. (Built-in)', 2,'AUSTRIA_SSN',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (55, 1, 'Glue identifier for detecting austria_tax_identification_number. (Built-in)', 2,'AUSTRIA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (56, 1, 'Glue identifier for detecting austria_value_added_tax. (Built-in)', 2,'AUSTRIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (57, 1, 'Glue identifier for detecting belgium_driving_license. (Built-in)', 2,'BELGIUM_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (58, 1, 'Glue identifier for detecting belgium_national_identification_number. (Built-in)', 2,'BELGIUM_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (59, 1, 'Glue identifier for detecting belgium_passport_number. (Built-in)', 2,'BELGIUM_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (60, 1, 'Glue identifier for detecting belgium_tax_identification_number. (Built-in)', 2,'BELGIUM_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (61, 1, 'Glue identifier for detecting belgium_value_added_tax. (Built-in)', 2,'BELGIUM_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (62, 1, 'Glue identifier for detecting bosnia_unique_master_citizen_number. (Built-in)', 2,'BOSNIA_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (63, 1, 'Glue identifier for detecting brazil_bank_account. (Built-in)', 2,'BRAZIL_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (64, 1, 'Glue identifier for detecting brazil_national_identification_number. (Built-in)', 2,'BRAZIL_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (65, 1, 'Glue identifier for detecting brazil_national_registry_of_legal_entities_number. (Built-in)', 2,'BRAZIL_NATIONAL_REGISTRY_OF_LEGAL_ENTITIES_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (66, 1, 'Glue identifier for detecting brazil_natural_person_registry_number. (Built-in)', 2,'BRAZIL_NATURAL_PERSON_REGISTRY_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (67, 1, 'Glue identifier for detecting brazil_postal_code. (Built-in)', 2,'BRAZIL_POSTAL_CODE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (68, 1, 'Glue identifier for detecting bulgaria_driving_license. (Built-in)', 2,'BULGARIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (69, 1, 'Glue identifier for detecting bulgaria_uniform_civil_number. (Built-in)', 2,'BULGARIA_UNIFORM_CIVIL_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (70, 1, 'Glue identifier for detecting bulgaria_value_added_tax. (Built-in)', 2,'BULGARIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (71, 1, 'Glue identifier for detecting canada_driving_license. (Built-in)', 2,'CANADA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (72, 1, 'Glue identifier for detecting canada_government_identification_card_number. (Built-in)', 2,'CANADA_GOVERNMENT_IDENTIFICATION_CARD_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (73, 1, 'Glue identifier for detecting canada_passport_number. (Built-in)', 2,'CANADA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (74, 1, 'Glue identifier for detecting canada_permanent_residence_number. (Built-in)', 2,'CANADA_PERMANENT_RESIDENCE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (75, 1, 'Glue identifier for detecting canada_personal_health_number. (Built-in)', 2,'CANADA_PERSONAL_HEALTH_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (76, 1, 'Glue identifier for detecting canada_social_insurance_number. (Built-in)', 2,'CANADA_SOCIAL_INSURANCE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (77, 1, 'Glue identifier for detecting chile_driving_license. (Built-in)', 2,'CHILE_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (78, 1, 'Glue identifier for detecting chile_national_identification_number. (Built-in)', 2,'CHILE_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (79, 1, 'Glue identifier for detecting china_identification. (Built-in)', 2,'CHINA_IDENTIFICATION',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (80, 1, 'Glue identifier for detecting china_license_plate_number. (Built-in)', 2,'CHINA_LICENSE_PLATE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (81, 1, 'Glue identifier for detecting china_mainland_travel_permit_id_hong_kong_macau. (Built-in)', 2,'CHINA_MAINLAND_TRAVEL_PERMIT_ID_HONG_KONG_MACAU',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (82, 1, 'Glue identifier for detecting china_mainland_travel_permit_id_taiwan. (Built-in)', 2,'CHINA_MAINLAND_TRAVEL_PERMIT_ID_TAIWAN',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (83, 1, 'Glue identifier for detecting china_passport_number. (Built-in)', 2,'CHINA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (84, 1, 'Glue identifier for detecting china_phone_number. (Built-in)', 2,'CHINA_PHONE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (85, 1, 'Glue identifier for detecting hong_kong_identity_card. (Built-in)', 2,'HONG_KONG_IDENTITY_CARD',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (86, 1, 'Glue identifier for detecting macau_resident_identity_card. (Built-in)', 2,'MACAU_RESIDENT_IDENTITY_CARD',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (87, 1, 'Glue identifier for detecting taiwan_national_identification_number. (Built-in)', 2,'TAIWAN_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (88, 1, 'Glue identifier for detecting taiwan_passport_number. (Built-in)', 2,'TAIWAN_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (89, 1, 'Glue identifier for detecting colombia_personal_identification_number. (Built-in)', 2,'COLOMBIA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (90, 1, 'Glue identifier for detecting colombia_tax_identification_number. (Built-in)', 2,'COLOMBIA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (91, 1, 'Glue identifier for detecting croatia_driving_license. (Built-in)', 2,'CROATIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (92, 1, 'Glue identifier for detecting croatia_identity_number. (Built-in)', 2,'CROATIA_IDENTITY_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (93, 1, 'Glue identifier for detecting croatia_passport_number. (Built-in)', 2,'CROATIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (94, 1, 'Glue identifier for detecting croatia_personal_identification_number. (Built-in)', 2,'CROATIA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (95, 1, 'Glue identifier for detecting cyprus_driving_license. (Built-in)', 2,'CYPRUS_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (96, 1, 'Glue identifier for detecting cyprus_national_identification_number. (Built-in)', 2,'CYPRUS_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (97, 1, 'Glue identifier for detecting cyprus_passport_number. (Built-in)', 2,'CYPRUS_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (98, 1, 'Glue identifier for detecting cyprus_tax_identification_number. (Built-in)', 2,'CYPRUS_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (99, 1, 'Glue identifier for detecting cyprus_value_added_tax. (Built-in)', 2,'CYPRUS_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (100, 1, 'Glue identifier for detecting czechia_driving_license. (Built-in)', 2,'CZECHIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (101, 1, 'Glue identifier for detecting czechia_personal_identification_number. (Built-in)', 2,'CZECHIA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (102, 1, 'Glue identifier for detecting czechia_value_added_tax. (Built-in)', 2,'CZECHIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (103, 1, 'Glue identifier for detecting denmark_driving_license. (Built-in)', 2,'DENMARK_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (104, 1, 'Glue identifier for detecting denmark_personal_identification_number. (Built-in)', 2,'DENMARK_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (105, 1, 'Glue identifier for detecting denmark_tax_identification_number. (Built-in)', 2,'DENMARK_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (106, 1, 'Glue identifier for detecting denmark_value_added_tax. (Built-in)', 2,'DENMARK_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (107, 1, 'Glue identifier for detecting estonia_driving_license. (Built-in)', 2,'ESTONIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (108, 1, 'Glue identifier for detecting estonia_passport_number. (Built-in)', 2,'ESTONIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (109, 1, 'Glue identifier for detecting estonia_personal_identification_code. (Built-in)', 2,'ESTONIA_PERSONAL_IDENTIFICATION_CODE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (110, 1, 'Glue identifier for detecting estonia_value_added_tax. (Built-in)', 2,'ESTONIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (111, 1, 'Glue identifier for detecting finland_driving_license. (Built-in)', 2,'FINLAND_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (112, 1, 'Glue identifier for detecting finland_health_insurance_number. (Built-in)', 2,'FINLAND_HEALTH_INSURANCE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (113, 1, 'Glue identifier for detecting finland_national_identification_number. (Built-in)', 2,'FINLAND_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (114, 1, 'Glue identifier for detecting finland_passport_number. (Built-in)', 2,'FINLAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (115, 1, 'Glue identifier for detecting finland_value_added_tax. (Built-in)', 2,'FINLAND_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (116, 1, 'Glue identifier for detecting france_bank_account. (Built-in)', 2,'FRANCE_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (117, 1, 'Glue identifier for detecting france_driving_license. (Built-in)', 2,'FRANCE_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (118, 1, 'Glue identifier for detecting france_health_insurance_number. (Built-in)', 2,'FRANCE_HEALTH_INSURANCE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (119, 1, 'Glue identifier for detecting france_insee_code. (Built-in)', 2,'FRANCE_INSEE_CODE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (120, 1, 'Glue identifier for detecting france_national_identification_number. (Built-in)', 2,'FRANCE_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (121, 1, 'Glue identifier for detecting france_passport_number. (Built-in)', 2,'FRANCE_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (122, 1, 'Glue identifier for detecting france_tax_identification_number. (Built-in)', 2,'FRANCE_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (123, 1, 'Glue identifier for detecting france_value_added_tax. (Built-in)', 2,'FRANCE_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (124, 1, 'Glue identifier for detecting germany_bank_account. (Built-in)', 2,'GERMANY_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (125, 1, 'Glue identifier for detecting germany_driving_license. (Built-in)', 2,'GERMANY_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (126, 1, 'Glue identifier for detecting germany_passport_number. (Built-in)', 2,'GERMANY_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (127, 1, 'Glue identifier for detecting germany_personal_identification_number. (Built-in)', 2,'GERMANY_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (128, 1, 'Glue identifier for detecting germany_tax_identification_number. (Built-in)', 2,'GERMANY_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (129, 1, 'Glue identifier for detecting germany_value_added_tax. (Built-in)', 2,'GERMANY_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (130, 1, 'Glue identifier for detecting greece_driving_license. (Built-in)', 2,'GREECE_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (131, 1, 'Glue identifier for detecting greece_passport_number. (Built-in)', 2,'GREECE_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (132, 1, 'Glue identifier for detecting greece_ssn. (Built-in)', 2,'GREECE_SSN',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (133, 1, 'Glue identifier for detecting greece_tax_identification_number. (Built-in)', 2,'GREECE_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (134, 1, 'Glue identifier for detecting greece_value_added_tax. (Built-in)', 2,'GREECE_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (135, 1, 'Glue identifier for detecting hungary_driving_license. (Built-in)', 2,'HUNGARY_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (136, 1, 'Glue identifier for detecting hungary_passport_number. (Built-in)', 2,'HUNGARY_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (137, 1, 'Glue identifier for detecting hungary_ssn. (Built-in)', 2,'HUNGARY_SSN',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (138, 1, 'Glue identifier for detecting hungary_tax_identification_number. (Built-in)', 2,'HUNGARY_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (139, 1, 'Glue identifier for detecting hungary_value_added_tax. (Built-in)', 2,'HUNGARY_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (140, 1, 'Glue identifier for detecting iceland_national_identification_number. (Built-in)', 2,'ICELAND_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (141, 1, 'Glue identifier for detecting iceland_passport_number. (Built-in)', 2,'ICELAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (142, 1, 'Glue identifier for detecting iceland_value_added_tax. (Built-in)', 2,'ICELAND_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (143, 1, 'Glue identifier for detecting india_aadhaar_number. (Built-in)', 2,'INDIA_AADHAAR_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (144, 1, 'Glue identifier for detecting india_permanent_account_number. (Built-in)', 2,'INDIA_PERMANENT_ACCOUNT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (145, 1, 'Glue identifier for detecting indonesia_identity_card_number. (Built-in)', 2,'INDONESIA_IDENTITY_CARD_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (146, 1, 'Glue identifier for detecting ireland_driving_license. (Built-in)', 2,'IRELAND_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (147, 1, 'Glue identifier for detecting ireland_passport_number. (Built-in)', 2,'IRELAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (148, 1, 'Glue identifier for detecting ireland_personal_public_service_number. (Built-in)', 2,'IRELAND_PERSONAL_PUBLIC_SERVICE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (149, 1, 'Glue identifier for detecting ireland_tax_identification_number. (Built-in)', 2,'IRELAND_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (150, 1, 'Glue identifier for detecting ireland_value_added_tax. (Built-in)', 2,'IRELAND_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (151, 1, 'Glue identifier for detecting israel_identification_number. (Built-in)', 2,'ISRAEL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (152, 1, 'Glue identifier for detecting italy_bank_account. (Built-in)', 2,'ITALY_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (153, 1, 'Glue identifier for detecting italy_driving_license. (Built-in)', 2,'ITALY_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (154, 1, 'Glue identifier for detecting italy_fiscal_code. (Built-in)', 2,'ITALY_FISCAL_CODE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (155, 1, 'Glue identifier for detecting italy_passport_number. (Built-in)', 2,'ITALY_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (156, 1, 'Glue identifier for detecting italy_value_added_tax. (Built-in)', 2,'ITALY_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (157, 1, 'Glue identifier for detecting korea_passport_number. (Built-in)', 2,'KOREA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (158, 1, 'Glue identifier for detecting korea_residence_registration_number_for_citizens. (Built-in)', 2,'KOREA_RESIDENCE_REGISTRATION_NUMBER_FOR_CITIZENS',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (159, 1, 'Glue identifier for detecting korea_residence_registration_number_for_foreigners. (Built-in)', 2,'KOREA_RESIDENCE_REGISTRATION_NUMBER_FOR_FOREIGNERS',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (160, 1, 'Glue identifier for detecting kosovo_unique_master_citizen_number. (Built-in)', 2,'KOSOVO_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (161, 1, 'Glue identifier for detecting latvia_driving_license. (Built-in)', 2,'LATVIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (162, 1, 'Glue identifier for detecting latvia_passport_number. (Built-in)', 2,'LATVIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (163, 1, 'Glue identifier for detecting latvia_personal_identification_number. (Built-in)', 2,'LATVIA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (164, 1, 'Glue identifier for detecting latvia_value_added_tax. (Built-in)', 2,'LATVIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (165, 1, 'Glue identifier for detecting liechtenstein_national_identification_number. (Built-in)', 2,'LIECHTENSTEIN_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (166, 1, 'Glue identifier for detecting liechtenstein_passport_number. (Built-in)', 2,'LIECHTENSTEIN_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (167, 1, 'Glue identifier for detecting liechtenstein_tax_identification_number. (Built-in)', 2,'LIECHTENSTEIN_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (168, 1, 'Glue identifier for detecting lithuania_driving_license. (Built-in)', 2,'LITHUANIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (169, 1, 'Glue identifier for detecting lithuania_personal_identification_number. (Built-in)', 2,'LITHUANIA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (170, 1, 'Glue identifier for detecting lithuania_tax_identification_number. (Built-in)', 2,'LITHUANIA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (171, 1, 'Glue identifier for detecting lithuania_value_added_tax. (Built-in)', 2,'LITHUANIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (172, 1, 'Glue identifier for detecting luxembourg_driving_license. (Built-in)', 2,'LUXEMBOURG_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (173, 1, 'Glue identifier for detecting luxembourg_national_individual_number. (Built-in)', 2,'LUXEMBOURG_NATIONAL_INDIVIDUAL_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (174, 1, 'Glue identifier for detecting luxembourg_passport_number. (Built-in)', 2,'LUXEMBOURG_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (175, 1, 'Glue identifier for detecting luxembourg_tax_identification_number. (Built-in)', 2,'LUXEMBOURG_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (176, 1, 'Glue identifier for detecting luxembourg_value_added_tax. (Built-in)', 2,'LUXEMBOURG_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (177, 1, 'Glue identifier for detecting macedonia_unique_master_citizen_number. (Built-in)', 2,'MACEDONIA_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (178, 1, 'Glue identifier for detecting malaysia_mykad_number. (Built-in)', 2,'MALAYSIA_MYKAD_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (179, 1, 'Glue identifier for detecting malaysia_passport_number. (Built-in)', 2,'MALAYSIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (180, 1, 'Glue identifier for detecting malta_driving_license. (Built-in)', 2,'MALTA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (181, 1, 'Glue identifier for detecting malta_national_identification_number. (Built-in)', 2,'MALTA_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (182, 1, 'Glue identifier for detecting malta_tax_identification_number. (Built-in)', 2,'MALTA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (183, 1, 'Glue identifier for detecting malta_value_added_tax. (Built-in)', 2,'MALTA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (184, 1, 'Glue identifier for detecting mexico_clabe_number. (Built-in)', 2,'MEXICO_CLABE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (185, 1, 'Glue identifier for detecting mexico_driving_license. (Built-in)', 2,'MEXICO_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (186, 1, 'Glue identifier for detecting mexico_passport_number. (Built-in)', 2,'MEXICO_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (187, 1, 'Glue identifier for detecting mexico_tax_identification_number. (Built-in)', 2,'MEXICO_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (188, 1, 'Glue identifier for detecting mexico_unique_population_registry_code. (Built-in)', 2,'MEXICO_UNIQUE_POPULATION_REGISTRY_CODE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (189, 1, 'Glue identifier for detecting montenegro_unique_master_citizen_number. (Built-in)', 2,'MONTENEGRO_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (190, 1, 'Glue identifier for detecting netherlands_bank_account. (Built-in)', 2,'NETHERLANDS_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (191, 1, 'Glue identifier for detecting netherlands_citizen_service_number. (Built-in)', 2,'NETHERLANDS_CITIZEN_SERVICE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (192, 1, 'Glue identifier for detecting netherlands_driving_license. (Built-in)', 2,'NETHERLANDS_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (193, 1, 'Glue identifier for detecting netherlands_passport_number. (Built-in)', 2,'NETHERLANDS_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (194, 1, 'Glue identifier for detecting netherlands_tax_identification_number. (Built-in)', 2,'NETHERLANDS_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (195, 1, 'Glue identifier for detecting netherlands_value_added_tax. (Built-in)', 2,'NETHERLANDS_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (196, 1, 'Glue identifier for detecting new_zealand_driving_license. (Built-in)', 2,'NEW_ZEALAND_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (197, 1, 'Glue identifier for detecting new_zealand_national_health_index_number. (Built-in)', 2,'NEW_ZEALAND_NATIONAL_HEALTH_INDEX_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (198, 1, 'Glue identifier for detecting new_zealand_tax_identification_number. (Built-in)', 2,'NEW_ZEALAND_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (199, 1, 'Glue identifier for detecting norway_birth_number. (Built-in)', 2,'NORWAY_BIRTH_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (200, 1, 'Glue identifier for detecting norway_driving_license. (Built-in)', 2,'NORWAY_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (201, 1, 'Glue identifier for detecting norway_health_insurance_number. (Built-in)', 2,'NORWAY_HEALTH_INSURANCE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (202, 1, 'Glue identifier for detecting norway_national_identification_number. (Built-in)', 2,'NORWAY_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (203, 1, 'Glue identifier for detecting norway_value_added_tax. (Built-in)', 2,'NORWAY_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (204, 1, 'Glue identifier for detecting philippines_driving_license. (Built-in)', 2,'PHILIPPINES_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (205, 1, 'Glue identifier for detecting philippines_passport_number. (Built-in)', 2,'PHILIPPINES_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (206, 1, 'Glue identifier for detecting poland_driving_license. (Built-in)', 2,'POLAND_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (207, 1, 'Glue identifier for detecting poland_identification_number. (Built-in)', 2,'POLAND_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (208, 1, 'Glue identifier for detecting poland_passport_number. (Built-in)', 2,'POLAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (209, 1, 'Glue identifier for detecting poland_regon_number. (Built-in)', 2,'POLAND_REGON_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (210, 1, 'Glue identifier for detecting poland_ssn. (Built-in)', 2,'POLAND_SSN',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (211, 1, 'Glue identifier for detecting poland_tax_identification_number. (Built-in)', 2,'POLAND_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (212, 1, 'Glue identifier for detecting poland_value_added_tax. (Built-in)', 2,'POLAND_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (213, 1, 'Glue identifier for detecting portugal_driving_license. (Built-in)', 2,'PORTUGAL_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (214, 1, 'Glue identifier for detecting portugal_national_identification_number. (Built-in)', 2,'PORTUGAL_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (215, 1, 'Glue identifier for detecting portugal_passport_number. (Built-in)', 2,'PORTUGAL_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (216, 1, 'Glue identifier for detecting portugal_tax_identification_number. (Built-in)', 2,'PORTUGAL_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (217, 1, 'Glue identifier for detecting portugal_value_added_tax. (Built-in)', 2,'PORTUGAL_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (218, 1, 'Glue identifier for detecting romania_driving_license. (Built-in)', 2,'ROMANIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (219, 1, 'Glue identifier for detecting romania_numerical_personal_code. (Built-in)', 2,'ROMANIA_NUMERICAL_PERSONAL_CODE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (220, 1, 'Glue identifier for detecting romania_passport_number. (Built-in)', 2,'ROMANIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (221, 1, 'Glue identifier for detecting romania_value_added_tax. (Built-in)', 2,'ROMANIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (222, 1, 'Glue identifier for detecting serbia_unique_master_citizen_number. (Built-in)', 2,'SERBIA_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (223, 1, 'Glue identifier for detecting serbia_value_added_tax. (Built-in)', 2,'SERBIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (224, 1, 'Glue identifier for detecting vojvodina_unique_master_citizen_number. (Built-in)', 2,'VOJVODINA_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (225, 1, 'Glue identifier for detecting singapore_driving_license. (Built-in)', 2,'SINGAPORE_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (226, 1, 'Glue identifier for detecting singapore_national_registry_identification_number. (Built-in)', 2,'SINGAPORE_NATIONAL_REGISTRY_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (227, 1, 'Glue identifier for detecting singapore_passport_number. (Built-in)', 2,'SINGAPORE_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (228, 1, 'Glue identifier for detecting singapore_unique_entity_number. (Built-in)', 2,'SINGAPORE_UNIQUE_ENTITY_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (229, 1, 'Glue identifier for detecting slovakia_driving_license. (Built-in)', 2,'SLOVAKIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (230, 1, 'Glue identifier for detecting slovakia_national_identification_number. (Built-in)', 2,'SLOVAKIA_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (231, 1, 'Glue identifier for detecting slovakia_passport_number. (Built-in)', 2,'SLOVAKIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (232, 1, 'Glue identifier for detecting slovakia_value_added_tax. (Built-in)', 2,'SLOVAKIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (233, 1, 'Glue identifier for detecting slovenia_driving_license. (Built-in)', 2,'SLOVENIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (234, 1, 'Glue identifier for detecting slovenia_passport_number. (Built-in)', 2,'SLOVENIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (235, 1, 'Glue identifier for detecting slovenia_tax_identification_number. (Built-in)', 2,'SLOVENIA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (236, 1, 'Glue identifier for detecting slovenia_unique_master_citizen_number. (Built-in)', 2,'SLOVENIA_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (237, 1, 'Glue identifier for detecting slovenia_value_added_tax. (Built-in)', 2,'SLOVENIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (238, 1, 'Glue identifier for detecting south_africa_personal_identification_number. (Built-in)', 2,'SOUTH_AFRICA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (239, 1, 'Glue identifier for detecting spain_bank_account. (Built-in)', 2,'SPAIN_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (240, 1, 'Glue identifier for detecting spain_dni. (Built-in)', 2,'SPAIN_DNI',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (241, 1, 'Glue identifier for detecting spain_driving_license. (Built-in)', 2,'SPAIN_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (242, 1, 'Glue identifier for detecting spain_nie. (Built-in)', 2,'SPAIN_NIE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (243, 1, 'Glue identifier for detecting spain_nif. (Built-in)', 2,'SPAIN_NIF',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (244, 1, 'Glue identifier for detecting spain_passport_number. (Built-in)', 2,'SPAIN_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (245, 1, 'Glue identifier for detecting spain_ssn. (Built-in)', 2,'SPAIN_SSN',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (246, 1, 'Glue identifier for detecting spain_value_added_tax. (Built-in)', 2,'SPAIN_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (247, 1, 'Glue identifier for detecting sri_lanka_national_identification_number. (Built-in)', 2,'SRI_LANKA_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (248, 1, 'Glue identifier for detecting sweden_driving_license. (Built-in)', 2,'SWEDEN_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (249, 1, 'Glue identifier for detecting sweden_passport_number. (Built-in)', 2,'SWEDEN_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (250, 1, 'Glue identifier for detecting sweden_personal_identification_number. (Built-in)', 2,'SWEDEN_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (251, 1, 'Glue identifier for detecting sweden_tax_identification_number. (Built-in)', 2,'SWEDEN_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (252, 1, 'Glue identifier for detecting sweden_value_added_tax. (Built-in)', 2,'SWEDEN_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (253, 1, 'Glue identifier for detecting switzerland_ahv. (Built-in)', 2,'SWITZERLAND_AHV',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (254, 1, 'Glue identifier for detecting switzerland_health_insurance_number. (Built-in)', 2,'SWITZERLAND_HEALTH_INSURANCE_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (255, 1, 'Glue identifier for detecting switzerland_passport_number. (Built-in)', 2,'SWITZERLAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (256, 1, 'Glue identifier for detecting switzerland_value_added_tax. (Built-in)', 2,'SWITZERLAND_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (257, 1, 'Glue identifier for detecting thailand_passport_number. (Built-in)', 2,'THAILAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (258, 1, 'Glue identifier for detecting thailand_personal_identification_number. (Built-in)', 2,'THAILAND_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (259, 1, 'Glue identifier for detecting turkey_national_identification_number. (Built-in)', 2,'TURKEY_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (260, 1, 'Glue identifier for detecting turkey_passport_number. (Built-in)', 2,'TURKEY_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (261, 1, 'Glue identifier for detecting turkey_value_added_tax. (Built-in)', 2,'TURKEY_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (262, 1, 'Glue identifier for detecting ukraine_individual_identification_number. (Built-in)', 2,'UKRAINE_INDIVIDUAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (263, 1, 'Glue identifier for detecting ukraine_passport_number_domestic. (Built-in)', 2,'UKRAINE_PASSPORT_NUMBER_DOMESTIC',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (264, 1, 'Glue identifier for detecting ukraine_passport_number_international. (Built-in)', 2,'UKRAINE_PASSPORT_NUMBER_INTERNATIONAL',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (265, 1, 'Glue identifier for detecting united_arab_emirates_personal_number. (Built-in)', 2,'UNITED_ARAB_EMIRATES_PERSONAL_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (266, 1, 'Glue identifier for detecting venezuela_driving_license. (Built-in)', 2,'VENEZUELA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (267, 1, 'Glue identifier for detecting venezuela_national_identification_number. (Built-in)', 2,'VENEZUELA_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (268, 1, 'Glue identifier for detecting venezuela_value_added_tax. (Built-in)', 2,'VENEZUELA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (269, 1,'Regex-based identifier for detecting Marital status (Built-in)',0,'CHINA_MARITAL_STATUS',1, 1,'^(未婚|已婚|离异|离婚|丧偶|unmarried|married|divorced|widowed)$','[\"marital\",\"marriage\",\"relationship\",\"spouse\",\"hunyin\",\"jiehun\",\"hunpei\",\"peiou\",\"婚姻\",\"结婚\",\"婚配\",\"配偶\"]','SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (270, 1,'Regex-based identifier for detecting Chinese Political party (Built-in)',0,'CHINA_POLITICAL_PARTY',1, 1,'^(中国共产党|共产党|中国国民党革命委员会|民革|中国民主同盟|民盟|中国民主建国会|民建|中国民主促进会|民进|中国农工民主党|农工|农工党|中国致公党|致公|致公党|台湾民主自治同盟|台盟|九三学社|无|无党派|群众)$','[\"party\",\"dang\",\"党\"]','SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (271, 1,'Regex-based identifier for detecting China province (Built-in)',0,'CHINA_PROVINCE',1, 1,'^(((中国)?(((北京|天津|上海|重庆)市?)|((河北|山西|辽宁|吉林|黑龙江|江苏|浙江|安徽|福建|江西|山东|河南|湖北|湖南|广东|海南|四川|贵州|云南|陕西|甘肃|青海|台湾)省?)|内蒙|内蒙古|内蒙古自治区|广西|广西壮族自治区|西藏|西藏自治区|宁夏|宁夏回族自治区|新疆|新疆维吾尔自治区|香港|香港特别行政区|澳门|澳门特别行政区))|(?i)(bei ?jing|tian ?jin|shang ?hai|chong ?qing|he ?bei|shan ?xi|liao ?ning|ji ?lin|hei ?long ?jiang|jiang ?su|zhe ?jiang|an ?hui|fu ?jian|jiang ?xi|shan ?dong|he ?nan|hu ?bei|hu ?nan|guang ?dong|guang ?xi|hai ?nan|si ?chuan|gui ?zhou|yun ?nan|shaan ?xi|gan ?su|qing ?hai|tai ?wan|inner mongolia|nei ?meng ?gu|nei ?meng|tibet|xi ?zang|ning ?xia|xin ?jiang|hong ?kong|xiang ?gang|macao|ao ?men))$','[\"province\",\"provincial\",\"area\",\"location\",\"省\",\"地区\",\"sheng\",\"diqu\"]','SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (272, 1,'Regex-based identifier for detecting Gender (Built-in)',0,'CHINA_GENDER',1, 1,'^(男|女|男生|女生|男性|女性|transgender|male|female|man|woman|men|women)$','[\"sex\",\"gender\",\"xingbie\",\"性别\"]','SDPS'); -INSERT INTO template_identifier (id, base_type, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (273, 1,'Regex-based identifier for detecting for Id Card type (Built-in)',0,'CHINA_ID_TYPE',1, 1,'^(.+证|.+证明|.+证明书|.+证书|户口簿|户口本|驾照|驾驶本|行驶本|护照|社会保障卡|社保卡|居民死亡医学证明\(推断\)书|.+一卡通|居住卡|医保卡)$','[\"id type\",\"id card type\",\"id card\",\"id_type\",\"id_card_type\",\"id_card\",\"identification\",\"identity\",\"document\",\"license\",\"certificate\",\"registration\",\"card\",\"证明\",\"证件\",\"zhengming\",\"zhengjian\"]','SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (1, 'AI-based identifier for detecting Chinese name. (Built-in)', 0, 'CHINA_CHINESE_NAME', 0, 1, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (2, 'AI-based identifier for detecting Chinese address. (Built-in)', 0, 'CHINA_ADDRESS', 0, 1, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (7, 'Regex-based identifier for detecting Chinese nationality (Built-in)', 0, 'CHINA_NATIONALITY', 1, 1, '(?:斐济|汤加|纽埃|坦桑尼亚|西撒哈拉|加拿大|美国|哈萨克斯坦|乌兹别克斯坦|巴布亚新几内亚|印度尼西亚|阿根廷|智利|刚果(金)|索马里|肯尼亚|苏丹|乍得|海地|多米尼加|俄罗斯|巴哈马|巴林|马尔维纳斯群岛(福克兰)|挪威|格陵兰|法属南部和南极领地|东帝汶|南非|莱索托|墨西哥|乌拉圭|巴西|玻利维亚|秘鲁|哥伦比亚|巴拿马|哥斯达黎加|尼加拉瓜|洪都拉斯|萨尔瓦多|危地马拉|伯利兹|委内瑞拉|圭亚那|苏里南|法国|安道尔|厄瓜多尔|波多黎各|牙买加|古巴|津巴布韦|博茨瓦纳|纳米比亚|塞内加尔|马里|毛里塔尼亚|贝宁|尼日尔|尼日利亚|喀麦隆|多哥|加纳|科特迪瓦|几内亚|几内亚比绍|利比里亚|塞拉利昂|布基纳法索|中非|刚果(布)|加蓬|赤道几内亚|赞比亚|马拉维|莫桑比克|斯威士兰|安哥拉|布隆迪|以色列|黎巴嫩|马达加斯加|毛里求斯|巴勒斯坦|冈比亚|突尼斯|阿尔及利亚|约旦|阿联酋|卡塔尔|科威特|伊拉克|阿曼|瓦努阿图|柬埔寨|泰国|老挝|缅甸|越南|朝鲜|韩国|蒙古|印度|孟加拉国|不丹|尼泊尔|巴基斯坦|阿富汗|塔吉克斯坦|吉尔吉斯斯坦|土库曼斯坦|伊朗|叙利亚|亚美尼亚|瑞典|白俄罗斯|乌克兰|波兰|奥地利|匈牙利|摩尔多瓦|罗马尼亚|立陶宛|拉脱维亚|爱沙尼亚|德国|保加利亚|希腊|土耳其|阿尔巴尼亚|克罗地亚|瑞士|卢森堡|比利时|荷兰|葡萄牙|西班牙|爱尔兰|新喀里多尼亚|所罗门群岛|瑙鲁|新西兰|澳大利亚|马尔代夫|斯里兰卡|中国|意大利|马耳他|丹麦|英国|冰岛|阿塞拜疆|格鲁吉亚|菲律宾|马来西亚|新加坡|文莱|斯洛文尼亚|芬兰|斯洛伐克|捷克|厄立特里亚|日本|巴拉圭|也门|沙特阿拉伯|南极洲|北塞浦路斯|塞浦路斯|摩洛哥|埃及|利比亚|埃塞俄比亚|吉布提|索马里兰|乌干达|卢旺达|波黑|北马其顿|塞尔维亚|黑山|科索沃|特立尼达和多巴哥|南苏丹)', '[\"nationality\",\"nation\",\"国籍\",\"国家\",\"guoji\",\"guojia\"]', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (8, 'Regex-based identifier for detecting Chinese bank card Id (Built-in)', 0, 'CHINA_BANK_CARD', 1, 1, '\\b(?:436|966|888|940|870|685|609|629|602|968|433|405|422|303|601|589|552|456|438|664|412|434|421|442|185|695|620|911|621|843|504|548|524|526|998|955|694|990|623|905|512|989|909|103|688|603|984|622|472|566|410|900|690|624|683|627|985|625|999|468|427|415|666|402)(\\d{9}|\\d{13}|\\d{14}|\\d{16})\\b', '[\"account\",\"bank\",\"debit\",\"账号\",\"账户\",\"卡号\",\"银行卡\",\"储蓄卡\",\"借记卡\",\"zhanghao\",\"zhanghu\",\"kahao\",\"yinhangka\",\"chuxuka\",\"jiejika\"]', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (10, 'Glue identifier for detecting person name. (Built-in)', 2, 'PERSON_NAME', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (11, 'Glue identifier for detecting email. (Built-in)', 2, 'EMAIL', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (12, 'Glue identifier for detecting credit card. (Built-in)', 2, 'CREDIT_CARD', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (13, 'Glue identifier for detecting ip address. (Built-in)', 2, 'IP_ADDRESS', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (14, 'Glue identifier for detecting mac address. (Built-in)', 2, 'MAC_ADDRESS', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (15, 'Glue identifier for detecting phone number. (Built-in)', 2, 'PHONE_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (16, 'Glue identifier for detecting usa passport number. (Built-in)', 2, 'USA_PASSPORT_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (17, 'Glue identifier for detecting usa ssn. (Built-in)', 2, 'USA_SSN', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (18, 'Glue identifier for detecting usa itin. (Built-in)', 2, 'USA_ITIN', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (19, 'Glue identifier for detecting bank account. (Built-in)', 2, 'BANK_ACCOUNT', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (20, 'Glue identifier for detecting usa driving license. (Built-in)', 2, 'USA_DRIVING_LICENSE', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (21, 'Glue identifier for detecting usa hcpcs code. (Built-in)', 2, 'USA_HCPCS_CODE', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (22, 'Glue identifier for detecting usa national drug code. (Built-in)', 2, 'USA_NATIONAL_DRUG_CODE', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (23, 'Glue identifier for detecting usa national provider identifier. (Built-in)', 2, 'USA_NATIONAL_PROVIDER_IDENTIFIER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (24, 'Glue identifier for detecting usa dea number. (Built-in)', 2, 'USA_DEA_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (25, 'Glue identifier for detecting usa health insurance claim number. (Built-in)', 2, 'USA_HEALTH_INSURANCE_CLAIM_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (26, 'Glue identifier for detecting usa medicare beneficiary identifier. (Built-in)', 2, 'USA_MEDICARE_BENEFICIARY_IDENTIFIER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (27, 'Glue identifier for detecting japan bank account. (Built-in)', 2, 'JAPAN_BANK_ACCOUNT', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (28, 'Glue identifier for detecting japan driving license. (Built-in)', 2, 'JAPAN_DRIVING_LICENSE', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (29, 'Glue identifier for detecting japan my number. (Built-in)', 2, 'JAPAN_MY_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (30, 'Glue identifier for detecting japan passport number. (Built-in)', 2, 'JAPAN_PASSPORT_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (31, 'Glue identifier for detecting uk bank account. (Built-in)', 2, 'UK_BANK_ACCOUNT', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (32, 'Glue identifier for detecting uk bank sort code. (Built-in)', 2, 'UK_BANK_SORT_CODE', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (33, 'Glue identifier for detecting uk driving license. (Built-in)', 2, 'UK_DRIVING_LICENSE', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (34, 'Glue identifier for detecting uk electoral roll number. (Built-in)', 2, 'UK_ELECTORAL_ROLL_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (35, 'Glue identifier for detecting uk national health service number. (Built-in)', 2, 'UK_NATIONAL_HEALTH_SERVICE_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (36, 'Glue identifier for detecting uk national insurance number. (Built-in)', 2, 'UK_NATIONAL_INSURANCE_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (37, 'Glue identifier for detecting uk passport number. (Built-in)', 2, 'UK_PASSPORT_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (38, 'Glue identifier for detecting uk phone number. (Built-in)', 2, 'UK_PHONE_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (39, 'Glue identifier for detecting uk unique taxpayer reference number. (Built-in)', 2, 'UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (40, 'Glue identifier for detecting uk value added tax. (Built-in)', 2, 'UK_VALUE_ADDED_TAX', 0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (41, 'Glue identifier for detecting date. (Built-in)', 2,'DATE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (42, 'Glue identifier for detecting usa_atin. (Built-in)', 2,'USA_ATIN',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (43, 'Glue identifier for detecting usa_ptin. (Built-in)', 2,'USA_PTIN',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (44, 'Glue identifier for detecting usa_cpt_code. (Built-in)', 2,'USA_CPT_CODE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (45, 'Glue identifier for detecting argentina_tax_identification_number. (Built-in)', 2,'ARGENTINA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (46, 'Glue identifier for detecting australia_business_number. (Built-in)', 2,'AUSTRALIA_BUSINESS_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (47, 'Glue identifier for detecting australia_company_number. (Built-in)', 2,'AUSTRALIA_COMPANY_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (48, 'Glue identifier for detecting australia_driving_license. (Built-in)', 2,'AUSTRALIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (49, 'Glue identifier for detecting australia_medicare_number. (Built-in)', 2,'AUSTRALIA_MEDICARE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (50, 'Glue identifier for detecting australia_passport_number. (Built-in)', 2,'AUSTRALIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (51, 'Glue identifier for detecting australia_tax_file_number. (Built-in)', 2,'AUSTRALIA_TAX_FILE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (52, 'Glue identifier for detecting austria_driving_license. (Built-in)', 2,'AUSTRIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (53, 'Glue identifier for detecting austria_passport_number. (Built-in)', 2,'AUSTRIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (54, 'Glue identifier for detecting austria_ssn. (Built-in)', 2,'AUSTRIA_SSN',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (55, 'Glue identifier for detecting austria_tax_identification_number. (Built-in)', 2,'AUSTRIA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (56, 'Glue identifier for detecting austria_value_added_tax. (Built-in)', 2,'AUSTRIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (57, 'Glue identifier for detecting belgium_driving_license. (Built-in)', 2,'BELGIUM_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (58, 'Glue identifier for detecting belgium_national_identification_number. (Built-in)', 2,'BELGIUM_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (59, 'Glue identifier for detecting belgium_passport_number. (Built-in)', 2,'BELGIUM_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (60, 'Glue identifier for detecting belgium_tax_identification_number. (Built-in)', 2,'BELGIUM_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (61, 'Glue identifier for detecting belgium_value_added_tax. (Built-in)', 2,'BELGIUM_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (62, 'Glue identifier for detecting bosnia_unique_master_citizen_number. (Built-in)', 2,'BOSNIA_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (63, 'Glue identifier for detecting brazil_bank_account. (Built-in)', 2,'BRAZIL_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (64, 'Glue identifier for detecting brazil_national_identification_number. (Built-in)', 2,'BRAZIL_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (65, 'Glue identifier for detecting brazil_national_registry_of_legal_entities_number. (Built-in)', 2,'BRAZIL_NATIONAL_REGISTRY_OF_LEGAL_ENTITIES_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (66, 'Glue identifier for detecting brazil_natural_person_registry_number. (Built-in)', 2,'BRAZIL_NATURAL_PERSON_REGISTRY_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (67, 'Glue identifier for detecting brazil_postal_code. (Built-in)', 2,'BRAZIL_POSTAL_CODE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (68, 'Glue identifier for detecting bulgaria_driving_license. (Built-in)', 2,'BULGARIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (69, 'Glue identifier for detecting bulgaria_uniform_civil_number. (Built-in)', 2,'BULGARIA_UNIFORM_CIVIL_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (70, 'Glue identifier for detecting bulgaria_value_added_tax. (Built-in)', 2,'BULGARIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (71, 'Glue identifier for detecting canada_driving_license. (Built-in)', 2,'CANADA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (72, 'Glue identifier for detecting canada_government_identification_card_number. (Built-in)', 2,'CANADA_GOVERNMENT_IDENTIFICATION_CARD_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (73, 'Glue identifier for detecting canada_passport_number. (Built-in)', 2,'CANADA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (74, 'Glue identifier for detecting canada_permanent_residence_number. (Built-in)', 2,'CANADA_PERMANENT_RESIDENCE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (75, 'Glue identifier for detecting canada_personal_health_number. (Built-in)', 2,'CANADA_PERSONAL_HEALTH_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (76, 'Glue identifier for detecting canada_social_insurance_number. (Built-in)', 2,'CANADA_SOCIAL_INSURANCE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (77, 'Glue identifier for detecting chile_driving_license. (Built-in)', 2,'CHILE_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (78, 'Glue identifier for detecting chile_national_identification_number. (Built-in)', 2,'CHILE_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (79, 'Glue identifier for detecting china_identification. (Built-in)', 2,'CHINA_IDENTIFICATION',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (80, 'Glue identifier for detecting china_license_plate_number. (Built-in)', 2,'CHINA_LICENSE_PLATE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (81, 'Glue identifier for detecting china_mainland_travel_permit_id_hong_kong_macau. (Built-in)', 2,'CHINA_MAINLAND_TRAVEL_PERMIT_ID_HONG_KONG_MACAU',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (82, 'Glue identifier for detecting china_mainland_travel_permit_id_taiwan. (Built-in)', 2,'CHINA_MAINLAND_TRAVEL_PERMIT_ID_TAIWAN',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (83, 'Glue identifier for detecting china_passport_number. (Built-in)', 2,'CHINA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (84, 'Glue identifier for detecting china_phone_number. (Built-in)', 2,'CHINA_PHONE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (85, 'Glue identifier for detecting hong_kong_identity_card. (Built-in)', 2,'HONG_KONG_IDENTITY_CARD',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (86, 'Glue identifier for detecting macau_resident_identity_card. (Built-in)', 2,'MACAU_RESIDENT_IDENTITY_CARD',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (87, 'Glue identifier for detecting taiwan_national_identification_number. (Built-in)', 2,'TAIWAN_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (88, 'Glue identifier for detecting taiwan_passport_number. (Built-in)', 2,'TAIWAN_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (89, 'Glue identifier for detecting colombia_personal_identification_number. (Built-in)', 2,'COLOMBIA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (90, 'Glue identifier for detecting colombia_tax_identification_number. (Built-in)', 2,'COLOMBIA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (91, 'Glue identifier for detecting croatia_driving_license. (Built-in)', 2,'CROATIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (92, 'Glue identifier for detecting croatia_identity_number. (Built-in)', 2,'CROATIA_IDENTITY_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (93, 'Glue identifier for detecting croatia_passport_number. (Built-in)', 2,'CROATIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (94, 'Glue identifier for detecting croatia_personal_identification_number. (Built-in)', 2,'CROATIA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (95, 'Glue identifier for detecting cyprus_driving_license. (Built-in)', 2,'CYPRUS_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (96, 'Glue identifier for detecting cyprus_national_identification_number. (Built-in)', 2,'CYPRUS_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (97, 'Glue identifier for detecting cyprus_passport_number. (Built-in)', 2,'CYPRUS_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (98, 'Glue identifier for detecting cyprus_tax_identification_number. (Built-in)', 2,'CYPRUS_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (99, 'Glue identifier for detecting cyprus_value_added_tax. (Built-in)', 2,'CYPRUS_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (100, 'Glue identifier for detecting czechia_driving_license. (Built-in)', 2,'CZECHIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (101, 'Glue identifier for detecting czechia_personal_identification_number. (Built-in)', 2,'CZECHIA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (102, 'Glue identifier for detecting czechia_value_added_tax. (Built-in)', 2,'CZECHIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (103, 'Glue identifier for detecting denmark_driving_license. (Built-in)', 2,'DENMARK_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (104, 'Glue identifier for detecting denmark_personal_identification_number. (Built-in)', 2,'DENMARK_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (105, 'Glue identifier for detecting denmark_tax_identification_number. (Built-in)', 2,'DENMARK_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (106, 'Glue identifier for detecting denmark_value_added_tax. (Built-in)', 2,'DENMARK_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (107, 'Glue identifier for detecting estonia_driving_license. (Built-in)', 2,'ESTONIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (108, 'Glue identifier for detecting estonia_passport_number. (Built-in)', 2,'ESTONIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (109, 'Glue identifier for detecting estonia_personal_identification_code. (Built-in)', 2,'ESTONIA_PERSONAL_IDENTIFICATION_CODE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (110, 'Glue identifier for detecting estonia_value_added_tax. (Built-in)', 2,'ESTONIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (111, 'Glue identifier for detecting finland_driving_license. (Built-in)', 2,'FINLAND_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (112, 'Glue identifier for detecting finland_health_insurance_number. (Built-in)', 2,'FINLAND_HEALTH_INSURANCE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (113, 'Glue identifier for detecting finland_national_identification_number. (Built-in)', 2,'FINLAND_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (114, 'Glue identifier for detecting finland_passport_number. (Built-in)', 2,'FINLAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (115, 'Glue identifier for detecting finland_value_added_tax. (Built-in)', 2,'FINLAND_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (116, 'Glue identifier for detecting france_bank_account. (Built-in)', 2,'FRANCE_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (117, 'Glue identifier for detecting france_driving_license. (Built-in)', 2,'FRANCE_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (118, 'Glue identifier for detecting france_health_insurance_number. (Built-in)', 2,'FRANCE_HEALTH_INSURANCE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (119, 'Glue identifier for detecting france_insee_code. (Built-in)', 2,'FRANCE_INSEE_CODE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (120, 'Glue identifier for detecting france_national_identification_number. (Built-in)', 2,'FRANCE_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (121, 'Glue identifier for detecting france_passport_number. (Built-in)', 2,'FRANCE_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (122, 'Glue identifier for detecting france_tax_identification_number. (Built-in)', 2,'FRANCE_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (123, 'Glue identifier for detecting france_value_added_tax. (Built-in)', 2,'FRANCE_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (124, 'Glue identifier for detecting germany_bank_account. (Built-in)', 2,'GERMANY_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (125, 'Glue identifier for detecting germany_driving_license. (Built-in)', 2,'GERMANY_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (126, 'Glue identifier for detecting germany_passport_number. (Built-in)', 2,'GERMANY_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (127, 'Glue identifier for detecting germany_personal_identification_number. (Built-in)', 2,'GERMANY_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (128, 'Glue identifier for detecting germany_tax_identification_number. (Built-in)', 2,'GERMANY_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (129, 'Glue identifier for detecting germany_value_added_tax. (Built-in)', 2,'GERMANY_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (130, 'Glue identifier for detecting greece_driving_license. (Built-in)', 2,'GREECE_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (131, 'Glue identifier for detecting greece_passport_number. (Built-in)', 2,'GREECE_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (132, 'Glue identifier for detecting greece_ssn. (Built-in)', 2,'GREECE_SSN',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (133, 'Glue identifier for detecting greece_tax_identification_number. (Built-in)', 2,'GREECE_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (134, 'Glue identifier for detecting greece_value_added_tax. (Built-in)', 2,'GREECE_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (135, 'Glue identifier for detecting hungary_driving_license. (Built-in)', 2,'HUNGARY_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (136, 'Glue identifier for detecting hungary_passport_number. (Built-in)', 2,'HUNGARY_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (137, 'Glue identifier for detecting hungary_ssn. (Built-in)', 2,'HUNGARY_SSN',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (138, 'Glue identifier for detecting hungary_tax_identification_number. (Built-in)', 2,'HUNGARY_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (139, 'Glue identifier for detecting hungary_value_added_tax. (Built-in)', 2,'HUNGARY_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (140, 'Glue identifier for detecting iceland_national_identification_number. (Built-in)', 2,'ICELAND_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (141, 'Glue identifier for detecting iceland_passport_number. (Built-in)', 2,'ICELAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (142, 'Glue identifier for detecting iceland_value_added_tax. (Built-in)', 2,'ICELAND_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (143, 'Glue identifier for detecting india_aadhaar_number. (Built-in)', 2,'INDIA_AADHAAR_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (144, 'Glue identifier for detecting india_permanent_account_number. (Built-in)', 2,'INDIA_PERMANENT_ACCOUNT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (145, 'Glue identifier for detecting indonesia_identity_card_number. (Built-in)', 2,'INDONESIA_IDENTITY_CARD_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (146, 'Glue identifier for detecting ireland_driving_license. (Built-in)', 2,'IRELAND_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (147, 'Glue identifier for detecting ireland_passport_number. (Built-in)', 2,'IRELAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (148, 'Glue identifier for detecting ireland_personal_public_service_number. (Built-in)', 2,'IRELAND_PERSONAL_PUBLIC_SERVICE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (149, 'Glue identifier for detecting ireland_tax_identification_number. (Built-in)', 2,'IRELAND_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (150, 'Glue identifier for detecting ireland_value_added_tax. (Built-in)', 2,'IRELAND_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (151, 'Glue identifier for detecting israel_identification_number. (Built-in)', 2,'ISRAEL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (152, 'Glue identifier for detecting italy_bank_account. (Built-in)', 2,'ITALY_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (153, 'Glue identifier for detecting italy_driving_license. (Built-in)', 2,'ITALY_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (154, 'Glue identifier for detecting italy_fiscal_code. (Built-in)', 2,'ITALY_FISCAL_CODE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (155, 'Glue identifier for detecting italy_passport_number. (Built-in)', 2,'ITALY_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (156, 'Glue identifier for detecting italy_value_added_tax. (Built-in)', 2,'ITALY_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (157, 'Glue identifier for detecting korea_passport_number. (Built-in)', 2,'KOREA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (158, 'Glue identifier for detecting korea_residence_registration_number_for_citizens. (Built-in)', 2,'KOREA_RESIDENCE_REGISTRATION_NUMBER_FOR_CITIZENS',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (159, 'Glue identifier for detecting korea_residence_registration_number_for_foreigners. (Built-in)', 2,'KOREA_RESIDENCE_REGISTRATION_NUMBER_FOR_FOREIGNERS',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (160, 'Glue identifier for detecting kosovo_unique_master_citizen_number. (Built-in)', 2,'KOSOVO_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (161, 'Glue identifier for detecting latvia_driving_license. (Built-in)', 2,'LATVIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (162, 'Glue identifier for detecting latvia_passport_number. (Built-in)', 2,'LATVIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (163, 'Glue identifier for detecting latvia_personal_identification_number. (Built-in)', 2,'LATVIA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (164, 'Glue identifier for detecting latvia_value_added_tax. (Built-in)', 2,'LATVIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (165, 'Glue identifier for detecting liechtenstein_national_identification_number. (Built-in)', 2,'LIECHTENSTEIN_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (166, 'Glue identifier for detecting liechtenstein_passport_number. (Built-in)', 2,'LIECHTENSTEIN_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (167, 'Glue identifier for detecting liechtenstein_tax_identification_number. (Built-in)', 2,'LIECHTENSTEIN_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (168, 'Glue identifier for detecting lithuania_driving_license. (Built-in)', 2,'LITHUANIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (169, 'Glue identifier for detecting lithuania_personal_identification_number. (Built-in)', 2,'LITHUANIA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (170, 'Glue identifier for detecting lithuania_tax_identification_number. (Built-in)', 2,'LITHUANIA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (171, 'Glue identifier for detecting lithuania_value_added_tax. (Built-in)', 2,'LITHUANIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (172, 'Glue identifier for detecting luxembourg_driving_license. (Built-in)', 2,'LUXEMBOURG_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (173, 'Glue identifier for detecting luxembourg_national_individual_number. (Built-in)', 2,'LUXEMBOURG_NATIONAL_INDIVIDUAL_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (174, 'Glue identifier for detecting luxembourg_passport_number. (Built-in)', 2,'LUXEMBOURG_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (175, 'Glue identifier for detecting luxembourg_tax_identification_number. (Built-in)', 2,'LUXEMBOURG_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (176, 'Glue identifier for detecting luxembourg_value_added_tax. (Built-in)', 2,'LUXEMBOURG_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (177, 'Glue identifier for detecting macedonia_unique_master_citizen_number. (Built-in)', 2,'MACEDONIA_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (178, 'Glue identifier for detecting malaysia_mykad_number. (Built-in)', 2,'MALAYSIA_MYKAD_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (179, 'Glue identifier for detecting malaysia_passport_number. (Built-in)', 2,'MALAYSIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (180, 'Glue identifier for detecting malta_driving_license. (Built-in)', 2,'MALTA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (181, 'Glue identifier for detecting malta_national_identification_number. (Built-in)', 2,'MALTA_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (182, 'Glue identifier for detecting malta_tax_identification_number. (Built-in)', 2,'MALTA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (183, 'Glue identifier for detecting malta_value_added_tax. (Built-in)', 2,'MALTA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (184, 'Glue identifier for detecting mexico_clabe_number. (Built-in)', 2,'MEXICO_CLABE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (185, 'Glue identifier for detecting mexico_driving_license. (Built-in)', 2,'MEXICO_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (186, 'Glue identifier for detecting mexico_passport_number. (Built-in)', 2,'MEXICO_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (187, 'Glue identifier for detecting mexico_tax_identification_number. (Built-in)', 2,'MEXICO_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (188, 'Glue identifier for detecting mexico_unique_population_registry_code. (Built-in)', 2,'MEXICO_UNIQUE_POPULATION_REGISTRY_CODE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (189, 'Glue identifier for detecting montenegro_unique_master_citizen_number. (Built-in)', 2,'MONTENEGRO_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (190, 'Glue identifier for detecting netherlands_bank_account. (Built-in)', 2,'NETHERLANDS_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (191, 'Glue identifier for detecting netherlands_citizen_service_number. (Built-in)', 2,'NETHERLANDS_CITIZEN_SERVICE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (192, 'Glue identifier for detecting netherlands_driving_license. (Built-in)', 2,'NETHERLANDS_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (193, 'Glue identifier for detecting netherlands_passport_number. (Built-in)', 2,'NETHERLANDS_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (194, 'Glue identifier for detecting netherlands_tax_identification_number. (Built-in)', 2,'NETHERLANDS_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (195, 'Glue identifier for detecting netherlands_value_added_tax. (Built-in)', 2,'NETHERLANDS_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (196, 'Glue identifier for detecting new_zealand_driving_license. (Built-in)', 2,'NEW_ZEALAND_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (197, 'Glue identifier for detecting new_zealand_national_health_index_number. (Built-in)', 2,'NEW_ZEALAND_NATIONAL_HEALTH_INDEX_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (198, 'Glue identifier for detecting new_zealand_tax_identification_number. (Built-in)', 2,'NEW_ZEALAND_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (199, 'Glue identifier for detecting norway_birth_number. (Built-in)', 2,'NORWAY_BIRTH_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (200, 'Glue identifier for detecting norway_driving_license. (Built-in)', 2,'NORWAY_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (201, 'Glue identifier for detecting norway_health_insurance_number. (Built-in)', 2,'NORWAY_HEALTH_INSURANCE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (202, 'Glue identifier for detecting norway_national_identification_number. (Built-in)', 2,'NORWAY_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (203, 'Glue identifier for detecting norway_value_added_tax. (Built-in)', 2,'NORWAY_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (204, 'Glue identifier for detecting philippines_driving_license. (Built-in)', 2,'PHILIPPINES_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (205, 'Glue identifier for detecting philippines_passport_number. (Built-in)', 2,'PHILIPPINES_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (206, 'Glue identifier for detecting poland_driving_license. (Built-in)', 2,'POLAND_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (207, 'Glue identifier for detecting poland_identification_number. (Built-in)', 2,'POLAND_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (208, 'Glue identifier for detecting poland_passport_number. (Built-in)', 2,'POLAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (209, 'Glue identifier for detecting poland_regon_number. (Built-in)', 2,'POLAND_REGON_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (210, 'Glue identifier for detecting poland_ssn. (Built-in)', 2,'POLAND_SSN',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (211, 'Glue identifier for detecting poland_tax_identification_number. (Built-in)', 2,'POLAND_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (212, 'Glue identifier for detecting poland_value_added_tax. (Built-in)', 2,'POLAND_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (213, 'Glue identifier for detecting portugal_driving_license. (Built-in)', 2,'PORTUGAL_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (214, 'Glue identifier for detecting portugal_national_identification_number. (Built-in)', 2,'PORTUGAL_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (215, 'Glue identifier for detecting portugal_passport_number. (Built-in)', 2,'PORTUGAL_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (216, 'Glue identifier for detecting portugal_tax_identification_number. (Built-in)', 2,'PORTUGAL_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (217, 'Glue identifier for detecting portugal_value_added_tax. (Built-in)', 2,'PORTUGAL_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (218, 'Glue identifier for detecting romania_driving_license. (Built-in)', 2,'ROMANIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (219, 'Glue identifier for detecting romania_numerical_personal_code. (Built-in)', 2,'ROMANIA_NUMERICAL_PERSONAL_CODE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (220, 'Glue identifier for detecting romania_passport_number. (Built-in)', 2,'ROMANIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (221, 'Glue identifier for detecting romania_value_added_tax. (Built-in)', 2,'ROMANIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (222, 'Glue identifier for detecting serbia_unique_master_citizen_number. (Built-in)', 2,'SERBIA_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (223, 'Glue identifier for detecting serbia_value_added_tax. (Built-in)', 2,'SERBIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (224, 'Glue identifier for detecting vojvodina_unique_master_citizen_number. (Built-in)', 2,'VOJVODINA_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (225, 'Glue identifier for detecting singapore_driving_license. (Built-in)', 2,'SINGAPORE_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (226, 'Glue identifier for detecting singapore_national_registry_identification_number. (Built-in)', 2,'SINGAPORE_NATIONAL_REGISTRY_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (227, 'Glue identifier for detecting singapore_passport_number. (Built-in)', 2,'SINGAPORE_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (228, 'Glue identifier for detecting singapore_unique_entity_number. (Built-in)', 2,'SINGAPORE_UNIQUE_ENTITY_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (229, 'Glue identifier for detecting slovakia_driving_license. (Built-in)', 2,'SLOVAKIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (230, 'Glue identifier for detecting slovakia_national_identification_number. (Built-in)', 2,'SLOVAKIA_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (231, 'Glue identifier for detecting slovakia_passport_number. (Built-in)', 2,'SLOVAKIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (232, 'Glue identifier for detecting slovakia_value_added_tax. (Built-in)', 2,'SLOVAKIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (233, 'Glue identifier for detecting slovenia_driving_license. (Built-in)', 2,'SLOVENIA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (234, 'Glue identifier for detecting slovenia_passport_number. (Built-in)', 2,'SLOVENIA_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (235, 'Glue identifier for detecting slovenia_tax_identification_number. (Built-in)', 2,'SLOVENIA_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (236, 'Glue identifier for detecting slovenia_unique_master_citizen_number. (Built-in)', 2,'SLOVENIA_UNIQUE_MASTER_CITIZEN_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (237, 'Glue identifier for detecting slovenia_value_added_tax. (Built-in)', 2,'SLOVENIA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (238, 'Glue identifier for detecting south_africa_personal_identification_number. (Built-in)', 2,'SOUTH_AFRICA_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (239, 'Glue identifier for detecting spain_bank_account. (Built-in)', 2,'SPAIN_BANK_ACCOUNT',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (240, 'Glue identifier for detecting spain_dni. (Built-in)', 2,'SPAIN_DNI',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (241, 'Glue identifier for detecting spain_driving_license. (Built-in)', 2,'SPAIN_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (242, 'Glue identifier for detecting spain_nie. (Built-in)', 2,'SPAIN_NIE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (243, 'Glue identifier for detecting spain_nif. (Built-in)', 2,'SPAIN_NIF',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (244, 'Glue identifier for detecting spain_passport_number. (Built-in)', 2,'SPAIN_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (245, 'Glue identifier for detecting spain_ssn. (Built-in)', 2,'SPAIN_SSN',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (246, 'Glue identifier for detecting spain_value_added_tax. (Built-in)', 2,'SPAIN_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (247, 'Glue identifier for detecting sri_lanka_national_identification_number. (Built-in)', 2,'SRI_LANKA_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (248, 'Glue identifier for detecting sweden_driving_license. (Built-in)', 2,'SWEDEN_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (249, 'Glue identifier for detecting sweden_passport_number. (Built-in)', 2,'SWEDEN_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (250, 'Glue identifier for detecting sweden_personal_identification_number. (Built-in)', 2,'SWEDEN_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (251, 'Glue identifier for detecting sweden_tax_identification_number. (Built-in)', 2,'SWEDEN_TAX_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (252, 'Glue identifier for detecting sweden_value_added_tax. (Built-in)', 2,'SWEDEN_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (253, 'Glue identifier for detecting switzerland_ahv. (Built-in)', 2,'SWITZERLAND_AHV',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (254, 'Glue identifier for detecting switzerland_health_insurance_number. (Built-in)', 2,'SWITZERLAND_HEALTH_INSURANCE_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (255, 'Glue identifier for detecting switzerland_passport_number. (Built-in)', 2,'SWITZERLAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (256, 'Glue identifier for detecting switzerland_value_added_tax. (Built-in)', 2,'SWITZERLAND_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (257, 'Glue identifier for detecting thailand_passport_number. (Built-in)', 2,'THAILAND_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (258, 'Glue identifier for detecting thailand_personal_identification_number. (Built-in)', 2,'THAILAND_PERSONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (259, 'Glue identifier for detecting turkey_national_identification_number. (Built-in)', 2,'TURKEY_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (260, 'Glue identifier for detecting turkey_passport_number. (Built-in)', 2,'TURKEY_PASSPORT_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (261, 'Glue identifier for detecting turkey_value_added_tax. (Built-in)', 2,'TURKEY_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (262, 'Glue identifier for detecting ukraine_individual_identification_number. (Built-in)', 2,'UKRAINE_INDIVIDUAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (263, 'Glue identifier for detecting ukraine_passport_number_domestic. (Built-in)', 2,'UKRAINE_PASSPORT_NUMBER_DOMESTIC',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (264, 'Glue identifier for detecting ukraine_passport_number_international. (Built-in)', 2,'UKRAINE_PASSPORT_NUMBER_INTERNATIONAL',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (265, 'Glue identifier for detecting united_arab_emirates_personal_number. (Built-in)', 2,'UNITED_ARAB_EMIRATES_PERSONAL_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (266, 'Glue identifier for detecting venezuela_driving_license. (Built-in)', 2,'VENEZUELA_DRIVING_LICENSE',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (267, 'Glue identifier for detecting venezuela_national_identification_number. (Built-in)', 2,'VENEZUELA_NATIONAL_IDENTIFICATION_NUMBER',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (268, 'Glue identifier for detecting venezuela_value_added_tax. (Built-in)', 2,'VENEZUELA_VALUE_ADDED_TAX',0, 0, '', '', 'SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (269,'Regex-based identifier for detecting Marital status (Built-in)',0,'CHINA_MARITAL_STATUS',1, 1,'^(未婚|已婚|离异|离婚|丧偶|unmarried|married|divorced|widowed)$','[\"marital\",\"marriage\",\"relationship\",\"spouse\",\"hunyin\",\"jiehun\",\"hunpei\",\"peiou\",\"婚姻\",\"结婚\",\"婚配\",\"配偶\"]','SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (270,'Regex-based identifier for detecting Chinese Political party (Built-in)',0,'CHINA_POLITICAL_PARTY',1, 1,'^(中国共产党|共产党|中国国民党革命委员会|民革|中国民主同盟|民盟|中国民主建国会|民建|中国民主促进会|民进|中国农工民主党|农工|农工党|中国致公党|致公|致公党|台湾民主自治同盟|台盟|九三学社|无|无党派|群众)$','[\"party\",\"dang\",\"党\"]','SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (271,'Regex-based identifier for detecting China province (Built-in)',0,'CHINA_PROVINCE',1, 1,'^(((中国)?(((北京|天津|上海|重庆)市?)|((河北|山西|辽宁|吉林|黑龙江|江苏|浙江|安徽|福建|江西|山东|河南|湖北|湖南|广东|海南|四川|贵州|云南|陕西|甘肃|青海|台湾)省?)|内蒙|内蒙古|内蒙古自治区|广西|广西壮族自治区|西藏|西藏自治区|宁夏|宁夏回族自治区|新疆|新疆维吾尔自治区|香港|香港特别行政区|澳门|澳门特别行政区))|(?i)(bei ?jing|tian ?jin|shang ?hai|chong ?qing|he ?bei|shan ?xi|liao ?ning|ji ?lin|hei ?long ?jiang|jiang ?su|zhe ?jiang|an ?hui|fu ?jian|jiang ?xi|shan ?dong|he ?nan|hu ?bei|hu ?nan|guang ?dong|guang ?xi|hai ?nan|si ?chuan|gui ?zhou|yun ?nan|shaan ?xi|gan ?su|qing ?hai|tai ?wan|inner mongolia|nei ?meng ?gu|nei ?meng|tibet|xi ?zang|ning ?xia|xin ?jiang|hong ?kong|xiang ?gang|macao|ao ?men))$','[\"province\",\"provincial\",\"area\",\"location\",\"省\",\"地区\",\"sheng\",\"diqu\"]','SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (272,'Regex-based identifier for detecting Gender (Built-in)',0,'CHINA_GENDER',1, 1,'^(男|女|男生|女生|男性|女性|transgender|male|female|man|woman|men|women)$','[\"sex\",\"gender\",\"xingbie\",\"性别\"]','SDPS'); +INSERT INTO template_identifier (id, description, type, name, classification, privacy, rule, header_keywords, create_by) VALUES (273,'Regex-based identifier for detecting for Id Card type (Built-in)',0,'CHINA_ID_TYPE',1, 1,'^(.+证|.+证明|.+证明书|.+证书|户口簿|户口本|驾照|驾驶本|行驶本|护照|社会保障卡|社保卡|居民死亡医学证明\(推断\)书|.+一卡通|居住卡|医保卡)$','[\"id type\",\"id card type\",\"id card\",\"id_type\",\"id_card_type\",\"id_card\",\"identification\",\"identity\",\"document\",\"license\",\"certificate\",\"registration\",\"card\",\"证明\",\"证件\",\"zhengming\",\"zhengjian\"]','SDPS'); + +INSERT INTO template_identifier (id, description, type, name, create_by) VALUES (274,'Face identifier for image detecting (Built-in)',3,'FACE','SDPS'); +INSERT INTO template_identifier (id, description, type, name, create_by) VALUES (275,'Business license identifier for image detecting (Built-in)',3,'Business License','SDPS'); +INSERT INTO template_identifier (id, description, type, name, create_by) VALUES (276,'Car license identifier for image detecting (Built-in)',3,'Car_License','SDPS'); +INSERT INTO template_identifier (id, description, type, name, create_by) VALUES (277,'ID card identifier for image detecting (Built-in)',3,'ID_Card','SDPS'); + DELETE FROM template_identifier_prop_ref WHERE id < 10001; -- buildin identifier-category mapping INSERT INTO template_identifier_prop_ref (identifier_id, prop_id) VALUES (1,1); diff --git a/source/portal/src/pages/account-management/componments/AccountList.tsx b/source/portal/src/pages/account-management/componments/AccountList.tsx index a99a626e..a750d8c7 100644 --- a/source/portal/src/pages/account-management/componments/AccountList.tsx +++ b/source/portal/src/pages/account-management/componments/AccountList.tsx @@ -58,14 +58,17 @@ const AccountList: React.FC = (props: any) => { }; useEffect(() => { + console.log("useEffect-----------") getPageData(); }, []); useDidUpdateEffect(() => { + console.log("useDidUpdateEffect1-----------") getPageData(); }, [currentPage, preferences.pageSize]); useDidUpdateEffect(() => { + console.log("useDidUpdateEffect2-----------") setCurrentPage(1); getPageData(); }, [query]); diff --git a/source/portal/src/pages/account-management/index.tsx b/source/portal/src/pages/account-management/index.tsx index d174a12e..3cdf6aea 100644 --- a/source/portal/src/pages/account-management/index.tsx +++ b/source/portal/src/pages/account-management/index.tsx @@ -35,6 +35,8 @@ const AccountManagementContent: React.FC = () => { rds_total: 0, s3_connected: 0, s3_total: 0, + jdbc_connected: 0, + jdbc_total: 0 }); const [totalAccount, setTotalAccount] = useState(0); const [totalRegion, setTotalRegion] = useState(0); @@ -114,6 +116,8 @@ const AccountManagementContent: React.FC = () => { // leftChildTotal: `${coverageData?.s3_total || 0}`, rightChildHeader: t('account:totalRDSInstance'), rightChildData: `${coverageData?.rds_total || 0}`, + jdbcChildHeader: t('account:totalJDBCConn'), + jdbcChildData: `${coverageData?.jdbc_total || 0}`, // rightChildTotal: `${coverageData?.rds_total || 0}`, isRowMore: true, }; diff --git a/source/portal/src/pages/summary/comps/Overview.tsx b/source/portal/src/pages/summary/comps/Overview.tsx index 1e0f907f..cd123d5d 100644 --- a/source/portal/src/pages/summary/comps/Overview.tsx +++ b/source/portal/src/pages/summary/comps/Overview.tsx @@ -22,7 +22,7 @@ const Overview: React.FC = () => { const { t } = useTranslation(); const getOverviewData = async () => { setLoadingOverview(true); - const res = await getAccountInfomation(currentProvider); + const res = await getAccountInfomation({"provider_id":currentProvider}); setAccountInfo(res as IAccountInfo); setLoadingOverview(false); }; @@ -30,7 +30,7 @@ const Overview: React.FC = () => { const getDashbaordSourceCoverage = async () => { setLoadingCoverage(true); try { - const res = await getSourceCoverage(currentProvider); + const res = await getSourceCoverage({"provider_id":currentProvider}); setCoverageInfo(res as ISourceCoverage); setLoadingCoverage(false); } catch (error) {