Street Address2

Second line of the vendor location street address recorded in the Other Transaction IDV vendor site details. It stores supplemental address text such as suite, floor, building, or unit information rather than the primary street address.

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

Variable Overview

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress2
Title
Street Address2
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorLocation/streetAddress2
Description
Second line of the vendor location street address recorded in the Other Transaction IDV vendor site details. It stores supplemental address text such as suite, floor, building, or unit information rather than the primary street address.
Business Meaning
This field helps identify and distinguish vendor locations when the primary address is incomplete or shared across multiple sites. In procurement analysis, it supports vendor deduplication, geographic profiling, address standardization, and more accurate site-level reporting for awards and suppliers.
Example Value
2ND FL
Observed Non-Null Count
879

FPDS Compare

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

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building
  • Contractor profiling and competitor analysis

Common Usage

  • Differentiate vendor sites at the same street address
  • Support address cleaning and deduplication
  • Enhance vendor location matching and geocoding

Common Mistakes

  • Assuming it is always populated or standardized
  • Using it alone to identify a vendor location without the rest of the address

Query Guidance

Use this field as a text attribute in SELECT and WHERE clauses for address-based filters, standardization, or matching. In SQL, combine it with other vendor location fields for grouping or joins, and use NULL/blank checks rather than equality tests when assessing completeness.

SQL Examples

Preview values

SELECT
    content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress2 AS street_address2
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLocation__streetAddress2 IS NOT NULL
LIMIT 25

Top values

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