Street Address2
Second line of the vendor location street address recorded in the Other Transaction IDV vendor site details. It stores supplemental address text such as suite, floor, building, or unit information rather than the primary street address.
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
- Differentiate vendor sites at the same street address
- Support address cleaning and deduplication
- Enhance vendor location matching and geocoding
Common Mistakes
- Assuming it is always populated or standardized
- Using it alone to identify a vendor location without the rest of the address
Query Guidance
Use this field as a text attribute in SELECT and WHERE clauses for address-based filters, standardization, or matching. In SQL, combine it with other vendor location fields for grouping or joins, and use NULL/blank checks rather than equality tests when assessing completeness.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress2 AS street_address2
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress2 IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress2 AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.