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.
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
- 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.