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.

Family: Other Transaction 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__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization
Title
Is Other Not for Profit Organization
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorOrganizationFactors/profitStructure/isOtherNotForProfitOrganization
Description
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.
Business Meaning
This field helps analysts identify awards made to nonprofit entities that do not fall into more specific nonprofit categories, supporting vendor segmentation, socio-economic analysis, and compliance reviews. It can affect counts, obligated dollars, and concentration analysis when distinguishing nonprofit vendors from for-profit organizations.
Example Value
0
Observed Non-Null Count
13,417

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization
FPDS XML Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorOrganizationFactors/profitStructure/isOtherNotForProfitOrganization
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorOrganizationFactors/profitStructure/isOtherNotForProfitOrganization' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization'.

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.