Skip to main content

InfoTypes Reference

This reference guide provides a comprehensive list of all sensitive data types (InfoTypes) that can be detected by Javelin's data protection system. These InfoTypes are used in templates to define which types of sensitive information to detect and how to handle them.

Personal Information

Information that can identify an individual person.

InfoTypeDescription
EMAIL_ADDRESSEmail addresses in various formats
PHONE_NUMBERPhone numbers including international formats
PERSON_NAMEIndividual names including first, last, and full names
STREET_ADDRESSPhysical street addresses

Government IDs & Documentation

Government-issued identification numbers and official documents.

InfoTypeDescription
US_SOCIAL_SECURITY_NUMBERUS Social Security Numbers (SSN)
US_INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBERUS Individual Taxpayer Identification Numbers (ITIN)
US_DRIVERS_LICENSE_NUMBERUS driver's license numbers
US_PASSPORTUS passport numbers
PASSPORTGeneral passport numbers
US_EMPLOYER_IDENTIFICATION_NUMBERUS Employer Identification Numbers (EIN)
US_ADOPTION_TAXPAYER_IDENTIFICATION_NUMBERUS Adoption Taxpayer Identification Numbers (ATIN)
US_PREPARER_TAXPAYER_IDENTIFICATION_NUMBERUS Preparer Taxpayer Identification Numbers (PTIN)

Financial Information

Financial account numbers, credit cards, and payment-related data.

InfoTypeDescription
CREDIT_CARD_NUMBERCredit card numbers from major issuers
CREDIT_CARD_TRACK_NUMBERMagnetic stripe track data from credit cards

Medical & Healthcare

Medical records, healthcare identifiers, and health-related information.

InfoTypeDescription
MEDICAL_RECORD_NUMBERMedical record identification numbers
MEDICAL_TERMMedical terminology and health-related terms
US_MEDICARE_BENEFICIARY_ID_NUMBERUS Medicare Beneficiary Identifier (MBI) numbers
US_HEALTHCARE_NPIUS National Provider Identifier (NPI) numbers
US_DEA_NUMBERUS Drug Enforcement Administration (DEA) numbers

Authentication & Security

Credentials, tokens, and security-related information.

InfoTypeDescription
AUTH_TOKENGeneric authentication tokens
AWS_CREDENTIALSAmazon Web Services access keys and credentials
AZURE_AUTH_TOKENMicrosoft Azure authentication tokens
BASIC_AUTH_HEADERHTTP Basic Authentication headers
GCP_API_KEYGoogle Cloud Platform API keys
GCP_CREDENTIALSGoogle Cloud Platform credentials
JSON_WEB_TOKENJWT tokens used for authentication
ENCRYPTION_KEYCryptographic encryption keys
OAUTH_CLIENT_SECRETOAuth client secret keys
PASSWORDPasswords and passphrases
SSL_CERTIFICATESSL/TLS certificates
STORAGE_SIGNED_POLICY_DOCUMENTCloud storage signed policy documents
STORAGE_SIGNED_URLPre-signed URLs for cloud storage
WEAK_PASSWORD_HASHWeak or compromised password hashes
XSRF_TOKENCross-Site Request Forgery (CSRF) tokens

Network & Technical

Network identifiers, cookies, and technical system information.

InfoTypeDescription
MAC_ADDRESS_LOCALMedia Access Control (MAC) addresses
HTTP_COOKIEHTTP cookies containing session or tracking data

Vehicle Information

Vehicle-related identification numbers.

InfoTypeDescription
VEHICLE_IDENTIFICATION_NUMBERVehicle Identification Numbers (VIN)

Usage in Templates

These InfoTypes are used in data protection templates to specify which types of sensitive data to detect. Here's an example of how to use them:

{
"infoTypes": [
{"name": "EMAIL_ADDRESS"},
{"name": "PHONE_NUMBER"},
{"name": "CREDIT_CARD_NUMBER"},
{"name": "US_SOCIAL_SECURITY_NUMBER"}
]
}

Custom InfoTypes

In addition to the built-in InfoTypes listed above, you can also create custom InfoTypes using:

  • Regular Expressions: Define custom patterns to detect specific data formats
  • Dictionary-based Detection: Use keyword lists to detect reserved or sensitive terms

Example of custom InfoTypes:

{
"infoTypes": [
{
"name": "OPENAI_API_KEY",
"regex": "sk-[a-zA-Z0-9]{48}"
},
{
"name": "RESERVED_KEYWORD",
"dictionary": {
"wordList": ["confidential", "secret", "private", "classified", "restricted"]
}
}
]
}