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.
FPDS Compare
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.