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.
FPDS Compare
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.