Vendor Alternate Site Code
Code identifying an alternate vendor site location recorded for the award. It represents a site-level identifier associated with the vendor’s place of performance, billing, or administrative location when more than one site may exist.
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
- vendor site-level aggregation
- location-based spend analysis
- matching awards to vendor site reference data
Common Mistakes
- treating the code as a street address or city
- grouping site codes without checking whether the same vendor uses multiple formats or reference systems
Query Guidance
Use this field as a grouping or join key only when you need site-level granularity. In SQL, filter for non-null values, normalize casing/spacing if needed, and join to a vendor site lookup to resolve the code to a readable site name or address; avoid using it as a proxy for vendor identity at the parent-vendor level.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorAlternateSiteCode AS vendor_alternate_site_code
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorAlternateSiteCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorAlternateSiteCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.