Is Other Not for Profit Organization

Boolean or coded flag indicating whether the vendor entity is classified as another nonprofit organization under the vendor's profit structure. It is a record-level attribute within Other Transaction Award vendor site details and reflects the system's classification for that vendor organization type.

Family: Other Transaction Award
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__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization
Title
Is Other Not for Profit Organization
FPDS Path
OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorOrganizationFactors/profitStructure/isOtherNotForProfitOrganization
Description
Boolean or coded flag indicating whether the vendor entity is classified as another nonprofit organization under the vendor's profit structure. It is a record-level attribute within Other Transaction Award vendor site details and reflects the system's classification for that vendor organization type.
Business Meaning
This field helps analysts identify awards involving nonprofit vendors that are not categorized as standard for-profit entities, which is useful for market segmentation, vendor-type profiling, and compliance or policy analysis. It can support reviews of award distribution across nonprofit versus commercial recipients and help isolate transactions involving mission-driven or tax-exempt organizations.
Example Value
0
Observed Non-Null Count
38,894

FPDS Compare

FPDS Query Variable
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization
FPDS XML Path
OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorOrganizationFactors/profitStructure/isOtherNotForProfitOrganization
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorOrganizationFactors/profitStructure/isOtherNotForProfitOrganization' into the SQL-ready variable 'content__OtherTransactionAward__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

  • Identify awards to nonprofit vendor organizations
  • Segment vendor population by profit structure
  • Support compliance or policy reporting on recipient type

Common Mistakes

  • Assuming 0 always means false without checking the dataset's coding convention
  • Using this field as a substitute for the vendor's full legal or tax status

Query Guidance

Use explicit predicates such as WHERE field = 1 or WHERE field IN ('Y','1') only after confirming the encoded affirmative value in your extract. Include null-handling logic if you need to distinguish unknown from false, and combine with other vendor organization factor fields when building recipient-type classifications.

SQL Examples

Preview values

SELECT
    content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization AS is_other_not_for_profit_organization
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization IS NOT NULL
LIMIT 25

Flag distribution

SELECT
    content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isOtherNotForProfitOrganization AS flag_value,
    count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.