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.

Family: IDV
Category: Vendor Site Details
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isNonprofitOrganization
Title
Is Nonprofit Organization
FPDS Path
IDV/vendor/vendorSiteDetails/vendorOrganizationFactors/profitStructure/isNonprofitOrganization
Description
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.
Business Meaning
This field helps analysts segment awards by vendor ownership or tax status, which can affect socioeconomic analysis, competition patterns, and policy reporting. It is useful when reviewing how nonprofit entities participate in federal procurement and whether procurement outcomes differ by vendor type.
Example Value
0
Observed Non-Null Count
5,862,557

FPDS Compare

FPDS Query Variable
content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isNonprofitOrganization
FPDS XML Path
IDV/vendor/vendorSiteDetails/vendorOrganizationFactors/profitStructure/isNonprofitOrganization
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/vendor/vendorSiteDetails/vendorOrganizationFactors/profitStructure/isNonprofitOrganization' into the SQL-ready variable 'content__IDV__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isNonprofitOrganization'.

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.