Street Address2
Second address line for the vendor location in the IDV vendor site record. It typically captures supplemental location detail such as suite, floor, building, or mail stop when the primary street address is not sufficient.
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
- Address normalization and vendor matching
- Vendor location quality checks
- Supplemental filtering within a known site address
Common Mistakes
- Using it as a standalone location key
- Assuming consistent formatting or standardized abbreviations
Query Guidance
Filter with exact or pattern matching only when needed for address cleanup or deduplication, and combine with other location fields for joins and grouping. In SQL, use NULL/empty checks carefully because many records may not populate this line; avoid using it as a primary grouping dimension unless you are explicitly analyzing site-level address detail.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress2 AS street_address2
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress2 IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress2 AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress2 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.