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.

Family: Other Transaction Award
Category: Vendor Site Details
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress
Title
Street Address
FPDS Path
OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorLocation/streetAddress
Description
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.
Business Meaning
This field supports location-based analysis of vendor activity, including identifying where awarded entities are situated, standardizing addresses for deduplication, and linking vendor sites to geographies for market and concentration analysis. It is useful for understanding regional award patterns and for associating awards with a specific operational location when vendor records contain multiple sites.
Example Value
2221 S CLARK ST
Observed Non-Null Count
38,894

FPDS Compare

FPDS Query Variable
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress
FPDS XML Path
OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorLocation/streetAddress
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorLocation/streetAddress' into the SQL-ready variable 'content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress'.

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.