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.

Family: Other Transaction IDV
Category: Vendor Site Details
Data Type: string
Semantic Type: label
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEIName
Title
Ultimate Parent UEI Name
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/entityIdentifiers/vendorUEIInformation/ultimateParentUEIName
Description
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.
Business Meaning
This field helps analysts roll vendor activity up to the corporate parent, which is important for spend concentration analysis, market share calculations, socio-economic ownership checks, and identifying affiliated subsidiaries that may appear under different legal names. It also supports parent-level risk reviews and vendor relationship mapping across multiple awards.
Example Value
WATKINS TECHNICAL SERVICES INC
Observed Non-Null Count
13,400

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEIName
FPDS XML Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/entityIdentifiers/vendorUEIInformation/ultimateParentUEIName
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/entityIdentifiers/vendorUEIInformation/ultimateParentUEIName' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__ultimateParentUEIName'.

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.