Ultimate Parent UEI
The UEI for the ultimate parent entity of the vendor associated with the record. It identifies the highest-level parent organization in the vendor's ownership structure, not the immediate contracting 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 awards or obligations by ultimate parent organization
- Link subsidiaries to a common corporate parent for concentration analysis
- Deduplicate vendor activity across multiple vendor sites or award records
Common Mistakes
- Confusing the ultimate parent UEI with the awardee or immediate vendor site UEI
- Using it as a descriptive label instead of a coded identifier
Query Guidance
Use it as a grouping and join key with exact equality comparisons, and filter out null or empty values before rollup analysis. In SQL, count distinct ultimate parent UEI values for parent-level vendor counts, and pair it with vendor names or UEI description fields when validating coded records.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEI AS ultimate_parent_u_e_i
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEI IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEI AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEI 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.