Is Federally Funded Research and Development Corp
Boolean or coded flag indicating whether the vendor’s site is classified as a Federally Funded Research and Development Corporation (FFRDC). It is part of vendor business type attributes at the vendor site level and reflects a specific federal-government-related organizational 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
- Filter awards or vendor records to isolate FFRDC-related activity
- Segment procurement spend by vendor organizational status
- Support compliance, policy, and research-institution analyses
Common Mistakes
- Assuming the flag applies to the entire parent vendor record rather than the specific site-level business type
- Filtering on numeric values without verifying whether the extract uses boolean, code, or text representations
Query Guidance
Use this field in WHERE clauses to select records where the flag indicates true/yes, but verify the encoded representation in your extract first. When joining or aggregating, keep the vendor site granularity in mind and inspect companion description fields or source values if the flag appears as a code rather than a native boolean.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp AS is_federally_funded_research_and_development_corp
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederallyFundedResearchAndDevelopmentCorp AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.