Street Address
Street address of the vendor location recorded in the Other Transaction Award contract detail. It captures the specific mailing or physical address line for the site associated with the vendor record.
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 normalization and deduplication
- geographic mapping of award recipients
- address-based filtering or matching across datasets
Common Mistakes
- using the street line alone as a unique vendor identifier
- assuming the field is standardized or geocoded without cleanup
Query Guidance
Use this field as a text attribute for filtering, pattern matching, and address normalization. In SQL, apply TRIM/UPPER/REGEXP_REPLACE as needed, and join or group on a composite location key that includes city, state, and postal code rather than street address alone.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress AS street_address
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.