Table of Contents

Enum PiiExtraction.PiiEntityType

Namespace
LMKit.TextAnalysis
Assembly
LM-Kit.NET.dll

Standard set of entity types for PII Extraction/Recognition.

public enum PiiExtraction.PiiEntityType

Fields

Person = 0

A person's full name (e.g. "Loïc Carrère").

EmailAddress = 1

An email address (e.g. "user@example.com").

PhoneNumber = 2

A phone number (e.g. "+1-650-555-1234").

PostalAddress = 3

A postal or street address (e.g. "1600 Amphitheatre Parkway, Mountain View, CA").

Url = 4

A URL or web address (e.g. "https://lm-kit.com").

IpAddress = 5

An IP address (e.g. "192.168.0.1").

DateOfBirth = 6

A date of birth (e.g. "01/15/1980" or "1980-01-15").

SocialSecurityNumber = 7

A U.S. Social Security Number (e.g. "123-45-6789").

CreditCardNumber = 8

A credit card number (e.g. "4111 1111 1111 1111").

BankAccountNumber = 9

A bank account number (e.g. "000123456789").

Other = 10

Any other type of PII not covered by the existing categories.

Custom = 11

A custom, user-defined PII type not included in the standard set.