Is Foundation
Boolean or coded flag indicating whether the vendor site is classified as a foundation. In FPDS, this is a categorical attribute attached to the vendor line-of-business details for the award record. A value of 0 typically means the condition is not met; other observed values should be checked against the source code set.
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 foundation vendors
- Segment spend by vendor organizational type
- Support compliance or nonprofit-focused reporting
Common Mistakes
- Assuming 0 always means false without checking the data type and code set
- Using this field as a proxy for IRS tax status or legal nonprofit classification
Query Guidance
Use it in WHERE clauses for filtering, for example `WHERE isFoundation = 1` or the equivalent coded true value in the dataset. If the column is stored as text or mixed codes, normalize values first and confirm distinct observed values before grouping or counting.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isFoundation AS is_foundation
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isFoundation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isFoundation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isFoundation 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.