Street Address3

This field stores the third street-address line for the vendor location in the IDV vendor site details structure. It is a free-text address component used to capture additional location information when the address cannot be fully represented on the earlier address lines.

Family: IDV
Category: Vendor Site Details
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress3
Title
Street Address3
FPDS Path
IDV/vendor/vendorSiteDetails/vendorLocation/streetAddress3
Description
This field stores the third street-address line for the vendor location in the IDV vendor site details structure. It is a free-text address component used to capture additional location information when the address cannot be fully represented on the earlier address lines.
Business Meaning
Vendor location fields help analysts standardize supplier identity, deduplicate addresses, and assess geographic distribution of awardees. Street Address3 can improve matching and geocoding when vendors use multi-line mailing or physical addresses, especially for site-level analysis and entity resolution.
Example Value
Aberdeen
Observed Non-Null Count
217

FPDS Compare

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress3
FPDS XML Path
IDV/vendor/vendorSiteDetails/vendorLocation/streetAddress3
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/vendor/vendorSiteDetails/vendorLocation/streetAddress3' into the SQL-ready variable 'content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress3'.

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building
  • Contractor profiling and competitor analysis

Common Usage

  • vendor address parsing and normalization
  • entity matching and duplicate vendor detection
  • site-level geographic analysis

Common Mistakes

  • treating it as a coded field instead of free text
  • using it as a primary geographic key without the rest of the address

Query Guidance

Select and concatenate this field with the other vendor location fields when building a complete address, and filter for non-null values when checking address completeness. For grouping or deduplication, normalize text and combine it with city, state, ZIP, and country rather than aggregating on this field alone.

SQL Examples

Preview values

SELECT
    content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress3 AS street_address3
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress3 IS NOT NULL
LIMIT 25

Top values

SELECT
    content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress3 AS value,
    count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress3 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.