Ultimate Parent UEI Name
Human-readable name of the entity identified as the award recipient's ultimate parent in the UEI hierarchy. It is the label counterpart to the coded ultimate parent UEI information in the vendor site details structure.
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
- Link awards to a parent-company view for vendor concentration analysis
- Group subsidiary awards under a common corporate owner
- Validate and interpret the ultimate parent UEI identifier in FPDS records
Common Mistakes
- Using the name as a unique key instead of the UEI or another identifier
- Assuming the prime awardee name and ultimate parent name are always the same
Query Guidance
Use this field for display, filtering, or name-based rollups only after normalizing text. In SQL, join or group by the associated UEI field when possible, and use this column as a label in SELECT clauses rather than as the sole basis for deduplication or entity matching.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEIName AS ultimate_parent_u_e_i_name
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEIName IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEIName AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.