Organizational Type
Human-readable organizational form reported for the vendor site, such as partnership, corporation, or sole proprietorship. It identifies the vendor’s legal/organizational structure rather than a measure of performance or size.
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 segmentation by legal structure
- Filtering awards for market research or supplier diversity analysis
- Grouping and comparing obligation totals by organizational form
Common Mistakes
- Assuming the value indicates business size, ownership, or socioeconomic status
- Aggregating without normalizing spelling variants or unexpected codes
Query Guidance
Use it as a grouping or filter column in WHERE and GROUP BY clauses after normalizing case and trimming whitespace. If the dataset includes coded-and-described pairs elsewhere, prefer the human-readable label for reporting and verify distinct observed values before building joins or dashboards.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__organizationalType AS organizational_type
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__organizationalType IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__organizationalType AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.