Is for Profit Organization
Boolean or coded flag indicating whether the vendor is classified as a for-profit organization in the Other Transaction Award record. The value reflects the vendor organization factor stored at the contract detail level and is used to identify the entity's profit status.
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 awards to for-profit vendors
- Compare award volumes and obligations by vendor type
- Support compliance and segmentation analysis
Common Mistakes
- Interpreting the flag as a financial profit metric
- Assuming blank, null, and coded false values have the same meaning
Query Guidance
Use equality predicates on the observed true/false or code value for this field, and standardize null handling before analysis. If the dataset exposes both a code and a description, join or inspect the paired description to confirm the intended classification before aggregating.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isForProfitOrganization AS is_for_profit_organization
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isForProfitOrganization IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isForProfitOrganization AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isForProfitOrganization 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.