Vendor Alternate Site Code
A coded identifier for an alternate vendor site associated with the contractor in the Other Transaction IDV record. It distinguishes a specific vendor location or site when a vendor has more than one registered or usable site in FPDS.
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
- Linking FPDS awards to vendor master or entity-resolution tables
- Analyzing awards by contractor site or location
- Identifying multiple sites under the same vendor entity
Common Mistakes
- Treating the code as a human-readable site name or address
- Using it as a proxy for legal entity or parent company
Query Guidance
Select and group by this field when analyzing site-level contractor activity; preserve it as a string to avoid losing leading zeros or formatting. Join to reference tables only if a matching site-code dimension exists, and pair it with vendor name or other site fields to validate uniqueness and meaning.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorAlternateSiteCode AS vendor_alternate_site_code
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorAlternateSiteCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorAlternateSiteCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorAlternateSiteCode 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.