UEI
Unique Entity Identifier for the vendor or other transaction participant recorded on the award record. It is the government-used identifier that distinguishes the specific legal entity and supports linkage across procurement systems and award records.
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 spend rollups and award counts by entity
- Cross-award linkage and duplicate vendor detection
- Filtering records for a specific contractor or supplier
Common Mistakes
- Assuming the UEI is interchangeable with vendor name or CAGE/NCAGE without validation
- Using raw UEI values for analysis without handling nulls, format inconsistencies, or historical entity changes
Query Guidance
Use this field as a join key and filter key in SQL, for example in GROUP BY, DISTINCT, and WHERE clauses. Normalize case and trim whitespace if needed, and avoid substring or pattern matching unless you are explicitly searching for partial identifiers.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__UEI AS u_e_i
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__UEI IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__UEI AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__UEI 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.