UEI Legal Business Name
Human-readable legal business name recorded for the vendor’s UEI. It identifies the legal entity associated with the Unique Entity Identifier in the award record and functions as the descriptive label for the vendor’s coded identity.
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
- Display the vendor’s legal name in award extracts and dashboards
- Group awards by legal entity for vendor-level spend analysis
- Crosswalk UEI-based records to vendor master data
Common Mistakes
- Treating the name as a unique identifier instead of a label
- Assuming formatting consistency across records or time
Query Guidance
Select and display this field when you need the vendor’s legal name, but join and aggregate on UEI or other identifiers for reliable vendor-level analysis. In SQL, standardize the text before comparison, for example with TRIM and UPPER, and avoid using it alone as a join key.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__UEILegalBusinessName AS u_e_i_legal_business_name
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__UEILegalBusinessName IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__UEILegalBusinessName AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__entityIdentifiers__vendorUEIInformation__UEILegalBusinessName 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.