Is Federally Funded Research and Development Corp
Boolean indicator showing whether the vendor is a federally funded research and development corporation (FFRDC) in the vendor business type hierarchy for this Other Transaction IDV record. A value of 1/true means the vendor site is identified as an FFRDC; 0/false means it is not, and null may indicate the attribute was not reported.
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 FFRDC vendors
- Segment research-oriented vendor populations
- Support compliance and oversight reviews
Common Mistakes
- Assuming 0 means the vendor is not an FFRDC in all source contexts without checking for null or missing data
- Using this flag as a proxy for funding amount, research intensity, or award type
Query Guidance
Use this field in WHERE clauses to isolate FFRDC records, for example `= 1` or `IS TRUE` depending on the load format. When comparing populations, include explicit handling for nulls and confirm whether the source encodes the flag as boolean, numeric, or text before joining or aggregating.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp AS is_federally_funded_research_and_development_corp
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.