Is Other Not for Profit Organization
Boolean or coded indicator showing whether the vendor is classified as another type of nonprofit organization within the vendor organization factors for the award. It records the presence of this nonprofit status on the FPDS record rather than a narrative description.
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
- Filter awards involving nonprofit vendors
- Segment vendor populations by organization type
- Support compliance or policy reporting on vendor classifications
Common Mistakes
- Assuming 0 always means false without checking dataset-specific coding
- Using this field alone to infer all nonprofit status categories
Query Guidance
Use explicit value checks based on the observed encoding in your table, for example WHERE isOtherNotForProfitOrganization = 1 or = 'Y' depending on the source. Combine with related organization-factor fields and handle null separately if you need a complete denominator for prevalence or coverage analysis.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization AS is_other_not_for_profit_organization
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.