Is Community Development Corporation
Boolean or coded indicator showing whether the vendor is identified as a community development corporation (CDC) in the vendor line-of-business details for the IDV record. It captures a specific organizational status rather than a descriptive narrative. When populated, it reflects the encoded FPDS value for that 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 IDVs awarded to community development corporations
- Segment vendors for socioeconomic or community investment analysis
- Support compliance and policy reporting on vendor types
Common Mistakes
- Interpreting 0 as definitively no when it may also reflect unreported data
- Treating the field as a vendor name, description, or certification without checking the coded value
Query Guidance
Use this field in WHERE clauses only after confirming the stored coding scheme. For example, filter for the affirmative value observed in the dataset and pair it with IS NOT NULL checks when you need reported status only; if the field is coded, join or co-select the related description field if available to validate meaning.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isCommunityDevelopmentCorporation AS is_community_development_corporation
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isCommunityDevelopmentCorporation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isCommunityDevelopmentCorporation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorLineOfBusiness__isCommunityDevelopmentCorporation 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.