Vendor Legal Organization Name
Human-readable legal name of the vendor organization recorded in the award. It identifies the entity as it appears in FPDS and is used as the label for the vendor record rather than a code.
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 and award concentration analysis
- Entity matching and vendor profile review
- Reporting award recipients in human-readable form
Common Mistakes
- Treating the name as a unique identifier across all awards
- Assuming exact string matches capture all records for the same vendor
Query Guidance
Select and group by this field only when you want readable vendor rollups; for analyst-grade aggregation, normalize case and whitespace and combine with vendor IDs where available. In SQL, use it for display, filtering, and joins only as a fallback when a more stable identifier is unavailable.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorHeader__vendorLegalOrganizationName AS vendor_legal_organization_name
FROM fpds.data
WHERE content__award__vendor__vendorHeader__vendorLegalOrganizationName IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorHeader__vendorLegalOrganizationName AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorHeader__vendorLegalOrganizationName 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.