Street Address2
Text field containing the vendor location's second street address line, such as a suite, mail stop, building identifier, or post office box. It complements Street Address 1 and is part of the award-level vendor site location details.
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
- supplementing vendor address parsing and normalization
- supporting vendor entity matching and deduplication
- improving location-based filtering and reporting
Common Mistakes
- assuming the field always contains a second street line rather than a mailing or office identifier
- using it alone to geocode or classify vendor location
Query Guidance
Use it as a nullable text attribute in SELECT, WHERE, and GROUP BY only when you need address-detail slicing. For address matching or geocoding, concatenate with other vendor location fields and normalize whitespace, punctuation, and abbreviations before comparison.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__streetAddress2 AS street_address2
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__streetAddress2 IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__streetAddress2 AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.