@duckduckgo/content-scope-scripts
    Preparing search index...

    The person whose records we're searching for. Used to build search URLs and to match scraped profiles. Brokers may reference additional flat keys (e.g. city, state) in URL templates, so extra properties are allowed.

    interface UserProfile {
        addresses?: Address[];
        age?: string | number;
        birthYear?: string | number;
        city?: string;
        firstName?: string;
        fullName?: string;
        id?: string;
        lastName?: string;
        middleName?: string;
        phone?: string;
        state?: string;
        street?: string;
        suffix?: string;
        zip?: string;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    addresses?: Address[]
    age?: string | number
    birthYear?: string | number
    city?: string
    firstName?: string
    fullName?: string
    id?: string
    lastName?: string
    middleName?: string
    phone?: string
    state?: string

    two-letter state abbreviation

    street?: string
    suffix?: string
    zip?: string