Street Address
Street address of the vendor location recorded in the award's vendor site details. It identifies the specific physical or mailing location associated with the vendor site and is stored as a free-text string.
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 location disambiguation
- Geographic grouping with city, state, and ZIP
- Address-based entity matching and data quality checks
Common Mistakes
- Assuming it is a standardized geocoded address
- Using the street address alone to identify a unique vendor entity
Query Guidance
Use for text filtering, grouping, and address comparisons, but pair with city, state, ZIP, and vendor identifiers for accurate joins and aggregations. In SQL, normalize case and trim whitespace before matching, and avoid exact-match logic unless the source data has been standardized.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__streetAddress AS street_address
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__streetAddress IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__streetAddress AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__streetAddress 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.