Is Nonprofit Organization
Boolean or coded flag indicating whether the vendor organization is a nonprofit entity for this Other Transaction IDV record. It captures the nonprofit status reported in the vendor organization factors under profit structure, and may appear as a coded value rather than plain text.
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 to nonprofit vendors
- Segment vendor population by organizational type
- Compare award volumes and obligations by nonprofit status
Common Mistakes
- Assuming all non-1 values mean false without checking the code set
- Using the field alone to infer tax or legal status beyond what the record reports
Query Guidance
In SQL, standardize the raw flag first, then filter explicitly on the affirmative value after confirming the code set used in your extract. Example pattern: WHERE isNonprofitOrganization IN ('1','Y',1,TRUE) after validating the data type; use COALESCE only if you intentionally want to collapse missing values into a default category.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isNonprofitOrganization AS is_nonprofit_organization
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isNonprofitOrganization IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isNonprofitOrganization AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isNonprofitOrganization 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.