Email Address

Stores the email address recorded in the IDV Contract Marketing section. It is a string field intended to capture contact routing information associated with the contract marketing record.

Family: IDV
Category: Contract Marketing
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__contractMarketingData__emailAddress
Title
Email Address
FPDS Path
IDV/contractMarketingData/emailAddress
Description
Stores the email address recorded in the IDV Contract Marketing section. It is a string field intended to capture contact routing information associated with the contract marketing record.
Business Meaning
This field helps analysts identify or link the contracting or marketing contact associated with an IDV record. It can support outreach, vendor communication review, and validation of contact completeness in procurement datasets.
Example Value
_2124749677_MTQwMzA1OTYzNwABAgMEBQYHCAkKCwwNDg8QBVJhjDkpynwlAm7hbfXrSvJHhAnw
Observed Non-Null Count
2,367,993

FPDS Compare

FPDS Query Variable
content__IDV__contractMarketingData__emailAddress
FPDS XML Path
IDV/contractMarketingData/emailAddress
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/contractMarketingData/emailAddress' into the SQL-ready variable 'content__IDV__contractMarketingData__emailAddress'.

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building

Common Usage

  • Contact identification and outreach lists
  • Data quality checks for missing or malformed contact information
  • Grouping records by marketing contact email

Common Mistakes

  • Assuming the email is always current or authoritative
  • Using email as a unique identifier without deduplication or normalization

Query Guidance

Select and filter on this field as a string, using exact-match or pattern-based predicates after normalizing case and trimming whitespace. In SQL, validate format where needed and avoid joining solely on raw email without cleaning for nulls, aliases, and inconsistent casing.

SQL Examples

Preview values

SELECT
    content__IDV__contractMarketingData__emailAddress AS email_address
FROM fpds.data
WHERE content__IDV__contractMarketingData__emailAddress IS NOT NULL
LIMIT 25

Top values

SELECT
    content__IDV__contractMarketingData__emailAddress AS value,
    count() AS record_count
FROM fpds.data
WHERE content__IDV__contractMarketingData__emailAddress IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25

Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.