Organizational Type
Human-readable label for the vendor’s organizational form at the site level, such as corporate, nonprofit, or other entity type. It describes the organization classification associated with the vendor record rather than the contract action itself.
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
- grouping awards by vendor organizational form
- filtering for nonprofit or corporate vendors
- profiling vendor populations in spend analysis
Common Mistakes
- assuming the value identifies legal entity status rather than the reported organization type
- joining on the raw text without normalizing variant labels
Query Guidance
Use this field for GROUP BY, DISTINCT, and WHERE filters after normalizing case and whitespace; if a coded counterpart exists, prefer that code for joins and use this field for display. When multiple spellings occur, map observed values to a controlled category table before aggregation.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__organizationalType AS organizational_type
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__organizationalType IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__organizationalType AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__organizationalType 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.