Is Foundation
Boolean or coded flag indicating whether the vendor organization is a foundation. It identifies the vendor's line-of-business classification at the site level in the FPDS vendor hierarchy.
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 vendor population by organizational type
- Support compliance or recipient-type analysis
Common Mistakes
- Assuming 0 and 1 have the same meaning across all FPDS extracts without checking the code set
- Using this field alone to infer tax status, nonprofit status, or legal form
Query Guidance
Use explicit value checks based on the observed coding in your table, for example WHERE isFoundation = 1 or WHERE isFoundation IN ('Y','Yes'). If the column is stored as text, normalize values before analysis and verify whether nulls indicate missing, unknown, or not reported.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isFoundation AS is_foundation
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isFoundation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorLineOfBusiness__isFoundation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.