Vendor Name
Human-readable name of the awarded vendor recorded in the FPDS award vendor header. It is the label associated with the vendor entity in the award record and identifies the contractor or grantee by name rather than by code.
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-level spend summaries
- award search and reporting
- crosswalking records to contractor entities
Common Mistakes
- treating the name as a stable unique key
- assuming different spellings always represent different vendors
Query Guidance
Select and group by this field for readable vendor rollups, but join and deduplicate using vendor identifiers when available. In SQL, normalize case and punctuation only for reporting or fuzzy matching, not for authoritative entity matching.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name
FROM fpds.data
WHERE content__award__vendor__vendorHeader__vendorName IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorHeader__vendorName AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorHeader__vendorName 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.