Is Nonprofit Organization
Boolean or coded flag indicating whether the vendor is identified as a nonprofit organization in the IDV record. It represents a vendor organization characteristic tied to the site-level profit structure classification.
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 IDVs awarded to nonprofit vendors
- Segment vendor population for policy or market-share analysis
- Compare award patterns between nonprofit and for-profit organizations
Common Mistakes
- Assuming null or blank means false instead of missing or unreported
- Using the field without checking whether the extract stores boolean values as numeric codes or text
Query Guidance
Use it as a filter or grouping flag in WHERE, CASE, or GROUP BY clauses after confirming the stored code values in your extract. For example, test both numeric and text representations if the schema is inconsistent, and exclude nulls explicitly when measuring prevalence.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isNonprofitOrganization AS is_nonprofit_organization
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isNonprofitOrganization IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isNonprofitOrganization AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.