Vendor Legal Organization Name
Human-readable legal name of the vendor recorded on an Other Transaction IDV contract detail. This is a label field that identifies the supplier entity associated with the award record, not a coded identifier.
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
- Summarizing awards by vendor name
- Joining to vendor reference tables for normalization
- Reviewing whether a known contractor appears in Other Transaction IDV records
Common Mistakes
- Treating the name as a unique vendor identifier
- Assuming different spellings or punctuation represent different entities
Query Guidance
Select and group by this field only for descriptive reporting. For reliable joins or deduplication, normalize the text and combine it with vendor identifiers or other stable keys; use exact-match filters cautiously because legal names may vary across records.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorHeader__vendorLegalOrganizationName AS vendor_legal_organization_name
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorHeader__vendorLegalOrganizationName IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorHeader__vendorLegalOrganizationName AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.