Ultimate Parent UEI Name
Human-readable name of the vendor's ultimate parent entity. In FPDS vendor hierarchy data, this is the label associated with the ultimate parent UEI and identifies the top-level owning organization behind the reporting entity.
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
- Aggregate obligations or awards by corporate parent
- Map subsidiary vendors to an ownership group
- Support affiliation, concentration, and vendor network analysis
Common Mistakes
- Using the name as a unique key instead of the UEI
- Assuming the value is always standardized across records
Query Guidance
Use this field for display, filtering, and parent-level rollups after cleaning text variants; join or de-duplicate on the paired UEI when possible. In SQL, group by a normalized version of the name only when a unique parent identifier is unavailable, and prefer COALESCE with the parent UEI name from related records to handle nulls.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEIName AS ultimate_parent_u_e_i_name
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEIName IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEIName AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEIName 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.