Is Foundation
Boolean/coded indicator showing whether the vendor entity associated with the award is classified as a foundation in FPDS vendor line-of-business data. The value typically signals a yes/no condition or related coded flag rather than a free-text description.
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 recipients
- Segment vendor portfolios by organization type
- Support nonprofit or institutional recipient analysis
Common Mistakes
- Assuming the flag describes the award rather than the vendor classification
- Filtering on a coded value without confirming the source code meaning
Query Guidance
Use this field in WHERE clauses to isolate foundation records after confirming the code mapping, for example `WHERE isFoundation = 1` or the source-specific equivalent. For reporting, group by the field only after standardizing nulls and code values, and join to any description field if the extract provides one.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isFoundation AS is_foundation
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isFoundation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isFoundation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.