Street Address
Text field containing the street-level mailing or physical address associated with the vendor location recorded on the IDV. It identifies the specific address line for that site, such as a building number, street name, and directional or unit information when present.
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 site deduplication and address normalization
- Grouping awards by specific vendor location
- Geographic or place-based procurement analysis
Common Mistakes
- Using the street line alone as a unique vendor identifier
- Comparing raw text without standardizing abbreviations or formatting
Query Guidance
Use this field for filtering, display, and text normalization, not for joins. In SQL, trim and standardize the value before grouping or matching, and combine it with city, state, ZIP, and vendor identifiers when identifying a location.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress AS street_address
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLocation__streetAddress AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.