Is for Profit Organization
Boolean or coded flag indicating whether the vendor organization is classified as for-profit in the Other Transaction IDV record. It captures the vendor’s profit structure at the vendor-site level for this award record.
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
- Segment awards by vendor organizational type
- Exclude or isolate non-profit vendors for targeted analysis
- Support compliance and vendor mix reporting
Common Mistakes
- Assuming any non-null value means yes without checking the code set
- Using this field as a substitute for legal entity classification across all FPDS records
Query Guidance
Filter on the field’s true/yes code or boolean value after confirming the dataset’s encoded representation. Use CASE logic to normalize coded values into a standard binary indicator, and join to companion description fields only when needed for validation or reporting.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isForProfitOrganization AS is_for_profit_organization
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isForProfitOrganization IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorOrganizationFactors__profitStructure__isForProfitOrganization AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.