Vendor Name
Human-readable vendor name recorded in the FPDS IDV vendor header. It is the label associated with the awardee or vendor entity in the record, typically used to identify the contractor in plain text.
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
- grouping awards by vendor name
- matching FPDS records to external vendor master data
- reviewing award concentration by contractor
Common Mistakes
- treating the name as a unique vendor identifier
- assuming identical-looking names always represent the same legal entity
Query Guidance
Select and group on this field for vendor-level summaries, but normalize case and whitespace and use it alongside vendor IDs or other identifying fields when joining or deduplicating. Example: GROUP BY content__IDV__vendor__vendorHeader__vendorName; avoid using it as the only join key.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorHeader__vendorName AS vendor_name
FROM fpds.data
WHERE content__IDV__vendor__vendorHeader__vendorName IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorHeader__vendorName AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.