Vendor Name
Human-readable name of the vendor associated with the Other Transaction award record. This is the label shown for the vendor entity in the contract detail section, rather than a numeric identifier or classification 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 and award rollups
- Matching awards to known suppliers or parent organizations
- Searching and filtering transaction records by recipient name
Common Mistakes
- Treating the name string as a unique vendor identifier
- Assuming different spellings or abbreviations represent different entities
Query Guidance
Select and group by this field for display or descriptive reporting, but join and deduplicate using vendor IDs or other persistent identifiers where possible. In SQL, normalize case and punctuation if performing name-based matching, and avoid using exact string equality as the only vendor matching rule.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorHeader__vendorName AS vendor_name
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorHeader__vendorName IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorHeader__vendorName AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.