Is Federally Funded Research and Development Corp
Boolean flag indicating whether the vendor entity is a Federally Funded Research and Development Corporation (FFRDC). A value of 1/true means the record identifies the vendor as an FFRDC; 0/false means it does not. This is a classification attribute within the vendor business type hierarchy, not a contract action status.
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
- Identify awards made to FFRDC vendors
- Separate FFRDC spend from commercial vendor spend
- Support R&D procurement and policy analysis
Common Mistakes
- Treating the flag as a description rather than a yes/no indicator
- Assuming null or missing values mean false without checking the extract
Query Guidance
Filter on the boolean value directly, for example WHERE isFederallyFundedResearchAndDevelopmentCorp = 1 or = true depending on the database type. For reporting, group by this flag only after normalizing NULLs and confirming whether the source uses 0/1, Y/N, or true/false encodings.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp AS is_federally_funded_research_and_development_corp
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.