Street Address1

This field contains the first street-address line for the primary consortia member's location in an Other Transaction IDV record. It captures the street portion of the address only, not the full mailing address or city/state/ZIP components.

Family: Other Transaction IDV
Category: General
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__streetAddress1
Title
Street Address1
FPDS Path
OtherTransactionIDV/contractDetail/consortiaInformation/primaryConsortiaLocation/streetAddress1
Description
This field contains the first street-address line for the primary consortia member's location in an Other Transaction IDV record. It captures the street portion of the address only, not the full mailing address or city/state/ZIP components.
Business Meaning
The address helps identify where the primary consortia member is physically located, which can support geographic analysis, vendor clustering, regional concentration reviews, and validation of awardee identity. It is also useful when analysts need to distinguish similarly named entities or assess whether consortia members are local, national, or distributed across regions.
Example Value
5775 MOREHOUSE DR
Observed Non-Null Count
294

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__streetAddress1
FPDS XML Path
OtherTransactionIDV/contractDetail/consortiaInformation/primaryConsortiaLocation/streetAddress1
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/consortiaInformation/primaryConsortiaLocation/streetAddress1' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__streetAddress1'.

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building

Common Usage

  • Geocoding or location normalization
  • Entity matching and vendor disambiguation
  • Regional concentration and footprint analysis

Common Mistakes

  • Using the street line by itself as a unique location identifier
  • Assuming the value is standardized or complete across all records

Query Guidance

Use this field as a text attribute for filtering, pattern matching, and address normalization. In SQL, apply TRIM/UPPER for comparisons, and combine it with related location fields when grouping or deduplicating; avoid exact joins on this field alone unless the source has been standardized.

SQL Examples

Preview values

SELECT
    content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__streetAddress1 AS street_address1
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__streetAddress1 IS NOT NULL
LIMIT 25

Top values

SELECT
    content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__streetAddress1 AS value,
    count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__consortiaInformation__primaryConsortiaLocation__streetAddress1 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.