Organizational Type
Human-readable organization classification reported for the vendor site on an Other Transaction Award record. It identifies the vendor's organizational type, such as a corporate or tax-exempt form, rather than a transaction attribute.
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 organization type
- Filtering supplier populations for compliance or portfolio analysis
- Comparing award activity across corporate, nonprofit, and other entity types
Common Mistakes
- Confusing this with vendor name, socioeconomic status, or ownership type
- Assuming exact spelling or casing is normalized across all records
Query Guidance
Use it as a dimension field in GROUP BY, DISTINCT, and WHERE clauses, but normalize values first if the dataset contains variants such as mixed case or alternate labels. When joining or filtering, prefer this field for descriptive analysis only; if a coded companion field exists, keep the code as the primary key and the description as display text.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__organizationalType AS organizational_type
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__organizationalType IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__organizationalType AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.