Is Federally Funded Research and Development Corp
Boolean or coded flag indicating whether the vendor is a federally funded research and development corporation (FFRDC). It records the vendor site's business type within the federal government-related vendor classification 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 involving FFRDC vendors
- Segment obligations by vendor organizational type
- Support compliance or policy reviews for research-related awards
Common Mistakes
- Treating 0 as missing instead of a negative/false value
- Assuming the flag alone proves the legal status of the vendor without corroborating vendor details
Query Guidance
Filter directly on the flag value using the dataset’s stored coding convention, for example `WHERE isFederallyFundedResearchAndDevelopmentCorp = 1` for true-like rows or `= 0` for false-like rows. If the extract uses text or mixed encodings, first inspect distinct values and join to any companion description field before applying a hard filter.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp AS is_federally_funded_research_and_development_corp
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp 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.